/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #000; margin: 1em auto; padding: 0; width: 90%;}

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font:99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
#nav ul, #nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #CC3333; color:#fff; text-shadow: none; }
::selection { background:#CC3333; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #CC3333; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }
/**
 * Primary styles
 *
 * Author: Anton 
 */

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearLine{ clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/**
 * Styling Start -Anton.
 *
 */
body{
 background-image: url("../img/BgTexture.jpg");
 background-color: #1A0D91;
}
#tile{
background-image: url("../img/Page-BgGradient.jpg");
background-repeat: repeat-x;
top:0;
left:0;
width:100%;
height: 152px;
position: absolute;
}
#container{
  width:1012px;
  margin:0 auto;
  position: relative;
  top:30px;
}
#header{
   border-top: 2px solid #fff;
   border-left: 2px solid #fff;
   border-right: 2px solid #fff;
}
#banner{
  width:1008px;
  height:124px;
}
#seoDiv{
  display:none;
}
#nav{height:35px;
background: #cccccc; /* Old browsers */
background: -moz-linear-gradient(top, #cccccc 0%, #e5e9e5 45%, #e5e9e5 55%, #cccccc 100%, #cccccc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(45%,#e5e9e5), color-stop(55%,#e5e9e5), color-stop(100%,#cccccc), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #cccccc 0%,#e5e9e5 45%,#e5e9e5 55%,#cccccc 100%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #cccccc 0%,#e5e9e5 45%,#e5e9e5 55%,#cccccc 100%,#cccccc 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #cccccc 0%,#e5e9e5 45%,#e5e9e5 55%,#cccccc 100%,#cccccc 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #cccccc 0%,#e5e9e5 45%,#e5e9e5 55%,#cccccc 100%,#cccccc 100%); /* W3C */
}
#nav ul{
  width:980px;
  margin-left:12px;
}
#nav ul li{ 
  float:left;
  margin:4px 8px 0 0;
}
#nav ul li a{
padding:0px 20px 0 20px;
height:31px;
line-height:31px;
color:#fff;
text-decoration:none;
background-color:#dc2422;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 10px 10px 0px 0px;
border-radius: 10px 10px 0px 0px;
display:block;
font-family: Arial, Helvetica, Sans-Serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
}
#nav ul li a:hover{
padding:0px 20px 0 20px;
height:31px;
line-height:31px;
color:#000;
text-decoration:none;
background-color:#fff;
}
#nav .current{
color:#000;
background-color:#fff;
}
#nav ul li a.selected{
  color: #CDBFAD;
  text-decoration: underline;
}
#nav ul li ul{
position: absolute;
width: 160px;
left: -999em;
z-index:100;
}
#nav ul li ul li{
margin:0;
}
#nav ul li:hover ul{
left: auto;
display:block;
position: absolute;
z-index:100;
background-color:#dc2422;
width: 160px;
margin:0;
padding:5px 0;
}    
#nav ul li ul li a{
height:20px;
line-height:20px;
padding:0px 5px 0 10px;
margin:0;
color: #fff;
display:block;
line-height:20px;
font-weight:500;
width:145px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 0px 0px 0px 0px;
border-radius: 0px 0px 0px 0px;
}

#nav ul li ul li a:hover{
height:20px;
line-height:20px;
padding:0px 5px 0 10px;
margin:0;
width:145px;
color: #E6E9E6;
display:block;
line-height:20px;
text-decoration: none;
font-weight:500;
background-color:#344da1;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 0px 0px 0px 0px;
border-radius: 0px 0px 0px 0px;
}
#main{background-color:#fff;
border: 2px solid #fff;}
#leftHome{
  float:left;
  width:750px;
}

#slider{
  margin:12px 0 20px 0;
  width:740px;
  height:388px;
  overflow: hidden;
}
#slider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
#slider a {
display:none;
}

