#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #f3f3f3;
	border: solid 5px #c4c3c3;
	color: #ed7218;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    padding-top: 20px;
}

#popup_title {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: white;
	/*background: #646464 url(../images/title.gif) top repeat-x;*/
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
    background-color: #60A6D7;
}

#popup_content {
	/*background: 16px 16px no-repeat url(../images/info.gif);*/
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	/*background-image: url(images/cargando.gif);*/
}

#popup_content.confirm {
	/*background-image: url(../images/important.gif);*/
}

#popup_content.prompt {
	/*background-image: url(../images/help.gif);*/
}

#popup_message {
	/*padding-left: 48px;*/
    text-align:center;
    font-size:16px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}
#popup_panel2 {
    content:"ssss";
	background-image: url(images/cargando.gif);
}

#popup_prompt {
	margin: .5em 0em;
}

#btOk{
    /*background-color:#dddddd;*/
     background-image: url('../../images/fondoToma.jpg');
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    text-align:center;
    font-size: 12px;
    font-family: verdana;
    color: white;
    text-decoration: none;
    line-height: 20px;
    border: aqua 0px;
    cursor: pointer;
    width:100px;
    height:25px;
}
#btOk:hover{
    /*background-color: #bce5fc;*/
     color: #646464;
    text-decoration: none;
}
#popup_cancel{
    /*background-color:#dddddd;*/
     background-image: url('../../images/fondoToma.jpg');
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    text-align:center;
    font-size: 12px;
    font-family: verdana;
    color: white;
    text-decoration: none;
    line-height: 20px;
    border: aqua 0px;
    cursor: pointer;
    width:100px;
    height:25px;
}
#popup_cancel:hover{
    /*background-color: #bce5fc;*/
     color: #646464;
    text-decoration: none;
}


#spinner {
    position: relative;
    font-size: 50px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    /*background: #123456;*/
    box-shadow: inset 0 0 0 .12em rgba(195,196,196,0.0), 0 0 0 .12em rgba(255,255,255,0.1);
    background:
        -webkit-linear-gradient(#c4c3c3 50%, #60a6d7 50%),
        -webkit-linear-gradient(#60a6d7 50%, #c4c3c3 50%);
    background:
        -moz-linear-gradient(#c4c3c3 50%, #60a6d7 50%),
        -moz-linear-gradient(#60a6d7 50%, #c4c3c3 50%);
    background:
        -ms-linear-gradient(#c4c3c3 50%, #60a6d7 50%),
        -ms-linear-gradient(#60a6d7 50%, #c4c3c3 50%);
    background:
        -o-linear-gradient(#c4c3c3 50%, #60a6d7 50%),
        -o-linear-gradient(#60a6d7 50%, #c4c3c3 50%);
    background:
        linear-gradient(#c4c3c3 50%, #60a6d7 50%),
        linear-gradient(#60a6d7 50%, #c4c3c3 50%);
    background-size: 50% 100%, 50% 100%;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    opacity: 1.7;
    -webkit-animation: mask 3s infinite alternate;
    -moz-animation: mask 3s infinite alternate;
    -ms-animation: mask 3s infinite alternate;
    -o-animation: mask 3s infinite alternate;
    animation: mask 3s infinite alternate;
    margin-left: 450px;
    margin-top: -40px;
}

#spinner:after {
	content: "";
	position: absolute;
	border: .12em solid rgba(96,166,215,0.4);
	position: absolute;
	top: 11px;
	left: 11px;
	width: 30%;
	height: 30%;
	border-radius: inherit;
}

@-webkit-keyframes mask {
    25%  { -webkit-transform: rotate(270deg); }
    50%  { -webkit-transform: rotate( 90deg); }
    75%  { -webkit-transform: rotate(360deg); }
    100% { -webkit-transform: rotate(180deg); }
}

@-moz-keyframes mask {
    25%  { -moz-transform: rotate(270deg); }
    50%  { -moz-transform: rotate( 90deg); }
    75%  { -moz-transform: rotate(360deg); }
    100% { -moz-transform: rotate(180deg); }
}

@-ms-keyframes mask {
    25%  { -ms-transform: rotate(270deg); }
    50%  { -ms-transform: rotate( 90deg); }
    75%  { -ms-transform: rotate(360deg); }
    100% { -ms-transform: rotate(180deg); }
}

@-o-keyframes mask {
    25%  { -o-transform: rotate(270deg); }
    50%  { -o-transform: rotate( 90deg); }
    75%  { -o-transform: rotate(360deg); }
    100% { -o-transform: rotate(180deg); }
}

@keyframes mask {
    25%  { transform: rotate(270deg); }
    50%  { transform: rotate( 90deg); }
    75%  { transform: rotate(360deg); }
    100% { transform: rotate(180deg); }
}