.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, form, fieldset, a, img, button{
     margin: 0;
     padding: 0;    
}

/*vamos a ponerle orden a los labels que se convierten en span para que por defecto tengan un comportamiento
span 
{
    font-family:Tahoma;
    font-size:13px;
}*/


html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */	
	font-family:arial,sans-serif;
	font-size:small;	
	min-width:1000px;
}

a.disabled
{
    color:#AAAAAA !important;
}

table
{
    text-align:center !important;
}



div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:100%;
	min-width:100%;
	background:#ffffff;	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}

div#header {
	
}

	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:0em 0em 1em 0em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */		
}

	div#footer p {
		padding:1em;
		margin:0;		
	}
	

/************** CODIGO PARA EL ENCABEZADO DEL ENCABEZADO */

#header
{
	width: auto;
	margin: 0;
	padding: 0;
}

.clm_logo
{  
   text-align: center; 
   vertical-align: middle;   
}

.clm_streach_up
{
    
    margin: 0;
    padding: 0;
    border: 0;
}


.clm_steady_up
{
    margin: 0;
    padding: 0;
    border: 0;
}

.clm_steady_right
{
    
    margin: 0;
    padding: 0;
    border: 0;
}

#streach_menu
{
	margin: 0;
    padding: 0;
    border: 0; 
}

.clm_streach_middle
{
    width:auto;
    margin: 0;
     padding: 0;
     border: 0;
}

#streach_middle
{
    background-image:url(/Agatha/Resources/Images/AppMaster/Head/streach_middle.png);
	text-align: right;
	width: auto;
	margin: 0;
	padding: 0;
	height: 29px;
}

.clm_steady_left
{
    width: 700px;
    margin: 0;
     padding: 0;
     border: 0;
}

#steady_left
{
    width: 700px;
    background-image:url(/Agatha/Images/AppMaster/Head/steady_left.png); 
	margin: 0;
	padding: 0;
	height: 29px;
}

/* TERMINA CÓDIGO PARA LA TABLA DEL ENCABEZADO */



/************** CODIGO PARA LA TABLA DEL PIE */


#foot_left
{
    margin-left: 10px; 
    text-align: left;
    font-size: 9px;
    font-family: Gill Sans MT !important;
    font-weight:bold;
    color:White;
    border:0;
    padding:0;    
    margin:0;
}

.clm_foot_right
{
    text-align: right;
    width:200px;    
    border:0;
    padding:0;
    margin:0;
}

#foot_right
{
    margin-right: 10px; 
    text-align:right;
    color:#FFF;
    border:0;
    padding:0;
    margin:0;
}

/* TERMINA CÓDIGO PARA LA TABLA DEL PIE */