#sideBarHome{
  float:left;
  width:250px;
  margin:12px 0 0 0;
}
#viewVehicles{
width:250px;
height:125px;
background-image: url(../img/ViewOurVehiclesWeb.jpg);
background-repeat:no-repeat;
background-position: 0px 0px;
}
#viewVehicles a{
width:250px;
height:125px;
display:block;
}
#viewVehicles:hover{
width:250px;
height:125px;
background-image: url(../img/ViewOurVehiclesWeb.jpg);
background-repeat:no-repeat;
background-position: -250px 0px;
}
#payLess{
width:250px;
height:143px;
background-image: url(../img/carHireSpriteWeb.jpg);
background-repeat:no-repeat;
background-position: 0px 0px;
}
#payLess a{
width:250px;
height:143px;
display:block;
}
#payLess:hover{
width:250px;
height:143px;
background-image: url(../img/carHireSpriteWeb.jpg);
background-repeat:no-repeat;
background-position: -250px 0px;
}
#QandA{
width:250px;
height:125px;
background-image: url(../img/QandAWebHover.jpg);
background-repeat:no-repeat;
background-position: 0px 0px;
}
#QandA a{
width:250px;
height:125px;
display:block;
}
#QandA:hover{
width:250px;
height:125px;
background-image: url(../img/QandAWebHover.jpg);
background-repeat:no-repeat;
background-position: -250px 0px;
}
/*Q and A*/
#leftQA{
  float:left;
  width:700px;
  padding: 0 20px;
}
#leftQA h3{
font-family: Verdana;
font-size:16px;
color:#FF0000;
margin-top:35px;
}
#leftQA p{
font-family: Verdana;
font-size:13px;
color:#141613;
margin-top:20px;
width: 660px;
}
#leftQA ul{margin-top:15px;margin-left:0; padding:0;}
#leftQA ul li{
  color:#141613;
  font-family: Verdana;
  font-size:13px;
  margin-top:5px;
  list-style-type:none;
}
/*Contact*/
#contactMain{
  padding-left:12px;
}
.greyBox{
  width:210px;
  height:220px;
  background-color:#ccc;
  float:left;
  margin:10px 10px 20px 0;
}
.greyBoxForm
{ width:543px;
  height:220px;
  background-color:#ccc;
  float:left;
  margin:10px 10px 20px 0;
    
    }
.greyBox h1{
  color:#FF0000;
  font-size:24px;
  font-family:Arial,Helvetica,Sans-Serif;
  margin:25px 0 0 10px;
}
.greyBox h2{
  color:#db2524;
  font-size:14px;
  font-family:Verdana,Helvetica,Sans-Serif;
  margin:28px 0 0 10px;
}
.greyBoxForm h2{
  color:#db2524;
  font-size:14px;
  font-family:Verdana,Helvetica,Sans-Serif;
  margin:28px 0 0 10px;
}
.greyBox a{
  color:#db2524;
  font-size:14px;
  font-family:Arial,Helvetica,Sans-Serif;
  text-decoration:none;
}
.greyBox a:hover{
  color:#db2524;
  font-weight:600;
}


#greyBox3{
  width:519px;
  height:404px;
  background-color:#ccc;
  border:13px solid #ccc;
  float:left;
  margin:10px 0px 50px 0;
}
#map{

  width:519px;
  height:390px;
  margin:0;

}
.greyBox1P{
  font-family:Arial,Helvetica,Sans-Serif;
  font-size:14px;
  margin:10px 0 0 10px;
}
.greyBox ul{
  list-style-type:none;
  margin:10px 0 0 10px;
}
.greyBox ul li{
  list-style-type:none;
  margin-bottom:5px;
}
.greyBox2P{
  font-family:	Arial,Helvetica,Sans-Serif;
 font-size:14px;
 margin:10px 0 0 10px;
}

