/* 
========================
  GRIDINATOR CSS v0.3
  http://gridinator.com/
  
  GRIDINATOR CSS is a very basic framework to create
  grid-based layouts. The content of this file is 
  provided as-is, without support.
  
  If you would like to contact GRIDINATOR to suggest
  improvements, to ask for help or to file a bug report, 
  please feel free to email: gridinator@steff.me
  
  Your grid settings:
  	columns: 4
  	column width: 200px
  	column margin: 10px
  	container margin: 10px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
}

body {
	font-size: 10pt;
	margin: 0;
	padding: 0;
	text-align: left;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 12pt;
	color: #373639;
	font-weight: normal;
}


.wrapper {
	margin: 0 auto; /* This centers the grid. Remove this line to place the grid on the left of the page. */
	text-align: left;
	width: 850px;
}

.inner-wrapper {
	clear: both;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	padding: 0 10px 0 10px;
	position: relative;
	width: 830px;
}

img {
	border-style: none;
}
p{
	margin-bottom: 12px;
    text-align: left;
}

h1{
	margin-top: 3px;
	margin-left: 5px;
	font-size: 8pt;
	line-height: 12pt;
	font-weight: lighter;
}
h2{
	margin-right: 50px;
	margin-left: 190px;
	font-size: 8pt;
	line-height: 10pt;
	font-weight: lighter;
}
h3{
	margin-top: 3px;
	margin-right: 5px;
	font-size: 8pt;
	line-height: 12pt;
	font-weight: lighter;
	text-align: right;
}
h4 {
	text-align: right;
	margin-right: 120px;
}
.underline {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.blue {
	background-color: #A8BCFF;
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 0 10px 0;
	padding: 10px 10px 8px 10px;
	position: relative;
	width: 390px;
	color: #FF0000;
}

.container {
	clear: both;
	float: left;
	margin: 0;
	width: 100%;	
}
.one-col, .two-col, .three-col, .four-col {
    text-align: left;
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 10px 10px 0;
	padding: 0;
	position: relative;
}
.one-col {
	width: 200px;
}

.two-col {
	width: 410px;
	z-index: 1;
}

.three-col {
	width: 620px;
}

.four-col {
	width: 830px;
	margin-right: 0;
	z-index: 10;
}

.prefix-one {
	margin-left: 210px;
}

.prefix-two {
	margin-left: 420px;
}

.prefix-three {
	margin-left: 630px;
}

.suffix-one {
	margin-right: 220px;
}

.suffix-two {
	margin-right: 430px;
}

.suffix-three {
	margin-right: 640px;
}

.clear { /* Useful generic clearing class. */
	clear: both;
}
.last-col {
	margin-right: 0;
}
.top-bar {
	background-color: #eeeeee;
	color: #999999;
	height: 16pt;
	font-size: 10pt;
	line-height: 12pt;
	position: fixed;
	width: 100%;
}
.logo {
	position: fixed;
}
.info {
	color: #999999;
	margin-top: 165px;
	text-align: right;
}
a:link {
	color:#999999;
	text-decoration: none;
	font-weight: normal;
}      /* unvisited link */
a:visited {
	color:#999999;
	font-weight: normal;
	text-decoration: none;
}  /* visited link */
a:hover {
	color:#FF0000;
	font-weight: normal;
	text-decoration: none;
}  /* mouse over link */
a:active {
	color:#FF0000;
	font-weight: normal;
	text-decoration: none;
}  /* selected link */

a.two:link {
	color:#FF0000;
	text-decoration: none;
}      /* unvisited link */
a.two:visited {
	color:#FF0000;
	text-decoration: none;
}  /* visited link */
a.two:hover {
	color:#00ADEE;
	text-decoration: none;
}  /* mouse over link */
a.two:active {
	color:#00ADEE;
	text-decoration: none;
}  /* selected link */

