/* CSS Document */
/* Author: Vicki Stone Marketing */

body {
	margin-top: 10px;
	padding: 0;
	font-size: 80%;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
}

a {
	font:100% Arial, Helvetica, sans-serif;
	color: #818286;
	text-decoration: underline;
}

	h1, h2, h3 {
	margin: 0;
	font-weight: normal;
}

h1 {
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
}

h2 {
	font-size: 23px;
}


/* container */
#container {
	margin: 0 auto;
	width: 920px;
	}

/* Header (header h1 is to aid in seo */

#header {
	width: 920px;
	height: 90px;
	margin: 0 auto;
	background-image:  url("../images/VSM_Logo.jpg");
	background-repeat:no-repeat;
	background-position:left center;
	}

#header h1 {
	position:absolute;
	top:-9999px;
}
#page {
	width: 920px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#content {
	width: 700px;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #818286;
	float: right;
}

#content1 {
	width: 700px;
}
#contactright {
	width: 260px;
	float: right;
}
#contactleft {
	width: 400px;
	float: left;
}
.post {
	padding-left: 25px;
}

.post .title {
	margin-bottom: 20px;
	padding: 8px 0 0 5px;
}

.post h1 {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}

.post h2 {
	height: 32px;
	padding: 8px 0 0 15px;
	font-size: 18px;
	color: #DADADA;
}

.post .entry {
	padding: 15px 0px;
	font-size: 100%;
}
.post .form {
	padding: 0px 0px;
	font-size: 100%;
}
.post .li {
	padding: 0 15px;
	font-size: 16px;
}
.post .exhibit {
	padding: 0 5px;
}
.post .meta {
	padding: 0px 0px;
	text-transform: none;
	text-align: left;
	font-size: 12px;
	color: #333333;
	line-height: normal;
}


.post .link {
	padding: 0px 0px;
	text-transform: none;
	text-align: left;
	font-size: 10px;
	color: #aaaaa9;
	line-height: normal;
}
.post .client {
	text-transform: none;
	text-align: left;
	font-size: 12px;
	color: #333333;
	line-height: normal;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
}

#sidebar {
	float: left;
	width: 210px;
	padding-top: 25px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
.centre {
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#sidebar1 {
	float: left;
	width: 105px;
	padding: 25px 0 0 0;
}
/* footer */

#footer {
	width: 920px;
	margin:0 auto;
	border-top: thin solid #818286;
	border-right: thin #818286;
	border-bottom: thin #818286;
	border-left: thin #818286;
}
#footer p {
	width: 920px;
	margin: 0 auto;
	text-align: right;
	font-size: small;
	color: #818286;
}

#footer a {
	text-decoration: underline;
	color: #818286;
}

#footer a:hover {
	text-decoration: underline;
	color: #404042;
}

/* Footer > Legal */

#legal {
	font-family: Arial, Helvetica, sans-serif;
}

/* Footer > Links */

#links {
	color: #818286;
	font-family: Arial, Helvetica, sans-serif;
}
/* form*/
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  min-width: 400px;
  max-width: 400px;
  width: 400px; 
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
	padding: 0px;
	margin: 0;
	border: 1px solid #818286;
}

form fieldset legend {
	font-size:1em;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
.sidecentre {
	text-align: center;
}


textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} 

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

