/* Global Styles */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

/* 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: #353c48;
	color: #2d2e2e;
	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; /* Centers the page content container in IE 5 browsers. */
	font: 12px/16px Verdana, Geneva, sans-serif;
}
/* Commonly used to style page titles. */
h1 {
	color: #A63635;
	font: bold 24px/26px "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
/* Commonly used to style section titles. */
h2 {
	color: #204162;
	font: bolder 12px/18px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	margin-top: 5px;
	letter-spacing: .06em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #4095df;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #4870aa;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #A63635;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #039;
}
#fullWidthHeader {
	border-bottom: #4b647f; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	background: #EAEFF5 url(../images/header.jpg) no-repeat right;
}
/* 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 {
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1100px;
	background: #EBF0F6;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	background: #DBE6EE repeat-y;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-right: solid 1px #9bb6d2; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 300px;
	background: repeat-y;
}
/* 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 0 0 320px;
	padding-left: 10px;
	padding-right: 10px;
	background: #FFF;
}
#bottom {
	background: #EAEFF5;
	text-align: left;
	font-variant: small-caps;
	text-transform: capitalize;
}
.pict {
	padding: 0px;
	border: 1px solid #353C48;
	margin: 5px 7px;
}
#brdcrumbs {
	font: 14px/20px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #FFF;
	background: #353C48;
	padding-bottom: 5px;
}

#copy {
	font-size: 10px;
	color: #EAEFF5;
	background: #353C48;
	text-align: center;
}

</style>
<style type="text/css" media="print">
.pict {
	padding: 5px;
	border: thin solid #353C48;
}
#outerWrapper2 {
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 100%;
	background: #EBF0F6;
}
.centerdiv {
	background: #BFCDDB;
	text-align: center;
	margin: 0px auto;
	padding-top: 10px;
	padding-bottom: 10px;
}
.alisawebs {
	font-size: 10px;
	background: #BFCDDB;
	text-align: right;
	padding: 10px 25px 10px 10px;
}


h3 {
	color: #204162;
	font: bolder 16px/18px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	margin-top: 5px;
	letter-spacing: .06em;
}
h5 {
	font-size: 10px;
	text-align: center;
}
