@charset "UTF-8";

/* Yahoo User Interface (YUI) FONT SIZING CHART: 10px=77% 11px=85% 12px=93% 13px=100% 14px=108% 15px=116% 16px=123.1% 17px=131% 18px=138.5% 19px=146.5% 20px=153.9% 21px=161.6% 22px=167% 23px=174% 24px=182% 25px=189% 26px=197% 
Find out more about YUI at http://developer.yahoo.com/yui/ */

/* HEADINGS *//* Basic Headline Set -- Adjust font sizes based on YUI chart above to maintain consistency. */
h1 {font-size:120%; color:#FF3333; margin-top: 0; margin-bottom: 0; font-weight: bold; text-transform:uppercase;}
h2 {font-size:100%; color:#FF3333; margin-top: 0; margin-bottom: 0; font-weight: bold; text-transform:uppercase;}
h3 {font-size:100%; color:#000000; margin-top: 0; margin-bottom: 0; font-weight: bold;}
h4 {font-size:100%; color:#666666; margin-top: 0; margin-bottom: 0; font-style: bold;}
h5 {font-size:100%; color:#000000; margin-top: 0; margin-bottom: 0; font-weight: bold; font-style: italic;}
h6 {font-size:100%; color:#666666; margin-top: 0; margin-bottom: 0; font-weight: bold; font-style: italic;}

body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 77%;
	color: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}

a {color:#666; text-decoration:underline;}
a:link {color:#666; text-decoration:underline;}
a:visited {color:#666; text-decoration:underline;}
a:hover {color:#99C;}
a:active {color:#99C;}

.thrColFix #container { 
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: hidden; /* see equal-height columns at http://www.alistapart.com/articles/holygrail */
} 
.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url("img/left.jpg") repeat-y; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
	padding-bottom: 20000px;  /* X + padding-bottom */
	margin-bottom: -20000px;  /* X */
}
.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width:200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url("img/right.jpg") repeat-y; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
	padding-bottom: 20000px;  /* X + padding-bottom */
	margin-bottom: -20000px;  /* X */
}
.sidebar2text { 
	float: left;
	width: 140px;
	margin: 20px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColFix #mainContent { 
	width: 540px;
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.sideBySide { 
	width: 500px;
	margin: 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.photo { 
	float: left;
	width: 160px;
	margin: 20px 20px 0px 20px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.photoCaption { 
	float: left;
	width: 160px;
	margin: 5px 20px 0px 20px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-style: italic;
}
.photoText { 
	float: right;
	width: 320px;
	margin: 20px 20px 0px 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#textNav1 {
	float: left;
	width: 500px;
   list-style: none;
   margin: 0px 20px; 
   padding: 0;
}
#textNav1 li {
   float: left;
}
#textNav1 li a {
   display: block;
   background: #f33;
   text-align: center;
   color: white;
   padding: 3px 10px;
   border-right-style:solid;
   border-right-width:2px;
   border-right-color:#FFF;
   text-decoration: none;
}
#textNav1 li a:hover {
   background: #99C;
   color: white;
}
.rule { 
	width: 500px;
	margin: 0 20px;
	padding: 20px 0 0 0;
}
.shim { 
	width: 500px;
	margin: 0px 20px;
	padding: 0px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.thrColFix #footerContainer { 
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 58px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: hidden; /* see equal-height columns at http://www.alistapart.com/articles/holygrail */
} 
.thrColFix #footerSidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 58px;
	padding: 0; /* padding keeps the content of the div away from the edges */

}
.thrColFix #footerSidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width:200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 58px;
	padding: 0; /* padding keeps the content of the div away from the edges */
	
}
.thrColFix #footerCenter { 
	width:540px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:38px;
	background: #FF3333; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	line-height: 38px; /* to center the text vertically within box? */
	color: #FFFFFF;
}

/* Styles for footer link */
	a.footer {color:#FFF; text-decoration:none;}
	a.footer:link {color:#FFF; text-decoration:none;}
	a.footer:visited {color:#FFF;}
	a.footer:hover {color:#99C;}
	a.footer:active {color:#99C;}

/* Styles for left navigation */
#main_nav {line-height: 28px; width: 140px; margin: 0px; padding: 0px;}
ul.main_nav li {display:block; margin:6px 20px 0px 0px; list-style:none;}
ul.main_nav li a {color:#000000; text-decoration:underline;}
ul.main_nav li a:link {text-decoration:underline; color:#666666;}
ul.main_nav li a:visited {color:#666666;}
ul.main_nav li a:hover { color:#FF3333;}
ul.main_nav li a:active {color:#FF3333;}
	
table.international
  {  
     width:500px;
	 margin: 0 20px;
  }
TD
  {  
	 border-style:none;
  }	
TH
  {  
	 border-style:none;
  }
TD.purple
  {  
     background-color:#9999CC;
	 border-style:none;
  }	
TH.purple
  {  
     background-color:#9999CC;
	 border-style:none;
	
  }
TD.gray
  {  
     background-color:#CCCCCC;
	 border-style:none;
  }	
TH.gray
  {  
     background-color:#CCCCCC;
	 border-style:none;
  }