/**
 *********************************************
 * Prototype of styles for horizontal CSS-menu
 * @data 30.06.2009
 *********************************************
 * (X)HTML-scheme:
 *  <div id="menu">
 *      <ul class="menu">
 *          <li><a href="#" class="parent"><span>level 1</span></a>
 *              <div><ul>
 *                  <li><a href="#" class="parent"><span>level 2</span></a>
 *                      <div><ul><li><a href="#"><span>level 3</span></a></li></ul></div>
 *                  </li>
 *              </ul></div>
 *          </li>
 *          <li class="last"><a href="#"><span>level 1</span></a></li>
 *      </ul>
 *  </div>
 *********************************************
 */

/* menu::base */
div#menu {
	margin:auto;
	height: 46px;
	padding-left: 10px;
	background: url(images/left.png) no-repeat;
	_background-image: url(images/left.gif);
	width:auto;
	float: right;
}

div#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
div#menu ul.menu {
    padding-right: 10px;
    background: url(images/right.png) no-repeat right 0;
    _background-image: url(images/right.gif);
}

div#menu li {
    position: relative;
    margin: 0;
    padding: 0 0 0 0;
    display: block;
    float: left;
    z-index: 9;
    width: auto;
}
div#menu ul ul li {
    z-index: 9;
}
div#menu li div {
    list-style: none;
    float: left;
    position: absolute;
    z-index: 11;
    top: 36px;
    left: 0;
    visibility: hidden;
    width: 187px;
    padding: 0 0 11px 7px;
    background: url(images/submenu-bottom.png) no-repeat 7px bottom;
    _background-image: url(images/submenu-bottom.gif);
    margin: 0px 0 0 -4px;
}
div#menu li:hover>div {
    visibility: visible;
}

div#menu a {
    position: relative;
    z-index: 10;
    height: 41px;
    display: block;
    float: left;
    line-height: 41px;
    text-decoration: none;
    margin-top: 1px;
    white-space: nowrap;
    width: auto;
    padding-right: 5px;
    text-align: center;
}
div#menu span {
    display: block;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 95% 0;
    text-align: center;
}

/* menu::level1 */
div#menu a {
    padding: 0 30px 0 0;
    line-height: 40px;
    height: 46px;
    margin-right: 5px;
    _margin-right: 1px;
    background: none;
}
div#menu span {
    margin-top: 2px;
    padding-left: 30px;
    color: #fff;
    font: bold 11px Trebuchet MS,Arial,san-serif;
    background: none;
    line-height: 40px;
}
div#menu a:hover,
div#menu a.over {
    background:  url(images/selected-right-sub.png)  no-repeat right -1px;
    _background-image: url(images/selected-right-sub.gif);
}
div#menu a:hover span,
div#menu a.over span {
    background: url(images/selected-left-sub.png) no-repeat 0 -3px;
    _background-image: url(images/selected-left-sub.gif);
}
div#menu li.current a,
div#menu ul.menu>li:hover>a {
    background: url(images/selected-right-sub.png) no-repeat right -1px;
    _background-image: url(images/selected-right-sub.gif);
}
div#menu li.current a span,
div#menu ul.menu>li:hover>a span {
    background: url(images/selected-left-sub.png) no-repeat 0 -3px;
    _background-image: url(images/selected-left-sub.gif);
}
div#menu ul.menu>li:hover>a span {
    color: #852a21;
}
div#menu li {  }
div#menu li.last { background: none; }

div#menu li.current a,
div#menu li.current a span,
div#menu.js-active a:hover,
div#menu.js-active a:hover span,
div#menu.js-active a,
div#menu.js-active span {
    background:none;
}
div#menu.js-active ul.menu>li:hover>a,
div#menu.js-active ul.menu>li:hover>a span {
    background:none;
}
div#menu li.current a.over {
    background: url(images/selected-right-sub.png)  no-repeat right -1px;
    _background-image: url(images/selected-right-sub.gif);
}
div#menu li.current a.over span {
    background: url(images/selected-left-sub.png) no-repeat 0 -3px;
    _background-image: url(images/selected-left-sub.gif);
}
div#menu a.over span {
    color: #852a21;
}

