@charset "utf-8";
/* CSS Document */

html { min-height: 100%; margin-bottom: 1px; }

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/bg.jpg);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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 */
	color: #000000;
	
}

img	{
	border:0px;
	padding-right: 10px;
}

.vra #container { 
	width: 780px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height:100%;
	padding:0px;
	
} 
.vra #header { 
	background: url(images/header.jpg);
	height:111px;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.vra .nav { 
	background: #10a4c4;
	width: 100%;
	padding: 0;
	margin: 0;
	float:left;
	} 

.vra #nav ul li {
	display: inline;
	padding: 0;
	margin: 0;
}


body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a, body#tab5 li.tab5 a, body#tab6 li.tab6 a, body#tab7 li.tab7 a

{ /* settings for selected tab link */
background-color: #fff; /* set selected tab background color as desired */
color: #10a4c4; /* set selected tab link color as desired */

}

.vra #nav a {
   color:#fff;
   background:#10a4c4;
   font-family:Arial, Helvetica, sans-serif;
   font-size: 14px;
   text-decoration: none;
   padding: 8px;
   border-right: 1px solid #0a819b;
   float:left;
   width:auto;
   }
   
.vra #nav a:hover {
   color:#10a4c4;
   background:#333;

   }

.vra #container2	{
	width:780px;
	margin:0px;
	padding:0px;
	background-image: url(images/bamboo_bg.jpg);
	background-repeat:repeat-y;



}
   
.vra #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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 */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	padding-left:50px;
	background-image:url(images/bamboo_sidebar.jpg);
	background-repeat:repeat-y;
	background-color:#b5b5b5;

}

.vra #mainContent { 
	margin: 0px 300px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top: 7%;
	height: 100%;
	
} 

.vra #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #333;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align:center;
} 

.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

/* typography------------------------------ */

h1	{
	color: #666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.4em;
	line-height:1.5em;
	font-weight:bold;
}

h2	{
	color:000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.3em;
	line-height:1.4em;
}

h3	{
	color:000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	line-height:1.1em;
}

h4	{
	color:000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:.9em;
	line-height:1em;
}

p	{
	color:000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:18px;
}

ul	{
	list-style-type:square;
	
}

li	{
	color:#666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:18px;

}

.vra #sidebar ul	{
	list-style-type:square;
	
}

.vra #sidebar li	{
	color:#666;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:.9em;
	line-height:1.2em;

}

.vra #sidebar li ul	{
	margin: 0px;
	padding-left: .5em;
	list-style-type: circle;
	font-size:.9em;
	line-height:1.2em;
}

a:link {
	color: #000000; 
	text-decoration: underline;
	}

a:visited	{
	color: #000000; 
	text-decoration: underline;
	}

a:active 	{
	color: #10a4c4;
	text-decoration: underline;
	}

a:hover {
	color: #10a4c4; 
	text-decoration: underline;
	}	
	
.vra #footer a:link {
	color: #fff; 
	text-decoration: underline;
	}

.vra #footer a:visited	{
	color: #fff; 
	text-decoration: underline;
	}

.vra #footer a:active 	{
	color: #10a4c4;
	text-decoration: underline;
	}

.vra #footer a:hover {
	color: #10a4c4; 
	text-decoration: underline;
	}	

.vra #sidebar1 h1	{
	margin:0px;
	color: #000;
	padding: 10px 15px 5px 25px;
	font-size:1.2em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	line-height: 1.3em;
}

.vra #sidebar1 h2	{
	margin:0px;
	color: #000;
	padding: 10px 15px 5px 25px;
	font-size:.9em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	line-height: 1.1em;
}

.vra #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
}