﻿/* This rule resets a core set of elements so that they will appear consistent across browsers.  */

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. */
body {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  background-color: #0a1f62; line-height: 1.2em; font-size: 0.8em; color: #2e2d2c; font-family: Verdana, Arial, Helvetica, sans-serif;
  margin: 0 0 0 0; /* Sets the margin properties(top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties(top, right, bottom, left) */
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.4;
}
h1 {font-size: 1.7em; color: #0a1f62; border-bottom: 2px solid #0a1f62; }
h2 {font-size: 1.4em; color: #0a1f62; border-bottom: 2px solid #0a1f62;}
h3 {font-size: 1.2em; color: #0a1f62; border-left: 10px solid #0a1f62; padding: 0 0 0 5px; }
h4 {font-size: 1.2em; color: #0a1f62; }
h5 {font-size: 1.2em; color: #0a1f62; text-transform: uppercase; }
h6 {font-size: 1.2em; color: #cd0023; text-transform: uppercase; letter-spacing: 2px;}


/* Sets the style for links. */
a,  a:link {  color: #0a1f62;  font-weight: bold;  text-decoration: underline;}
a:visited {  color: #cd0023;  font-weight: bold;  text-decoration: none;}
a:hover {  color: #cd0023;  text-decoration: underline;}
a:focus {  color: #cd0023;}
a:active {  color: #732600;}

/* 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: #fff;  width: 940px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  margin: 0 auto 0 auto; /* Sets the margin properties(top, right, bottom, left) */
  }

#header {background:  url('../images/pins.jpg'); height: 100px;}
	#header h1 {font-size: 1.6em; color: #fff; font-weight: bold;  border-bottom:0px; }
	
#logo {width: 141px; float: left; text-align: left;	/* box model hack */;
  }
#headercontent {padding: 60px 0px 0px 150px;} /* Sets the padding properties (top, right, bottom, left) */
 
#topNavigation {background-color: #0a1f62; height: 30px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties (top, right, bottom, left) */
}

#leftColumn1 {background-color: #d1daf3; float: left;
  border-right: solid 1px #000000; /* Sets the right border properties*/
  width: 150px; padding: 10px 10px 10px 10px; /* Sets the padding properties(top, right, bottom, left) */
}
	

#rightColumn1 {float: right; border-left: solid 1px #000000; /* Sets the left border properties*/
  width: 150px; padding: 10px 10px 10px 10px; /* Sets the padding properties(top, right, bottom, left) */
  background-color: #d1daf3;
}

/* 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. */
#content {padding: 10px 10px 10px 10px; /* Sets the padding properties (top, right, bottom, left) */
  margin: 0 170px 0 170px; /* Sets the margin properties (top, right, bottom, left) */
  background-color: #ffffff;
}
	#content p { margin-left:15px}


#contentright {padding: 10px 10px 10px 10px; /* Sets the padding properties(top, right, bottom, left) */
  margin: 0 10px 0 170px; /* Sets the margin properties(top, right, bottom, left) */
  background-color: #ffffff;
}
	#contentright p { margin-left:15px}


#contentleft {padding: 10px 10px 10px 10px; /* Sets the padding properties(top, right, bottom, left) */
  margin: 0 170px 0 10px; /* Sets the margin properties(top, right, bottom, left) */
  background-color: #ffffff;
}
	#contentleft p { margin-left:15px}


#nocolumn {padding: 10px 10px 10px 10px; /* Sets the padding properties(top, right, bottom, left) */
  margin: 0 10px 0 10px; /* Sets the margin properties(top, right, bottom, left) */
  background-color: #ffffff;
}
	#nocolumn p { margin-left:15px}


/* 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. */

#footer {background-color: #d1daf3; border-top: solid 1px #000000; /* Sets the top border properties*/
  padding: 0px 15px 2px 15px; /* Sets the padding properties(top, right, bottom, left) */
  font-size: 0.8em;
}

.clearFloat {display: block; clear: both;}