/* menu::level2 */
div#menu ul ul li {
    background: none;
    padding: 0;
}
div#menu ul ul {
    padding-top: 10px;
}
div#menu ul ul a {
    padding: 0;
    height: auto;
    float: none;
    display: block;
    line-height: 26px;
    font-size: 11px;
    color: #ffffff;
    z-index: -1;
    padding-left: 5px;
    white-space: normal;
    width: 160px;
    margin: 0 5px;
    text-transform: none;
}
    
div#menu ul ul a span {
    padding: 0 15px;
    line-height: 26px;
    font-size: 11px;
}
div#menu li.current ul a,
div#menu li.current ul a span {
    background:none;
}
div#menu ul ul a:hover {
    background: url(images/submenu-selected-bottom.png) no-repeat 5px bottom;
}
div#menu ul ul a:hover span {
    background: url(images/submenu-selected-top.png) no-repeat 0 0;
}
div#menu ul ul a.parent {
    background: url(images/submenu-pointer-bottom.gif) no-repeat 5px bottom;
}
div#menu ul ul a.parent span {
    background: url(images/submenu-pointer-top.png) no-repeat 0 0;
}
div#menu ul ul a.parent:hover {
    background: url(images/submenu-pointer-selected-bottom.png) no-repeat 5px bottom;
}
div#menu ul ul a.parent:hover span {
    background: url(images/submenu-selected-top.png) no-repeat 0 0;
}
div#menu ul ul span {
    margin-top: 0;
    text-align: left;
}
div#menu ul ul li.last { background: none; }
div#menu ul ul li {
    width: 100%;
}

/* menu::level3 */
div#menu ul ul div {
    width: 180px;
    padding: 15px 0px 8px 0px;
    margin: -44px 0 0 169px !important;
    background: url(images/subsubmenu-top.png) no-repeat 0px 0;
    _background-image: url(images/subsubmenu-top.gif);
}
*+html div#menu ul ul div { height:10px }
*+html div#menu.ie7 ul ul div { height:auto }
div#menu ul ul ul {
    padding: 0 4px 5px 1px;
    background: url(images/submenu-bottom.png) no-repeat 0px bottom;
    _background-image: url(images/submenu-bottom.gif);
}
div#menu ul ul div li {
    position:relative;
    top:-5px;
}

/* lava lamp */
div#menu li.back {
    background: url(images/lavalamp-left.png) no-repeat 0 0;
    _background-image: url(images/lavalamp-left.gif);
    width: 10px;
    height: 46px;
    z-index: 8;
    position: absolute;
    padding: 0;
    margin: 0;
}

div#menu li.back .left {
    padding:0;
    width:auto;
    background: url(images/lavalamp-right.png) no-repeat right 0;
    _background-image: url(images/lavalamp-right.gif);
    height: 46px;
    margin: 0 5px 0 10px;
    _margin-right: 2px;
    float: none;
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
}
#comer {
	float: left;
	width: 210px;
}
#comer {
	height: 440px;
	width: 210px;
}
#parte {
	float: left;
	height: 46px;
	width: 587px;
}
#vision {
	height: 34px;
	width: 200px;
}
#vis {
	float: right;
	height: 300px;
	width: 680px;
	clear: none;
	left: 233px;
	top: 362px;
	font-family: Tahoma, Geneva, sans-serif;
	overflow: hidden;
	padding: 2em;
	font-size: 16px;
}
#separacion {
	height: 115px;
	width: inherit;
	background-position: center center;
}
#espacito1 {
	height: 300px;
	width: inherit;
}
#separacion {
	height: 105px;
	width: inherit;
}

