﻿.new_tabs_head,.new_tabs_frame {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.new_tabs_head {
	overflow:visible;
	padding:0;
	margin:15px 0 0 0;
	/*width:430px;*/
}

ul.new_tabs {
	float:none;
	overflow:hidden;
	width:100%;
	margin:0;
	padding:0;
	margin-bottom:-1px;
}

li.new_tab,li.new_tab_acted{
	min-height:20px;
	margin:0 -12px 0 0;
	width:80px\9;
	min-width:20px;
	padding:6px 6px 0 8px;
	border-width:1px;
	border-style:solid;
	border-color:rgb(200,200,200);
	background-color:#181d25;
	float:left;
	list-style:none outside none;
	border-radius:10px 10px 0px 0px;
	overflow:visible;
	cursor:pointer;
	font-family:Arial;
	text-decoration:none;
	font-weight:bold;
	font-size:12px;
	/*background-image:-moz-linear-gradient(center bottom , rgb(230, 230, 230) 0%, rgb(250, 250, 250) 50%, rgb(255, 255, 255) 75%)*/
}

li.new_tab:hover,li.new_tab_acted:hover{
	background: #181d35;
	color: orange;
}
li.new_tab a,li.new_tab_acted a {
	margin:0;
	padding:0;
	color:rgb(100,100,100);
	vertical-align:top;
}

li.new_tab_acted{
	border-bottom:1px solid white;
	background-color:darkblue;
	background-image:none;
}

.new_tabs_frame{
	border-radius:0px 10px 10px 10px;
	border:1px solid rgb(200,200,200);
	padding:10px;
	margin-top:-1px;
	overflow:hidden;
	/*width:430px;*/
}
/**
 * POPUP CONTAINER STYLES
 */
 /*
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
} 
*/
}
.body_modal {
	background:  black;
}
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=40);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color:transparent !important;
	background-color: #000;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image: url(submodal/maskBG.png) !important;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 2px solid #53482c;
	background-color: #ffffff;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	background: #0d121a url(submodal/header.jpg) no-repeat;
	color: #ffffff;
	font-weight: bold;
	height: 1.3em;
	padding: 5px;
	border-bottom: 2px solid #53482c;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
/* El original */
#wrapper{
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:10px;
    border:2px solid #fff;
    background-color:#31425d;
    width:650px;
    overflow:hidden;
    font-size:10px;
    text-align:center;
    margin:0px;
    padding:0px;
    position:relative;
    height:100%;
    margin:15px auto;

}
#steps{
    width:650px;
	/*height:320px;*/
    overflow:hidden;
}
.step{
    float:left;
    width:650px;
	/*height:320px;*/
}
#navigation{
    height:45px;
    background-color:#17202e;
    border-top:1px solid #fff;
    -moz-border-radius:0px 0px 10px 10px;
    -webkit-border-bottom-left-radius:10px;
    -webkit-border-bottom-right-radius:10px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
}
#navigation ul{
    list-style:none;
	float:left;
	margin-left:22px;
}
#navigation ul li{
	float:left;
    border-right:1px solid #ccc;
    border-left:1px solid #ccc;
    position:relative;
	margin:0px 2px;
}
#navigation ul li a{
    display:block;
    height:45px;
    background-color:#444;
    color:#777;
    outline:none;
    font-weight:bold;
    text-decoration:none;
    line-height:45px;
    padding:0px 20px;
    border-right:1px solid #fff;
    border-left:1px solid #fff;
    background:#f0f0f0;
    background:
        -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.09, rgb(240,240,240)),
        color-stop(0.55, rgb(227,227,227)),
        color-stop(0.78, rgb(240,240,240))
        );
    background:
        -moz-linear-gradient(
        center bottom,
        rgb(240,240,240) 9%,
        rgb(227,227,227) 55%,
        rgb(240,240,240) 78%
        )
}
#navigation ul li a:hover,
#navigation ul li.selected a{
    background:#d8d8d8;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}