.profileBox{
  height:170px;
}
.profileImg{
  height:113px;
  width:150px;
  border:10px solid #ccc;
  float:left;
  margin:0 0 10px 12px;
}
.profileInfo{
  width:805px;
  height:133px;
  background-color:#ccc;
  float:left;
  margin:0px 0px 10px 10px;
}
.profileInfo h2{
color:#ff0000;
font-size:18px;
font-family: Arial, Helvetica, Sans-Serif;
margin:20px 0 0 10px;
}
.profileInfo p{
 padding:0 10px;
 margin-top: 15px;
}
/*About Us*/
#leftAbout{
  width:900px;
 margin-left:50px;
}
#leftAbout hr{
  width:900px;
}
#aboutUsBanner{
  margin:30px 0 25px 0px; 
}
#playVehicles{
  width:227px;
  height:334px;
  margin:8px 0px 0px 0px;
}
#playVehicles a{
  width:227px;
  height:334px;
  display:block;
}
#aboutUsYard{
  margin:25px 0px;  
}
.aboutUsP{
  margin: 10px 0px
}
.lastP{margin-bottom:20px;}

/*Side Bar fo About*/
#sideBarAbout{
  float:right;
  width:250px;
  margin:12px 0 0 0;
}
#profilesAbout{
margin:15% 0 0 16%;  
}
#profilesAbout a{
  width:150px;
  height:113px;
}
.profileImgAbout{
  width:150px;
  height:113px;
  margin: 0% 0 10% 0;
  border:2px solid #ccc;
}
.profileImgAbout a{
  width:150px;
  height:113px;
  display:block;
}
.profileImgAbout:hover{
  width:150px;
  height:113px;
  margin: 0% 0 10% 0;
  border:2px solid #000;
}
#sideBarAbout h2{
  margin: 8% 0 1% 0;
  color:#FF0000;
}
/*Media*/
#contactMainMedia
{width:986px;
margin:12px 0 0 12px;}
#virtualVideosImg a{
  width:227px;
  height:219px;
  display:block;
}
#videoPlayer
{
   width:600px;
   margin:30px auto;
   height:400px;
   border:2px solid #f2f2f2;
    }
/*Terms and Privacy Statement*/
#contactTems{
  width:750px;
  margin:0 auto;
}
#contactTems h1{
  font-size:20px;
  color:#171717;
  margin:20px 0 10px 0; 
}
#contactTems h3{
  font-size:14px;
  color:#444;
  margin:18px 0 4px 0; 
}
#contactTems p{
  margin-bottom:10px;
}
#contactTems ul{
  margin-bottom:10px;
}
#termLine{
  height:15px;
}
#footer{
  background-color:#dc2422;
  margin-top:12px;
  height:50px;
}
#footer p{
  font-size:12px;
  font-family: Arial, Helvetica, Sans-Serif;
  color:#141613;
}
#footer .footerA{
  color: #f7dda9;
  text-decoration: none;
}

/*footer .footerA:visited
{
text-decoration: underline;
  color: #393E37;
}*/

#footer .footerA:hover
{
text-decoration: none;
color: #ffcc66;
}
#footerTop{text-align:center;
padding-top:10px;
font-size:11px;}
#footerBottom{text-align:center;
padding-bottom:10px;
font-size:11px;}

/****************************************form*/
.formStatus
{
 border:1px solid red;
 height:40px;
 line-height:40px;
 text-align:center;
 }
 .formSuccess 
{
	padding: 10px; 
	background: #E8FFE8; 
	border: 1px solid #CCFF99;
	width: 375px;
	margin: 0px 0 15px 0px;
}

.formError
{
	padding: 10px; 
	background: #FFECEC; 
	border: 1px solid #FFB3B3;
	width: 345px; 
	margin: 0px 0 15px 0px;
}
.hidden { display: none; visibility: hidden; }

.form{
  width: 515px;
  margin:0px;
  padding:10px 10px 10px 12px;
}