#mis {
	font-family: Tahoma, Geneva, sans-serif;
	padding: 2em;
	clear: none;
	float: right;
	height: 300px;
	width: 680px;
	left: 336px;
	top: 0px;
	font-size: 16px;
}
#sal {
	font-family: Tahoma, Geneva, sans-serif;
	padding: 1em;
	clear: none;
	float: left;
	height: inherit;
	width: 700px;
	overflow: hidden;
	left: 243px;
	top: 358px;
}
#dat {
	font-family: Tahoma, Geneva, sans-serif;
	padding: 1em;
	clear: none;
	float: left;
	height: 390px;
	width: 700px;
	left: 233px;
	top: 355px;
	font-size: 12px;
	clip: rect(0px,auto,auto,auto);
}
#form {
	margin:auto;
	font-family: Tahoma, Geneva, sans-serif;
	padding: 1em;
	float: right;
	height: 450px;
	width: 680px;
	left: 349px;
	top: 372px;
	background-image: url(img/fondo.jpg);
}
#nomform {
	font-family: Tahoma, Geneva, sans-serif;
	color: #9F0000;
	height: 30px;
	width: 500px;
	float: left;
	font-size: 14px;
	text-decoration: underline;
}
#linea_ver {
	background-image: url(img/a1.gif);
	background-repeat: repeat-y;
	width: 10px;
	float: left;
	background-position: right;
	height: 460px;
}
#up_ {
	font-family: Tahoma, Geneva, sans-serif;
	padding: 1em;
	height: 380px;
	width: 715px;
	font-size: 12px;
	float: right;
	line-height: 1.3em;
	clear: none;
	left: 249px;
	top: 368px;
}
#logo_up {
	float: left;
	height: 100px;
	width: 210px;
	background-image: url(img/upgrade.png);
	left: 327px;
	top: 375px;
}
#desc_up {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	float: right;
	height: 105px;
	width: 400px;
	padding-left: 10px;
}
#desc_der_up {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	float: right;
	height: 280px;
	width: 400px;
	padding-left: 10px;
}
#inhou {
	height: 470px;
	width: 700px;
}
#inhou {
	padding: 1em;
	clear: none;
	float: left;
	height: 450px;
	width: 700px;
	overflow: hidden;
}