span.checked{
    background:transparent url(images/checked.png) no-repeat top left;
    position:absolute;
    top:0px;
    left:1px;
    width:20px;
    height:20px;
}
span.error{
    background:transparent url(images/error.png) no-repeat top left;
    position:absolute;
    top:0px;
    left:1px;
    width:20px;
    height:20px;
}
#steps form fieldset{
    border:none;
    padding-bottom:20px;
}
#steps form legend{
    text-align:left;
    background-color:#f0f0f0;
    color:#666;
    font-size:24px;
    text-shadow:1px 1px 1px #fff;
    font-weight:bold;
    float:left;
    width:590px;
    padding:5px 0px 5px 10px;
    margin:10px 0px;
    border-bottom:1px solid #fff;
    border-top:1px solid #d9d9d9;
}
#steps form p{
    float:left;
    clear:both;
    margin:5px 0px;
    background-color:#f4f4f4;
    border:1px solid #fff;
    width:400px;
    padding:10px;
    margin-left:100px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
}
#steps form p label{
    width:160px;
    float:left;
    text-align:right;
    margin-right:15px;
    line-height:26px;
    color:#666;
    text-shadow:1px 1px 1px #fff;
    font-weight:bold;
}
#steps form input:not([type=radio]),
#steps form textarea,
#steps form select{
    background: #ffffff;
    border: 1px solid #ddd;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    padding: 5px;
    width: 200px;
    float:left;
}
#steps form input:focus{
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background-color:#FFFEEF;
}
#steps form p.submit{
    background:none;
    border:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
#steps form button {
	border:none;
	outline:none;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #ffffff;
    display: block;
    cursor:pointer;
    margin: 0px auto;
    clear:both;
    padding: 7px 25px;
    text-shadow: 0 1px 1px #777;
    font-weight:bold;
    font-family:"Century Gothic", Helvetica, sans-serif;
    font-size:22px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background:#4797ED;
}
#steps form button:hover {
    background:#d8d8d8;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}
#section .notification {
	padding: 10px 15px;
	margin: 0 10px 20px 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	font-size: .8em;
	line-height: 1.4;
	
	border: 2px solid #e5e5e5;
	border-left: 2px solid #a5a5a5;
	border-top: 2px solid #a5a5a5;
	
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,.65);
	box-shadow: 2px 2px 5px rgba(0,0,0,.65);

}

#section .error {
	background: #291414 url(images/fade_error.png) repeat-x;
}
#section .warn {
	background: #292914 url(images/fade_warn.png) repeat-x;
}
#section .info {
	background: #141C29  url(images/fade_info.png)repeat-x;
}
#section .ok {
	background: #182914  url(images/fade_ok.png)repeat-x;
}

