/**********************************************************************************
*       accenture/basic_style.css
*
*       This .css file contains the look and feel definitions for accenture's
*       version of the viaTravel website.
*
*       ****************
*       Defining Styles:
*       ****************
*
*       The basic structure of a css declaration is as follows:
*
*               selector {
*                               property : value;
*               }
*
*       For example, the below declaration sets the color of the background
*       of an HTML page that has a BODY tag:
*
*               body {
*                       background-color : #0000FF;
*               }
*
*       *****************************
*       Importing a css file to HTML:
*       *****************************
*
*       A cascading style sheet can be applied to an HTML page in the following
*       manner:
*
*       <HTML>
*       <HEAD>
*       
*               <link rel="stylesheet" href="/css/my_style_sheet.css" type="text/css">
*       </HEAD>
*       .
*       .
*       .
*       </HTML> (end of document)
*
*       The link tag MUST be wrapped by the HTML HEAD tags.
*
*       *********************
*       Additional resources:
*       *********************
*
*               www.w3schools.com/css - Good site with tutorials, examples and
*                                       lots of other info
*
*               www.w3.org/Style/CSS -  Site with links to various other pages
*                                       for tutorials, tools, articles, etc.
*
*               O'Reilly Book -         Cascading Style Sheets, The Definitive Guide
*                                       Eric A. Meyer, 1st Ed. May 2000                         
**********************************************************************************/


body {
    horizontal-align : center;
}


p  {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
        color : #000000;
        line-height : normal;
        text-decoration : none;
}


blockquote  {
        font-size : 11pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
        color : #000000;
        line-height : normal;
        text-decoration : none;
}

li  {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
        color: #00457C;
        text-decoration : none;
        line-height: normal;
}

ul  {
 	font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #00457C;
        text-decoration: none;
}

ol  {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
	line-height : normal;
        color : #00457C;
        text-decoration : none;
}


dl  {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
        color : #00457C;
        line-height : normal;
        text-decoration : none;
}

dd  {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : normal;
        font-style : normal;
        color : #00457C;
        line-height : normal;
        text-decoration : none;
}

/***************************************************************
*
*       This section will define attributes for the various
*       headers in a page.
*
***************************************************************/

h1 {
        font-size : 16pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : bold;
        font-style : normal;
        color : #000000;
        text-decoration : none;
        line-height: normal;
}

h2      {
        font-size : 14pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : bold;
        font-style : normal;
        color : #000000;
        text-decoration : none;
        line-height: normal;
}

h3      {
        font-size : 12pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : bold;
        font-style : normal;
        color : #000000;
        text-decoration : none;
        line-height: normal;
}

h4      {
        font-size : 11pt;
        font-family : Arial, Helvetica, sans-serif;
        font-weight : bold;
        font-style : normal;
        color : #000000;
        line-height : normal;
        text-decoration : none;
}

h5      {
        font-size : 10pt;
        font-family : Arial, Helvetica, sans-serif;
        font-style : normal;
        color : #000000;
        line-height : normal;
        text-decoration : none;
}


/******************************************************
*
*       The following group of declarations define the
*       attributes of links on the page. Color and 
*       text decorations can be assigned.  Valid text
*       decorations are: underline, overline, line-
*       through, and blink.
*
******************************************************/


/******************************************************
a  {
        color: #0000FF;
        text-decoration : underline;
}
******************************************************/


/*****************************************************
*
*       a:visited
*
*       Refers to an anchor that is a hyperlink
*       on an already visited page.
*
*****************************************************/  

/*****************************************************

a:visited  {
        color: #0000FF;
        text-decoration : underline;
}
*****************************************************/  

/****************************************************
*
*       a:active
*
*       This will set a link that is in the process
*       of being clicked to a particular color and 
*       text decoration.
*
****************************************************/

/*****************************************************

a:active  {
        color: #0000FF;
        text-decoration : underline;
}
*****************************************************/  

/****************************************************
*
*       a:hover
*
*       This will set a link that has a mouse pointer
*       hovering on it to a  particular color and 
*       text decoration.  NOTE: This feature WILL NOT
*       work in Netscape 4.x and earlier browsers.
*       Javascript is an alternative solution.
****************************************************/

/****************************************************

a:hover  {
        color : #0000FF;
        text-decoration : underline;
}
****************************************************/


/****************************************************
*
*       The following declarations are css classes.
*       They can be used by an html tag in the following
*       manner:
*       
*               < SomeHTMLTag class="p07pt">Text Here</SomeHTMLTag>
*
*       The "Text Here" will have the charateristics of the .p07pt
*       declaration in the imported css file.
*
*****************************************************/
 


/****************************************************
*
*       font size class definitions
*
****************************************************/


.p07pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 7pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p07ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 7pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.p07ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 7pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p07ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 7pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.p07ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 7pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.p08ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}
.p08pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p08ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.p08ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p08ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.p08ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.p08ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.p09pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p09ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        text-decoration: none;
}

.p09ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p09ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.p09ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.p09ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}



.p10pt { 
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #00457C;
        text-decoration: none;
}

.p10ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}


.p10ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p10ptunderline {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: underline;
}

.p10ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #00457C;
        text-decoration: none;
}

.p10ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #00457C;
        text-decoration: none;
}

