/*
Theme Name: MZArchitect
Author: Dmitry Tokmakov & Jeffrey Nolte for Moxie Media Group Inc.
Author URI: http://getmoxied.net
Description: Theme developed 09.2011 for MZArchitect
Version: 1.0
*/

/* html5doctor.com Reset Stylesheet \\v1.6.1 \\ Last Updated: 2010-09-17 \\ http://richclarkdesign.com \\ @rich_clark */
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,
b, 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;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display:block; }
nav ul { list-style:none; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
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; }
/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
input, select { vertical-align:middle; }

/*
 *
 * Base Typography 
 *
 */
body { font:13px/1.231 sans-serif; *font-size:small; }
select, input, textarea, button { font:99% sans-serif; }
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/*
 *
 * Base Styles 
 *
 */
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,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }
/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }
/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 
small { font-size: 85%; }
strong, th { font-weight: bold; }
td, td img { vertical-align: top; } 
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }
pre { 
  padding: 15px; 
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */
/* 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], 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: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 
/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 
/* 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;}

/*
 *
 * Nonsemantic Base Styles 
 *
 */
/* 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 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }
/* 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; visibility: hidden;	
} 
.clearfix:after { 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, iPhone 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; } */
}

/*
 *
 * Base Print Styles, inline to save the HTTP request
 *
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  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; }
}

/*
 *
 * Structure
 *
 */
#page {
	display: block;
}
#primary {
	float: left;
	margin: 0 -240px 0 0;
	width: 100%;
}
#content {
	margin: 0 280px 0 0;
}
#main .widget-area {
	float: right;
	overflow: hidden;
	width: 220px;
}
#colophon {
	clear: both;
	display: block;
	width: 100%;
}

/* Increase the size of the content area for templates without sidebars */
.full-width #content,
.image-attachment #content,
.error404 #content {
	margin: 0;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*
 *
 * Header
 *
 */
#site-title {
	font-size: 2em;
	font-weight: bold;
	margin: .67em 0;
}
#site-description {
	font-size: 1em;
	font-weight: normal;
	margin: 0 0 1em;
}


/*
 *
 * Menu
 *
 */
#access {
	background: #eee;
	display: block;
	float: left;
	margin: 0 auto 1em;
	width: 100%;
}
#access ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#access li {
	float: left;
	position: relative;
}
#access a {
	display: block;
	line-height: 2em;
	padding: 0 1em;
	text-decoration: none;
}
#access ul ul {
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	position: absolute;
	top: 2em;
	left: 0;
	z-index: 99999;
}
#access ul ul ul {
	left: 100%;
	top: 0;
}
#access ul ul a {
	background: #333;
	color: #fff;
	line-height: 1em;
	padding: .5em .5em .5em 1em;
	width: 10em;
	height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
	background: #333;
	color: #fff;
}
#access ul ul a:hover {
	background: #000;
}
#access ul li:hover > ul {
	display: block;
}


/*
 *
 * Content
 *
 */
#content nav {
	display: block;
	overflow: hidden;
}
#content nav .nav-previous {
	float: left;
	width: 50%;
}
#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content #nav-above {
	display: none;
}
.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}
#nav-below {
	margin: 1em 0 0;
}
.page-link {
	margin: 0 0 1em;
}


/*
 *
 * Images
 *
 */
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 1em;
}
img.alignright {
	margin-left: 1em;
}
.wp-caption {
	padding: .5em;
	text-align: center;
}
.wp-caption img {
	margin: .25em;
}
.wp-caption .wp-caption-text {
	margin: .5em;
}

/* Forms - Class for labelling required form items */
.required {
	color: #cc0033;
}