.alert{
	position:relative;
	padding:15px 10px;
	margin:12px 0 20px;
	width:auto;
	padding-left:55px;
	font-style:normal;
	font-family:Helvetica,Arial,"Times New Roman",Times,serif;
	font-size:12px;
	background:#eee;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	-webkit-box-shadow:0 1px 0 rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.5),inset 0 -1px 0 rgba(255,255,255,.2);
	-moz-box-shadow:0 1px 0 rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.5),inset 0 -1px 0 rgba(255,255,255,.2);
	box-shadow:0 1px 0 rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.5),inset 0 -1px 0 rgba(255,255,255,.2):
}
.alert_close{
	background:url(alertas/cross.png) center 0;
	width:14px;
	height:14px;
	position:absolute;
	top:0;
	right:0;
	cursor:pointer;
}
.alert_close:hover{
	background-position:center -33px;
	cursor: pointer;
}
.info_msg{
	background:url(alertas/info_button_32.png) no-repeat 8px 8px #c7e3f9;
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,-moz-linear-gradient(top,#c7e3f9 0,#aecee8 100%);
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,-webkit-gradient(linear,left top,left bottom,color-stop(0%,#c7e3f9),color-stop(100%,#aecee8));
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,-webkit-linear-gradient(top,#c7e3f9 0,#aecee8 100%);
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,-o-linear-gradient(top,#c7e3f9 0,#aecee8 100%);
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,-ms-linear-gradient(top,#c7e3f9 0,#aecee8 100%);
	background:url(alertas/info_button_32.png) no-repeat 8px 8px,linear-gradient(top,#c7e3f9 0,#aecee8 100%);
	border:1px solid #70a2c9;
	border-color:#70a2c9 #5F9BC9;
	color:#2e6093;
	text-shadow:1px 1px 1px #e2f6fa;
}
.error_msg{
	background:url(alertas/close_32.png) no-repeat 8px 8px #ffc8d1;
	background:url(alertas/close_32.png) no-repeat 8px 8px,-moz-linear-gradient(top,#ffc8d1 0,#ff93a3 100%);
	background:url(alertas/close_32.png) no-repeat 8px 8px,-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffc8d1),color-stop(100%,#ff93a3));
	background:url(alertas/close_32.png) no-repeat 8px 8px,-webkit-linear-gradient(top,#ffc8d1 0,#ff93a3 100%);
	background:url(alertas/close_32.png) no-repeat 8px 8px,-o-linear-gradient(top,#ffc8d1 0,#ff93a3 100%);
	background:url(alertas/close_32.png) no-repeat 8px 8px,-ms-linear-gradient(top,#ffc8d1 0,#ff93a3 100%);
	background:url(alertas/close_32.png) no-repeat 8px 8px,linear-gradient(top,#ffc8d1 0,#ff93a3 100%);
	border:1px solid #d96e66;
	color:#cd0a0a;
	text-shadow:1px 1px 1px #ffaebc;
}
.saved_msg{
	background:url(alertas/save_32.png) no-repeat 8px 8px #b5d8fa;
	background:url(alertas/save_32.png) no-repeat 8px 8px,-moz-linear-gradient(top,#b5d8fa 0,#8cb9db 100%);
	background:url(alertas/save_32.png) no-repeat 8px 8px,-webkit-gradient(linear,left top,left bottom,color-stop(0%,#b5d8fa),color-stop(100%,#8cb9db));
	background:url(alertas/save_32.png) no-repeat 8px 8px,-webkit-linear-gradient(top,#b5d8fa 0,#8cb9db 100%);
	background:url(alertas/save_32.png) no-repeat 8px 8px,-o-linear-gradient(top,#b5d8fa 0,#8cb9db 100%);
	background:url(alertas/save_32.png) no-repeat 8px 8px,-ms-linear-gradient(top,#b5d8fa 0,#8cb9db 100%);
	background:url(alertas/save_32.png) no-repeat 8px 8px,linear-gradient(top,#b5d8fa 0,#8cb9db 100%);
	border:1px solid #6495ed;
	color:#36414b;
	text-shadow:1px 1px 1px #d5eaa8;
}
.succes_msg{
	background:url(alertas/tick.png) no-repeat 8px 9px #cdeb8e;
	background:url(alertas/tick.png) no-repeat 8px 9px,-moz-linear-gradient(top,#cdeb8e 0,#a5c956 100%);
	background:url(alertas/tick.png) no-repeat 8px 9px,-webkit-gradient(linear,left top,left bottom,color-stop(0%,#cdeb8e),color-stop(100%,#a5c956));
	background:url(alertas/tick.png) no-repeat 8px 9px,-webkit-linear-gradient(top,#cdeb8e 0,#a5c956 100%);
	background:url(alertas/tick.png) no-repeat 8px 9px,-o-linear-gradient(top,#cdeb8e 0,#a5c956 100%);
	background:url(alertas/tick.png) no-repeat 8px 9px,-ms-linear-gradient(top,#cdeb8e 0,#a5c956 100%);
	background:url(alertas/tick.png) no-repeat 8px 9px,linear-gradient(top,#cdeb8e 0,#a5c956 100%);
	border:1px solid #87ae33;
	color:#3f4b25;
	text-shadow:1px 1px 1px #d5eaa8;
}
.exclamation_msg{
	background:url(alertas/warning_32.png) no-repeat 8px 8px #ffedc1;
	background:url(alertas/warning_32.png) no-repeat 8px 8px,-moz-linear-gradient(top,#ffedc1 0,#fcde8d 100%);
	background:url(alertas/warning_32.png) no-repeat 8px 8px,-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffedc1),color-stop(100%,#fcde8d));
	background:url(alertas/warning_32.png) no-repeat 8px 8px,-webkit-linear-gradient(top,#ffedc1 0,#fcde8d 100%);
	background:url(alertas/warning_32.png) no-repeat 8px 8px,-o-linear-gradient(top,#ffedc1 0,#fcde8d 100%);
	background:url(alertas/warning_32.png) no-repeat 8px 8px,-ms-linear-gradient(top,#ffedc1 0,#fcde8d 100%);
	background:url(alertas/warning_32.png) no-repeat 8px 8px,linear-gradient(top,#ffedc1 0,#fcde8d 100%);
	border:1px solid #ea9936;
	color:#ff4500;
	text-shadow:1px 1px 1px #ffedc1;
}