.p10ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}


.p11pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p11ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.p11ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p11ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #00457C;
        text-decoration: none;
}

.p11ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #00457C;
        text-decoration: none;
}

.p11ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}


.p12pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p12ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.p12ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p12ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #00457C;
        text-decoration: none;
}

.p12ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #00457C;
        text-decoration: none;
}

.p12ptboldcolorviapurple {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #664D99;
        text-decoration: none;
}

.p12ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}



.p13pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p13ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.p13ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.p13ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.p13ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.p13ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

/********************************************************
*
*       class definitions for itinerary text
*
*******************************************************/

        
.itinerary {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerarybold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.itineraryitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerarycolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.itineraryboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 9pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.itineraryitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 8pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}


.itinerary10pt { 
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary10ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}


.itinerary10ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary10ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary10ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary10ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}


.itinerary11pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary11ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.itinerary11ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary11ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary11ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary11ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}


.itinerary12pt {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary12ptbold {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.itinerary12ptitalic {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #000000;
        text-decoration: none;
}

.itinerary12ptcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary12ptboldcolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #5A84BD;
        text-decoration: none;
}

.itinerary12ptitaliccolor {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
        font-style: italic;
        line-height: normal;
        font-weight: normal;
        color: #5A84BD;
        text-decoration: none;
}

/*************************************************************
*
*       class definitions for error text
*
*************************************************************/

.errorInfoText {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #444444;
        text-decoration: none;
}

.errorInquiryText {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #444444;
        text-decoration: none;
}

.errorErrorText {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #ff0000;
        text-decoration: none;
}

.errorWarningText {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        color: #444444;
        text-decoration: none;
}


/*****************************************************

Define Input and Textarea Text font

input {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 10pt;
   font-style: normal;
   line-height: normal;
   font-weight: normal;
   color: #000000;
   text-decoration: none;
}

textarea {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 10pt;
   font-style: normal;
   line-height: normal;
   font-weight: normal;
   color: #000000;
   text-decoration: none;
}

/********************************************************
 *
 * 			For Click
 * 
 ********************************************************/ 
.telefono {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #00457C;
	text-decoration: none;
}
.copyright {
	font-family: Arial;
	font-size: 8px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.tabla {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #FFFFFF;
	text-decoration: none;
	padding-left: 8px;
}
.newList {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	line-height: 20px;
	color: #000066;
	text-decoration: none;
	left: 1px;
	font-weight: bold;
	list-style-type: disc;
}

/* NAVIGATION BAR */

a:hover {
	text-decoration: underline;
}

#userNav ul {
	list-style: none;
	margin: 0px;
	padding: 0px;	
}

#userNav ul li {
	background-color: #00457C;
	float: left;	// alignment in container/page
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 7pt;
	font-weight:bold;
	margin: 0px;
	padding: 0px;
	height: 25px;
}

#userNav ul li a {
	padding:2px 7px 3px 6px;
	color:#fff;
	display: block;
	text-decoration: none;
	top: 15%;
	position: relative;
}

#userNav ul li a:hover, a#current {
	padding:3px 6px 2px 7px;
	color:#81B0D4;
	text-decoration:none;
}

.navSubCurrent {
	color:#81B0D4;
}

#nav ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	vertical-align:baseline;
}

#nav ul li {
	background-color: #FBB033;
	float: left;	// alignment in container/page
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	height: 25px;
}

#nav ul li a {
	padding:2px 7px 3px 6px;
	color:#fff;
	display: block;
	text-decoration:none;
	top: 15%;
	position: relative;
}

#nav ul li a:hover, a#current {
	padding:3px 6px 2px 7px;
	color:#FEE7C0;
	text-decoration:none;
}

.navCurrent {
	color:#FEE7C0;
}

#button
{
        float: right;
}

#button ul
{
        list-style: none;
        padding: 0;
        margin: 0;
}

#button li
{
        float: right;
        margin: 0 0.15em;
        padding: 0;
        text-align: center;
}

#button li a
{
        background: url(http://qadmmwb801:8080/skylights/images/button-bg-blue-1.jpg) #00457C bottom left repeat-x;
        height: 1.7em;
        line-height: 1.7em;
        width: 8em;
        display: block;
        color: #fff;
        text-decoration: none;
}


#button li a:hover
{
        background: url(http://qadmmwb801:8080/skylights/images/button-bg-blue-down-1.jpg) #00457C bottom left repeat-x;
        height: 1.7em;
        line-height: 1.7em;
        width: 8em;
        display: block;
        color: #fff;
        text-decoration: none;
}


/* Commented backslash hack hides rule from IE5-Mac \*/
#button li a
{
        float: none;
}
/* End IE5-Mac hack */

#button
{
        width:30em;
}

#dhtmltooltip
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
        position: absolute;
        width: 100px;
        border: 2px solid black;
        padding: 2px;
        background-color: lightyellow;
        visibility: hidden;
        z-index: 100;
        /*Remove below line to remove shadow. Below line should always appear last within this CSS*/
        filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}

.titulo 
{
	FONT-WEIGHT: bold; 
	FONT-SIZE: 9px; 
	COLOR: #ffffff; 
	FONT-STYLE: normal; 
	FONT-FAMILY: Arial;
}