#inhou {
	clear: none;
	float: left;
	height: 400px;
	width: 680px;
	overflow: hidden;
	left: 405px;
	top: 357px;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 2em;
}
#logo_in {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	background-image: url(img/inhouse.gif);
	background-repeat: no-repeat;
	clear: none;
	float: left;
	height: 150px;
	width: 220px;
}
#dec_izq_in {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	/*clear: none;
	float: right;
	height: 350px;
	width: 480px;*/
}
#anunci {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 15px;
	height: 25px;
	width: inherit;
	color: #900;
	text-decoration: blink;
}
#regr {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #006;
	text-decoration: blink;
	padding: 0em;
	float: left;
	height: 25px;
	width: 160px;
	overflow: hidden;
	left: 0px;
	top: 0px;
}
#desc_rig_inh {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	float: right;
	height: auto;
	width: 420px;
	padding: 1em;
}
#up_ #desc_rig_inh #texto_inhouse {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	height: 200px;
	width: 380px;
}
#lista {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-variant: normal;
	color: #006;
	text-decoration: underline blink;
	padding: 0.2em;
	float: left;
	height: 25px;
	width: 300px;
	clear: none;
	overflow: hidden;
	top: 652px;
}
#anu1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #933;
	clear: none;
	float: left;
	height: 25px;
	width: inherit;
	overflow: hidden;
	position: absolute;
	left: 155px;
	top: -1px;
}
#logo_rsoc {
	float: left;
	height: 135px;
	width: 235px;
	background-image: url(img/cons.jpg);
	background-repeat: no-repeat;
}
#des_rsocial {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	padding: 1em;
	float: left;
	height: 440px;
	width: 710px;
	overflow: hidden;
	left: 349px;
	top: 362px;
}
#cuerpo #des_rsocial #desc_rig_rsoc {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	float: right;
	height: inherit;
	width: 400px;
	padding-top: 1em;
}
#tem_rsoc {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	float: left;
	height: 360px;
	width: 300px;
	overflow: hidden;
	left: 250px;
	top: 318px;
}
#anuc2 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #900;
	text-decoration: blink;
	height: 37px;
	width: 244px;
	overflow: hidden;
	position: absolute;
	left: 12px;
	top: 155px;
}
#inhou2 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	padding: 1em;
	clear: none;
	float: left;
	height: 500px;
	width: 710px;
	overflow: hidden;
	left: 377px;
	top: 365px;
}
#agenda1_1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	padding: 1em;
	clear: none;
	float: left;
	height: inherit;
	width: 710px;
	left: 379px;
	top: 357px;
}
#clibo {
	padding: 2px;
	height: 405px;
	width: 720px;
	overflow: hidden;
	position: absolute;
	left: 323px;
	top: 367px;
}
#desc_ag {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	float: left;
	height: inherit;
	width: 680px;
}
#logo_up1 {
	background-image: url(img/upgrade1.jpg);
	height: 75px;
	width: 190px;
	background-repeat: no-repeat;
	float: left;
}
#desc_up1 {
	font-family: "Monotype Corsiva";
	font-size: 22px;
	color: #369;
	float: right;
	height: 60px;
	width: 500px;
	left: 459px;
	top: 531px;
}
#progra {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	color: #036;
	text-decoration: blink;
	overflow: hidden;
	left: 268px;
	top: 280px;
	font-weight: bold;
	height: 40px;
	width: 200px;
	text-align: center;
	float: left;
}
#galeria {
	font-family: "Monotype Corsiva";
	font-size: 36px;
	color: #603;
	text-decoration: blink;
	height: 50px;
	;
	width: 500px;
	left: 89px;
	top: 34px;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
	padding-top: 0.1em;
	padding-right: 0.1em;
	padding-bottom: 0.1em;
	padding-left: 2em;
}
#cuerpo table {
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #000;


}
#contenerdortabla {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	height: 70px;
	width: 680px;
	left: 447px;
	top: 425px;
	padding-top: 0.5em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 4em;
}
#contene1 {
	height: 300px;
	width: 686px;
}
#contene1 {
	height: 300px;
	width: 686px;
	position: absolute;
}
#cuerpo #mis table tr td p strong {
	font-size: 18px;
}
#cuerpo #mis table tr td p {
	font-size: 16px;
}
#cuerpo #inhou a #lista strong {
	text-align: center;

}
#contenedorima {
	float: left;
	height: 650px;
	width: 660px;
	padding-top: 0.5em;
	padding-right: 2em;
	padding-bottom: 2em;
	padding-left: 1.5em;
}
#controls {
	padding: 0.2em;
	float: left;
	height: 30px;
	width: 680px;
}
#cuerpo #my-glider1 .controls #controls1 {
	padding: 0.5em;
	float: left;
	height:inherit;
	width: 700px;
}
#contenedorcito {
	margin: auto;
	padding: 1px;
	float: left;
	height: 1000px;
	width: 700px;
}
#line_ver1 {
	background-image: url(img/a1.gif);
	background-repeat: repeat-y;
	background-position: right;
	float: left;
	height: 1500px;
	width: 10px;
}
#cuerpo #contenedorcito table tr td .Estilo105 {
	font-weight: bold;
	color: #FFF;
}
#cuerpo #contenedorcito table tr td table tr td .Estilo128 {
	font-weight: bold;
	color: #234664;
}
#capacitate {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	margin: auto;
	padding: 1em;
	float: left;
	height: 400px;
	width: 680px;
}
#capacit {
	clear: none;
	float: left;
	height: 450px;
	width: 700px;
	padding: 1em;
}
#desc_capa {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	float: right;
	height: 180px;
	width: 435px;
	padding-top: 0.3em;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}


#logito_cap {
	background-image: url(img/capa.png);
	background-repeat: no-repeat;
	float: left;
	height: 120px;
	width: 230px;
}
#cuerpo #capacit #TabbedPanels3 {
	width: 430px;
	float: right;
	margin: auto;
	height: auto;
}