/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* Note that the example menu in this web site uses relative positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */
/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.PrettyMenu ul
{
    background:White;    
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
.PrettyMenu ul.AspNet-Menu ul
{
    width: 20em;
    left: 15em;
    top: -1em;    
}

.PrettyMenu ul.AspNet-Menu ul ul
{
    width: 15em;
    left: 15em;    
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.PrettyMenu ul.AspNet-Menu li
{
    background:transparent url(bg_nav.gif) repeat-x;    
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.PrettyMenu ul.AspNet-Menu li a,
.PrettyMenu ul.AspNet-Menu li span
{
    color: white;
    padding: 1px 2px 6px 3px;
    background: transparent url(arrowRight.gif) right center no-repeat;    
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;    
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.PrettyMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;    
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.PrettyMenu ul.AspNet-Menu li:hover
{
   /* background:Gray; */   
}


.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{    
    background:Gray;     
}

.PrettyMenu ul.AspNet-Menu li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: White;    
}

.PrettyMenu ul.AspNet-Menu li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover ul span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul a, 
.PrettyMenu ul.AspNet-Menu li:hover li:hover ul span, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: Black;    
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.PrettyMenu ul.AspNet-Menu li a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: White;
    background: transparent url(activeArrowRight.gif) right center no-repeat;    
}

.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;    
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.PrettyMenu .AspNet-Menu-Horizontal
{    
    left: 15em;
    top: 0;    
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 40em;
    background: transparent;
    z-index: 1;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 200px;
    left: 0;
    top: 100%;
    /* top: 100% esta es para ponerlo exactamente debajo del menu */
    border:1px solid #000000;         
}

/* Esto es para que aplique solo para el segundo nivel de menus. 
*/
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{    
    background:#EEEEEE;
    border-top:1px dotted #CCCCCC;       
    padding: 2px 0px 0px 0px;            
}

/* Esto es para que aplique solo para el segundo nivel de menus. 
*/
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li:hover
{
    background:Gray;    
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: -5px;
    left:0px;         
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 10em;
    text-align:center;    
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align:left;
    width:100%;/* 15em;*/    
}

.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width:100%;/* 15em;*/        
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 4px 0 0 200px;
    z-index: 10000;
}

/* ------------------------------------------------------------------- */

/* CODIGO PARA EL FOOTMENU */
.footmenu
{
    margin: 0;
    padding: 0;
    border: 0;
}

.fatherfootstyle
{
    
    color: white;
    font-weight:bold;
    font-size: 9px;
    text-align:center;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    width:80px;
}


.fatherfoothoverstyle
{
    font-weight: bold;
}
/* TERMINA CODIGO PARA EL FOOTMENU */


/* CODIGO PARA EL CONTENTMENU */


.fathercontentstyle
{    
    color: Black;
    font-weight:bold;
    font-size: 11px;
    text-align:center;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    width:80px;
    background-color:#DDDDDD;
    height:30px;
    padding-left:5px;
    padding-right:5px;   
}

.fathercontentselectedstyle
{
    background-color:#F1F1F1;
    border-top: solid 4px #003399;    
    border-right: solid 2px #888888;       
}

.fatherconenthoverstyle
{
    font-weight: bold;
}

.menucontent
{
text-align:left; 
}

/* TERMINA CODIGO PARA EL CONTENTMENU */



/*********** TERMINA ESTILOS PARA LOS CONTROLES MENUS MAIN Y FOOT ***********/




/**Styling information specific to individual content pages**/


/*Modal Popup */
.modalBackground {
	background-color:Gray;
    
    filter:alpha(opacity=70);
	opacity:0.7;
}

.modalPopup {
	background-color:#ffffdd;
	border-width:3px;
	border-style:solid;
	border-color:Gray;
	padding:3px;
	width:250px;
}

/*WATERMARK*/
.Watermark
{
    font-style:italic;
    font-family:Tahoma;
    font-size:10px;
    color:Gray;
}

.WatermarkBig
{
    font-style:italic;
    font-family:Tahoma;
    font-size:14px;
    color:Gray;
}

#PresentationCard
{
    border-style:double;
    border-color:Black;
    border-width: 3;
	width: 300px;
}

#PresentationCourse
{ 
    border-style:double;
    border-color:Black;
    border-width: 3;
	width: 300px;
	background-image: url('/Agatha/Images/Icons/presentationcourse.png');
 }


/*Estilizando los Textbox */

.TextBoxRegular
{ 
   border:1px solid #CCCCCC;
   border-top:1px solid #888888;
   height:17px;
}

.TextBoxRegular:focus
{ 
  /* border:1px solid #4D90FE;
   border-top:1px solid #4D90FE;*/
   border:1px solid #777777;
   border-top:1px solid #333333;
}



/*Estilizando los Label*/

.LabelTitulo
{
    font-weight:bold;
    font-family:Tahoma;
    font-size:18px;
}

.LabelTituloSecundario
{
    font-weight:bold;
    font-family:Tahoma;
    font-size:14px;
}

.LabelTituloBasico
{
    font-family:Tahoma;
    font-size:13px;
}

.LabelTituloBasicoNegrita
{
    font-family:Tahoma;
    font-size:13px;
    font-weight:bold;
}


.Link
{
    font-family:Tahoma;
    font-size:10px;
}

.TituloLink
{
    font-family:Tahoma;
    font-size:14px;
}


.TituloLinkRed
{
    color:Red;
    font-family:Tahoma;
    font-size:14px;
}

tbody tr td
{
    border:0px;
    /*text-align:center;*/    
}

.PaddingRight
{
    padding-right:7px;
}



.UpperCase
{
    fore
}