.bottom{
  margin-bottom:15px;
  font-size:11px;
}
.legends{
  font-size:14px;
  margin-top:15px;
}
.legends a{
  color:#444;
}
.legends a:hover{
  color:#0000ff;
}
.form label{
  float:left;
  width:120px;
  line-height:20px;

}
.form input{
  border:1px solid #a8a8a8;
  background-color:#f2f2f2;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius: 3px;
  height:20px;
  width:265px;
  float:left;
  padding-left:5px;
}
.form #txtMessage{
  border:1px solid #a8a8a8;
  background-color:#f2f2f2;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius: 3px;
  width:265px;
  height:40px;
  float:left;
  padding:5px;
}

#messageFieldset{float:left;width:400px;}

.errorMessage{
  height:10px;
  line-height:10px;
  width: 220px;
  margin-left:120px;
  font-size:10px;
  color:#ff0000;
}
#btnSubmit{
  width:93px;
  height:29px;
  float:right;
  padding:0;
  margin-top:20px;
}

#submitFieldset input{
  width:93px;
  height:29px;
  border:none;
}


/***************************************financeForm*/

/***************************************form*/
.clearLineHeight{height:30px;clear:both;}

.formFinance h1{
  font-size: 26px;
  margin:0;padding:0;
  color:#CD1430;
}

#formFinance p{margin:0 0 20px 0;}
.formStatus
{
height:20px;
line-height:20px;
width:780px;
padding-left:20px;
    }
#formFinance{
width: 940px;
margin:0px auto 25px auto;
background-color:#FFF;
}
.formHeader{
  height:68px;
  line-height:68px;
  width:780px;
  background-color:#FFE479;
  color:#444;
  font-size:30px;
   padding-left:20px;
}
.legend{
  height:30px;
  line-height:30px;
  width:920px;
  background-color:#222;
  color:#fff;
  font-size:16px;
  padding-left:20px;
  margin-bottom:10px;
}
.topLegend{
  width:920px;
  background-color:#222;
  color:#fff;
  font-size:16px;
  padding:5px 0 5px 20px;
  
}
.subLegend {
  height:26px;
  line-height:26px;
  width:920px;
  background-color:#444;
  color:#e5e9e5;
  font-size:16px;
  padding-left:20px;
  margin-bottom:10px;}

.personalDetails{
  width:260px;
  float:left;
}




.personalDetails label{
font-size:12px;
width:180px;
height:20px;
line-height:20px;
color:#666;
margin:0;padding:0;
clear:both;
font-style:normal;
}
.personalDetails input{
font-size:12px;
width:235px;
height:25px;
line-height:25px;
background-color:#f2f2f2;
margin:0;padding:0;
border:1px solid #a8a8a8;
-webkit-border-radius:3px;
-moz-border-radius:3px;
}


.personalDetails select
{
  height:25px;
  line-height:25px;
  width:235px;
 border:1px solid #a8a8a8;
background-color:#f2f2f2;
-webkit-border-radius:3px;
-moz-border-radius:3px;
padding-left:5px;
  }

.errorMessageFin{
height:15px;
line-height:15px;
width: 220px;
margin-left:15px;
font-size:10px;
color:#ff0000;
font-size:11px;
}

#licenceImage{
width:238px;
height:100px;
background-repeat:no-repeat;
margin:0px 0px 10px 20px;
float:left;
}
.statement{
width:770px;
font-size:11px;
color:#666;
margin:0px auto 10px;
}

#submitFin
{
width:93px;
height:28px;
float:right;
margin:10px 20px 20px 0px;  
}

#checkBoxFieldset
{
  width:240px;
  float:left; 
  margin-left:30px; 
    }

#chkAgree
{
float:left;
}
#checkBoxFieldset input
{
width:30px;
float:left;
background-color:#fff;
height:15px;
line-height:15px;
color:#666;}
    
#checkBoxFieldset label
{
width:160px;
float:left;
margin-left:0px;
margin-bottom:10px;
height:15px;
line-height:15px;
color:#666;
}


#block{width:80px;height:260px; float:left;}
.blockTwo{width:80px;height:150px; float:left;}
#blockThree{width:80px;height:70px; float:left;}