/*general*/
ul {list-style-type : none; margin: 0em; padding: 0em;}
body {font-family: Verdana, Helvetica, sans-serif; font-size: 10px; background: #fff; color: #000;}
p {line-height: 1.5em;}
ul li {line-height: 1.5em;}
a {color: #006699;text-decoration: none;}
a:hover {text-decoration: underline;}
h1,h2 {font-size: 1.5em; line-height: 1.75em;text-transform: capitalize; }
h2 {color: #990000;}
h3 {font-size: 1.2em; line-height: 1.5em; margin: 0 0 0.67em 0;text-transform: capitalize;}
#page {width: 808px; min-height: 500px; display: block; clear: both; margin: 20px auto; padding: 20px;}
#page td,#page td{padding-bottom:0.5em;padding-right:1.5em;vertical-align:top;}

/*header*/
body > header {width: 100%;background: #54565a;}
body > header hgroup h1 a {width: 848px; background:url('img/h_bg.png') no-repeat;height: 63px;display: block; text-indent: -9999em;width: 100%;}
body > header hgroup h1{width: 100%; clear: both; margin: 0em;}
body > header hgroup h2 {display: none;}    
nav.main {background: #dadcdf; border-bottom: 1px solid #fff; height: 25px;}
nav.main ul {margin-left: 40px;}
nav.main ul li {float: left;}
nav.main ul li a{float: left; font-size: 10px; color: #666; padding: 0 20px; line-height: 2.5em; text-decoration: none;border-left: 1px solid #fff;}
nav.main ul li.current_page_item > a, nav ul li.current_page_ancestor > a, nav ul li a:hover, nav ul li.hov > a{color: #666; text-decoration: none; background: #fff }
nav ul li a:visited{color: #666; text-decoration: none;}
#menu-main {float: left;}
#menu-main li ul.sub-menu{display:block;left:0px;margin:0;padding:0;position:absolute;top:25px;z-index:99999;visibility:hidden; background: #eaeaea; min-width: 250px; border-top: 1px solid #fff;}
#menu-main li ul.sub-menu li {border-bottom: 1px solid #d5d5d5;width: 100%;}
#menu-main li ul.sub-menu li a {border: none; line-height: 1em;padding: 7px 20px;min-width: 210px;}
#menu-main li ul.sub-menu li a:hover, #menu-main li ul.sub-menu li.current_page_item a {color: #fff;background-color: #666;}
#menu-main li {position: relative;}      

/*default*/
body.page-template-default #page p,body.page-template-default ul{margin-bottom: 2em; clear: both;}
body.page-template-default #page ul{list-style-type : disc; margin-left: 1.3em;}
body.page-template-default #page {margin-top: 2em;}

/*home*/
body.page-template-home-php {padding: 0;margin: 0em; background: #F3F4F6}
body.page-template-home-php #page {padding: 0;margin: 0em;}
#slider_container{background:none repeat scroll 0 0 #FFFFFF;clear:both;float:left;margin:30px 0 0 0;padding:0;width:100%; height: 150px; overflow: hidden;border-bottom: 9px solid #9E9E9E;border-top: 9px solid #9E9E9E;}
#slider_nav_container {width: 848px;clear: both;height: 10px;}
#slider li, #slider li, #slider li img  {float: left;}
#slider_nav {margin: 13px auto; width: auto;}
#slider_nav li{text-align: center; float: left;}
#slider_nav li a{text-indent: -9999px; display: block; background: url('img/sprite.png') -10px 0px no-repeat; width: 7px; height: 7px; text-align: center;margin: 0 5px; float: left;}
#slider_nav li.activeSlide a{background-position: 0px 0px;}
#lists { margin-left: 60px;}
#lists .column { float: left; margin-right: 30px;}
#lists .column ul{min-width: 15em;  max-width:24em; line-height: 1.3em; margin-bottom: 3em; color: #747474;}
#lists .column ul li {line-height: 1.6em; font-weight: bold;}
.page-template-home-php #page{width: 100%;}
#home_links_container {float: left; display: block; min-height: 300px; width: 100%; clear: both; background-color: #f3f4f6; padding:0px;}
#home_links_content {margin: 30px 0 0 60px; min-height: 200px;}
#home_links > li, .col > li {margin: 0 2em 3em 0;}
.col > li > a, .col > li > p {color: #000; line-height: 1.3em; font-size:1em;font-weight: bold;cursor: default;}
.col > li > a:hover {text-decoration: none;}
#home_links li ul.sub-menu li a, .col li ul.sub-menu li a {color: #747474; line-height: 1.3em; font-size:1em;font-weight: bold;}
.col {float: left; margin-right: 4em; padding-bottom: 40px;}





/*picture template*/
body.page-template-gallery-single-php h2, body.page-template-gallery-index-php h2 {margin:0 0 30px 0;}
body.page-template-gallery-index-php .projects li:first-child a, .projects li.current_page_item a{color:#222222;} 
.projects{color:#999999;float:left;margin-right:20px;min-width:220px;}
.projects li{margin:0 0 20px 0;}
.projects li a{color:#999999;text-transform: capitalize;}
a.zoom{float:right;margin:0 0 2px;position:absolute;right:0;top:-16px;text-align: right;}
a.zoom span{background:url("img/sprite.png") no-repeat scroll -21px 0 transparent;display:block;float:right;height:8px;margin:3px 0 0 3px;width:8px;}
#photo_container{float:left;margin:9px 0 0 0;position:relative;width:462px;}
#photo_container .current{display: block;float: left;width: 100%; min-height: 303px; }
#photo_container .loading{background: url('img/loading.gif') 50% 50% no-repeat;}
#photo_container .current img{background: #F3F4F6;}
#photo_container img{float:left;}
#photo_container .thumbs{float:left;width:475px;}
#photo_container .thumbs li a.preview{float:left;margin:13px 13px 0 0;}
#photo_container .thumbs li a.gallery_pic{display: none;}
#photo_container .current a {width: 100%; display: block; height: 100%; float: left; }
#photo_container .current img {margin: 0 auto; display: block;float: none;}

/* fresh and clean photo template from J Nolte */
#slideshow{overflow:hidden; margin-bottom:13px; min-height:303px;}
#nav{width:480px;}
#nav li{width:82px; height:82px; float:left; margin:0 13px 13px 0; opacity:.8;}
#nav li.activeSlide, #nav li:hover{opacity:1;}   

  


/*blog*/
#posts {float: left; width: 560px; margin-right: 20px; font-size: 1em; }
article.post{border-bottom:1px solid #CCCCCC;float:left;margin:0 0 4em;padding:0 0 1em;width:100%;}
body.single article.post{margin: 0em;}
.entry-header {margin: 0 0 1em 0; float: left;width: 100%;}
.entry-title, .entry-title a {font-size: 1em; font-weight: bold; color: #000; margin: 0; width: 100%; float: left;}
.entry-title a {margin: 0em;}
.entry-meta {float: left; width: 100%; clear: both; color: #999999;}
.entry-meta a, .entry-date, .author a {color: #fe6905;}
.entry-summary {float: left; width: 100%; clear: both; margin-bottom: 2.5em; line-height: 1.8em;}
#posts img.thumb {float: left; border: 10px solid #ededed; margin: 0 1em 1em 0;}


#nav-above {width: 100%; float: left; border-bottom: 1px solid #ccc; margin: 0 0 1em 0; padding-bottom: 0.5em;}
#nav-below {width: 100%; float: left; margin: 1em 0 1em 0; padding-top: 0.5em;}
#nav-above .nav-previous, #nav-below .nav-previous {float: left;}
#nav-above .nav-next, #nav-below .nav-next {float: right;}
#nav-above .nav-next a:hover, 
#nav-above .nav-previous a:hover, 
#nav-below .nav-next a:hover, 
#nav-below .nav-previous a:hover {text-decoration: none; background: #fff;}
#nav-above .nav-next a, 
#nav-above .nav-previous a,
#nav-below .nav-next a, 
#nav-below .nav-previous a { padding: 0 0.3em;}

/*
 *
 * Comments
 *
 */
article.comment {
	display: block;
}
#respond input[type=text] {
	float: left;
	margin: 0.5em 1em 1em 0;
	width: 60%;
	float:none!important;display:block;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #aaa;height:2em;margin:0.5em 0 1em 0;text-indent:1em;
}
#respond textarea {
	margin: 0.5em 1em 1em 0;
	float: left;
	width: 80%;
	float:none!important;display:block;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #aaa;margin:0.5em 0 1em 0; padding: 1em;
}
#respond .form-allowed-tags {
	clear: both;
	width: 80%;
}
#respond .form-allowed-tags code {
	display: block;
}

img.avatar {float: left; margin: 0 1em 1em 0;}
h2.author_name {float: left;font-size: 1em; font-weight: bold; color: #000;}
ul.commentlist li {width: 100%; clear: both;padding: 0 0 1.5em 0; margin: 0 0 1.5em;border-bottom: 1px solid #ccc; position: relative;}
.comment_top {width: 100%; float: left;clear: both;}
.comment-meta {float: left; width: 100%;}
.comment_info {float: left;}
#comments-title {float: left;margin: 2em 0;}
.comment-reply-link {position: absolute; right:0; bottom:3px; padding: 0.1em 0em;}
.comment-reply-link:hover {text-decoration: none; background-color: #fff;}
#comments {float: left;}

/*#commentform input {float: left; width: 100%; clear: both;}*/


/*blog aside */
aside.blog-aside {float: right;}
#searchform {
  border: 1px solid #c7c7c7;
  height: 22px;
  margin: 0 0 1.5em;
  width: 200px;
  position: relative;
clear: both;

}
#searchform .screen-reader-text {display: none;}
#searchform input#s:focus {outline: none; }
#searchform ::-webkit-input-placeholder#s{line-height: 2em;}
#searchform :-moz-placeholder#s{line-height: 1.8em;;}
#searchform #s {
  border: medium none;
  color: #ADADAD;
  float: right;
  font-size: 1.3em;
  height: 19px;
  line-height: 1.8em;
  width: 173px;
}
#searchform #searchsubmit{background:url("img/sprite.png") no-repeat scroll -34px 0 transparent;border:medium none;cursor:pointer;height:20px;left:1px;top:1px;position:absolute;text-indent:-9999em;top:1px;width:24px;line-height: 0em;}
h2.widget-title {font-size: 1.2em; color: #000;}
#commentform label{font-weight: bold;}
.comment-notes {margin: 1em 0;}
.form-submit #submit {background-color:#FFFFFF;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#EEE),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#EEE 0%,white 50%);background-image:-moz-linear-gradient(center bottom,#EEE 0%,white 50%);background-image:-o-linear-gradient(top,#EEE 0%,white 50%);background-image:-ms-linear-gradient(top,#EEE 0%,white 50%);border:1px solid #AAAAAA;border-radius:4px 4px 4px 4px;display:block;height:26px;line-height:26px;overflow:hidden;padding:0 8px;position:relative;white-space:nowrap; float: left; margin-top: 1em;}
.form-submit #submit:active {background: none;}
/*input#author,
input#email,
input#url{float:none!important;display:block;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:inset 0 0 10px #ccc;-webkit-box-shadow:inset 0 0 10px #ccc;box-shadow:inset 0 0 10px #ccc;border:1px solid #ccc;height:2em;margin:0.5em 0 1em 0;text-indent:1em;}
*/

/*contact*/
body.page-id-82 .d_title {display: none;}
body.page-id-82 #page h2 {margin-bottom: 1em;}
body.page-id-82 #page ul {list-style-type: none;float: left; margin: 0 0 1em 0;}
body.page-id-82 #page .left ul li{float: left; margin: 0 1em 1em 0;}
body.page-id-82 #page .left h2{color: #000;}
body.page-id-82 #page .left{float: left; width: 44%; margin-right: 5%;  }
body.page-id-82 #page .left ul{width: 100%;}
body.page-id-82 #page .left ul li {width: 40%; float: left;margin-right: 10%;}

body.page-id-82 #page .right{float: left; width: 30%; }
ul.gform_fields li, 
.ginput_container, 
.ginput_container input, 
.ginput_container textarea, 
.gfield_label {color: #000; font-size: 1em; width: 100%; float: left; clear: both;margin: 0em;padding: 0em;}
.ginput_container input{border: 1px solid #999; height: 30px; padding: 0 5px; width: 310px; margin: 0 0 10px 0; font-size: 1.5em; line-height: 2em;}
.ginput_container textarea {width: 310px; padding: 5px;border: 1px solid #999; font-size: 1.5em; height: 140px;}
.gfield label {font-weight: bold;color: #000; margin-bottom: 0.3em; font-size: 1.2em;}
.gfield .gfield_required {margin-left: 0.2em; color: red;}
.gform_footer {width: 32em;}
#gform_submit_button_1{background-color:#FFFFFF;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#EEE),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#EEE 0%,white 50%);background-image:-moz-linear-gradient(center bottom,#EEE 0%,white 50%);background-image:-o-linear-gradient(top,#EEE 0%,white 50%);background-image:-ms-linear-gradient(top,#EEE 0%,white 50%);border:1px solid #AAAAAA;display:block;height:26px;line-height:26px;overflow:hidden;padding:0 8px;position:relative;white-space:nowrap;float:right;margin-top:1em;font-weight:bold;font-size:1.2em;}
#gform_submit_button_1:active {background:none;}
#gform_fields_1 ul.gform_fields li {margin: 0em; padding: 0em;}
.thumbs li {float: left;}
.validation_message {color: red;}
.validation_error {color: red; font-size: 1em;}

/*footer*/
body > footer{background:url("img/f_bg.png") no-repeat scroll left top;border-bottom:3px solid #4d4f53;clear:both;color:#FFFFFF;height:17px;padding:7px 0 0 0px;width:100%; position: fixed; bottom:0; z-index: 9999;left : 0;}
body > footer a {float: left; color: #fff; margin-left: 60px;}
body > footer address {font-style:normal; color: #fff; float: left; margin-left: 5px;}

.left_wrap { float: left;}

.ie7 a.zoom span{display: none;}
.ie7 #searchform #s,
.ie8 #searchform #s,
.ie9 #searchform #s {width: 170px;line-height: 1.5em;}
#slider_nav_container, .menu-main-container, header hgroup {width: 848px; margin: 0 auto; display: block;}
#home_links_content {margin: 30px auto;width: 848px;}
#col3 {margin: 0em;}
ul.col li ul.sub-menu {margin-top: 2px;}
#slider {width: 848px; height: 150px; overflow: hidden; display: block;margin: 0 auto; }
#slider li.jcarousel-item {padding-right: 30px; background: #ccc; float: left;}
.ie7 #slider { position: relative; z-index: 10;}
.ie7 #menu-main {position: relative; z-index: 20;}
.column {width: 45%; margin-right: 5%; float: left;}