<style type="text/css" media="all">
<!--<!--
/* This rule resets a core set of elements so that they will appear consistent 
across browsers. Without this rule, content styled with an h1 tag, for example, 
would appear in different places in Firefox and Internet Explorer because each 
browser has a different top margin default value. By resetting these values to 0, 
the elements will initially be rendered in an identical fashion and their properties 
can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* The body is the outermost layout component and contains the visible page content.
 Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #e8e8e8;
  border-color: #999999; /* Sets the border color properties for an element using 
  shorthand notation */
  color: #333333;
  font: normal normal normal 12px Arial, Helvetica, sans-serif; /* Sets the font 
  properties for an element using shorthand notation */
  line-height: 18px;
 scrollbar-3d-light-color : #CCCCCC;
	scrollbar-arrow-color : #000081;
	scrollbar-base-color : #000081;
	scrollbar-dark-shadow-color : #000081;
	scrollbar-face-color : #CCCCCC;
	scrollbar-highlight-color  : #CCCCCC;
	scrollbar-shadow-color : #000081;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand 
  notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand 
  notation (top, right, bottom, left) */
  
  text-align: center;
  text-decoration: none;
  text-transform: none;

}
/* Commonly used to style page titles. */
h1 {
  color: #000081;
  font-size: 20px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000081;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
}
h3 {
	color : #000081;
	font-size : 16px;
   font-weight: bold;
   line-height: 18px;

}
h4 {
	color : #000081;
	font-size : 14px;
	font-weight: bold;
   line-height: 16px;

}
h5 {
	
	color : #000081;
	font-size : 12px;
	font-weight: bold;
   line-height: 14px;

}

h6 {
	color : #000081;
	font-size : 10px;
	font-weight: bold;
   line-height: 14px;

}
/* Sets the style for unvisited links. */

a,  a:link {
  color: #E9E9E9;
  font-weight: bold;
  text-decoration: none;
}
a.internal1:link {
	color : #000081;
	text-decoration: none;
  font-weight: bold;

}
/* Sets the style for visited links. */

a:visited {
  color:  #6591F0;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */

a:hover {
  color: #0000FF;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #9D73AB;
}
/* This is a container for the page content. It is common to use the container to 
constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #ffffff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using 
  shorthand notation (top, right, bottom, left) */
  min-width: 640px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 765px;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  border-left: 1px solid #666666;
  border-right: 1px solid #666666;
}
#outerWrapper #header {
  background-color: #ffffff;
  border-bottom: solid 0px #ffffff; /* Sets the bottom border properties for an 
  element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using 
  shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #000081;
  border-right: solid 0px #666; /* Sets the right border properties for an element 
  using shorthand notation */
  float: left;
  padding: 10px 0px 0px 10px; /* Sets the padding properties for an element using 
  shorthand notation (top, right, bottom, left) */
  width: 140px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #cccccc;
  border-left: solid 0px #666;  /* Sets the left border properties for an element 
  using shorthand notation */
  float: right;
  padding: 0px 5px 0px 5px; /* Sets the padding properties for an element using 
  shorthand notation (top, right, bottom, left) */
  width: 155px;
}
/* Contains the main page content. When using a mutliple column layout the margins 
will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 160px 0 160px;/* Sets the margin properties for an element using shorthand 
  notation (top, right, bottom, left) */
  padding: 10px 10px 00px 0px; /* Sets the padding properties for an element using 
  shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish 
multiple column tableless layouts. If floated elements are used without being 
cleared the elements following will wrap around the floated element. This class 
should be applied to an element after the last floated element and before the close 
of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #ffffff;
  border-top: solid 0px #666; /* Sets the top border properties for an element using 
  shorthand notation */
  padding: 0px 0px 0px 0px; /* Sets the padding 
  properties for an element using shorthand notation (top, right, bottom, left) */
  
}
-->
</style>