@charset "UTF-8";
/* CSS Document */
html {
	overflow-y: scroll;
}
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: normal;
color: #000000;
background-color: #ffffff;
text-align: center;
}
h1, h2, h3, h4, h5, h6 { 
margin: 0;
padding: 0;
font-weight: normal;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
h1 {
font-size: 14px;
color: #999999;
text-transform: uppercase;
}
h4 {
font-size: 11px;
color: #cccc66;
padding: 5px 0 0 0;
} 
p {
margin-right: 14px;
}
img {
border: 0;
}
ul, ol, li, dl {
	margin: 0;
	padding: 0;
}
a {
color: #cccc66;
text-decoration: none;
}
a:hover {
color: #cccccc;
text-decoration: none;
}
a.active {color: #cccc66;}
/* float clearing classes */
.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;
}

/* global classes */
 .clear         { clear:both; }
 .float-left    { float:left; }
 .float-right   { float:right; }

 .text-left     { text-align:left; }
 .text-right    { text-align:right; }
 .text-center   { text-align:center; }
 .text-justify  { text-align:justify; }

 .bold          { font-weight:bold; }
 .italic        { font-style:italic; }
 .underline     { border-bottom:1px solid; }
 .highlight     { background:#ffc; }

 .wrap          { width:960px;margin:0 auto; }

 .img-left      { float:left;margin:4px 10px 4px 0; }
 .img-right     { float:right;margin:4px 0 4px 10px; }

 .nopadding     { padding:0; }
 .noindent      { margin-left:0;padding-left:0; }
 .nobullet      { list-style:none;list-style-image:none; }
 