/*
Theme Name: Setfive-New
Theme URI: http://setfive.com/
Description: New theme for our new sexy site.
Author: Setfive Consulting LLC
Tags: Setfive Consulting, LLLC
*/

/**
 * 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, 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;
  font-size: 100%;
  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 #ccc; margin: 1em 0; padding: 0; }


/**
 * 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 */

/* 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.
 */

/* 1) Always force a scrollbar in non-IE 
   2) Remove iOS text size adjust without disabling user zoom: www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
html { overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
  


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: 0; }

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%; }
b, 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;
}

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* 1) Make inputs and buttons play nice in IE: www.viget.com/inspire/styling-the-button-element-in-internet-explorer/
   2) WebKit browsers add a 2px margin outside the chrome of form elements. 
      Firefox adds a 1px margin above and below textareas 
   3) Set font-size to match <body>'s, and font-family to sans-serif 
   4) Align to baseline */
button, input, select, textarea { width: auto; overflow: visible; margin: 0; font-size: 100%; font-family: sans-serif; vertical-align: baseline; }

/* 1) Remove default scrollbar in IE: www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/
   2) Align to text-top */
textarea { overflow: auto; vertical-align:text-top; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Remove extra padding and inner border in Firefox */
input::-moz-focus-inner,
button::-moz-focus-inner { border: 0; padding: 0; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0 0 5px red; -webkit-box-shadow: 0 0 5px red; box-shadow: 0 0 5px red; }
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }

/* 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;  */
}

/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection { background: #fe57a1; color:#fff; text-shadow: none; }
::selection { background:#fe57a1; color:#fff; text-shadow: none; }
a:link { -webkit-tap-highlight-color: #FF5E99; } /* j.mp/webkit-tap-highlight-color */


/**
 * Primary styles
 *
 * Author: 
 */

body {
    background-color: #10181F;
    min-width: 1280px;
}    

/*
  Variable Grid System.
  Learn more ~ http://www.spry-soft.com/grids/
  Based on 960 Grid System - http://960.gs/

  Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
  min-width: 960px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display:inline;
  float: left;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}



.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
  position:relative;
}


/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
  margin-left: 0;
}

.omega {
  margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container .grid_1 {
  width:60px;
}

.container .grid_2 {
  width:140px;
}

.container .grid_3 {
  width:220px;
}

.container .grid_4 {
  width:300px;
}

.container .grid_5 {
  width:380px;
}

.container .grid_6 {
  width:460px;
}

.container .grid_7 {
  width:540px;
}

.container .grid_8 {
  width:620px;
}

.container .grid_9 {
  width:700px;
}

.container .grid_10 {
  width:780px;
}

.container .grid_11 {
  width:860px;
}

.container .grid_12 {
  width:940px;
}




/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container .prefix_1 {
  padding-left:80px;
}

.container .prefix_2 {
  padding-left:160px;
}

.container .prefix_3 {
  padding-left:240px;
}

.container .prefix_4 {
  padding-left:320px;
}

.container .prefix_5 {
  padding-left:400px;
}

.container .prefix_6 {
  padding-left:480px;
}

.container .prefix_7 {
  padding-left:560px;
}

.container .prefix_8 {
  padding-left:640px;
}

.container .prefix_9 {
  padding-left:720px;
}

.container .prefix_10 {
  padding-left:800px;
}

.container .prefix_11 {
  padding-left:880px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container .suffix_1 {
  padding-right:80px;
}

.container .suffix_2 {
  padding-right:160px;
}

.container .suffix_3 {
  padding-right:240px;
}

.container .suffix_4 {
  padding-right:320px;
}

.container .suffix_5 {
  padding-right:400px;
}

.container .suffix_6 {
  padding-right:480px;
}

.container .suffix_7 {
  padding-right:560px;
}

.container .suffix_8 {
  padding-right:640px;
}

.container .suffix_9 {
  padding-right:720px;
}

.container .suffix_10 {
  padding-right:800px;
}

.container .suffix_11 {
  padding-right:880px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container .push_1 {
  left:80px;
}

.container .push_2 {
  left:160px;
}

.container .push_3 {
  left:240px;
}

.container .push_4 {
  left:320px;
}

.container .push_5 {
  left:400px;
}

.container .push_6 {
  left:480px;
}

.container .push_7 {
  left:560px;
}

.container .push_8 {
  left:640px;
}

.container .push_9 {
  left:720px;
}

.container .push_10 {
  left:800px;
}

.container .push_11 {
  left:880px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container .pull_1 {
  left:-80px;
}

.container .pull_2 {
  left:-160px;
}

.container .pull_3 {
  left:-240px;
}

.container .pull_4 {
  left:-320px;
}

.container .pull_5 {
  left:-400px;
}

.container .pull_6 {
  left:-480px;
}

.container .pull_7 {
  left:-560px;
}

.container .pull_8 {
  left:-640px;
}

.container .pull_9 {
  left:-720px;
}

.container .pull_10 {
  left:-800px;
}

.container .pull_11 {
  left:-880px;
}


/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}


abbr{
    cursor: help;
}
body {
    margin: 0 auto;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 16px;
    color:#FFFFFF;
    background-color: #10181F;
}

#header {
    height: 110px;
    padding-top:28px;
    border-bottom:thin dotted #9fa6a8;
}
#footer {
    height: 40px;
    margin-top: 40px;
    padding-top:20px;
    border-top:thin dashed #9fa6a8;
        margin-left: auto;
        margin-right: auto;
}

h1 {
    line-height: 40px;
    color: #FFF000;
    font-size: 32px;
    font-weight: 100;
    letter-spacing: 2px;
    /* border-bottom:thin solid #83cbff; */
}

.topnav {
    float: right;
    padding-top: 60px;
    font-size: 14px;
    line-height: 18px !important;
    letter-spacing: 1px;
    text-align:right;
    font-weight:bold;
    color:#FFFFFF;
    text-decoration:none;
}

.topnav a {
    color: #FFFFFF;
    text-decoration: inherit;
    padding: 5px 8px;
}

a {
    color: #fff000;
    text-decoration: none;
}
.title_header_link{
    color: #fff000 !important;

}

a:hover{
        color: red;
}

.title_link_sub{
  font-size: 14px;
  color: #FFFFFF !important;

}


.topnav .selected {
    background-color:#FFFFFF;
    border:1px solid #666666;
    color:#000000;
}


h2 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size:30px;
    font-weight:200;
    border-bottom:thick solid #83cbff;
}
h3 {
    color:#83cbff;
    font-size: 18px;
}
h4 {
    color: #fff000;
    text-transform:uppercase;
}
.maincontent {
    width: 690px;
    float:left;
    min-height: 410px;
}
.sidebar {
    width: 270px;
    padding-right: 40px;
    float:left;
}
.sidebar_home {
    width: 270px;
    padding-left: 40px;
    float:left;
}
.bottom_box{
  padding-top:10px !important;
}

#clientList {
    list-style:none !important;
    overflow:auto;
}
#clientList li {
    float:left !important;
    padding:5px !important;
}
a img{
  border: none;
}

.features li {
    padding-bottom: 5px;    
}

p.no-padding {
    margin: 0px;
}

p.header, h4.header {
    margin-bottom: 3px;   
}

.logo img {
    border: none;   
}

.error, .alert, .notice, .success, .info {padding:0.8em;margin-bottom:1em;border:2px solid #ddd;}
.error, .alert {background:#fbe3e4;color:#8a1f11;border-color:#fbc2c4;}
.notice {background:#fff6bf;color:#514721;border-color:#ffd324;}
.success {background:#e6efc2;color:#264409;border-color:#c6d880;}
.info {background:#d5edf8;color:#205791;border-color:#92cae4;}
.error a, .alert a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}
.info a {color:#205791;}
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
.hidden {display:none;}
.quiet {color:#666;}
.loud {color:#000;}
.highlight {background:#ff0;}

.centered {
    text-align: center;
}

.big {
    font-size: 18px;   
}

.four404 {
    margin-top: 40px;   
}

#main {
    margin-top: 40px;
    min-height: 800px;   
    padding-bottom: 30px;
}

.footer {
    border-top: thin dotted #9FA6A8;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    min-height: 100px;
}

ul.listless {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

ul.listless * ul {
    list-style-type: none;
}

ul.listless li {
    padding-bottom: 2px;   
}

.footer .right {
    float: right;   
}

.sep-body {
    padding-top: 30px;
    padding-bottom: 30px;
}    

.blogroll {
    padding-top: 20px;   
}

.blogroll h3 {
    padding-bottom: 2px;   
}

.blogroll .listless {
    padding-bottom: 15px;   
}

.blogroll p {
    line-height: 18px;   
}

ul.inline li {
    display: inline;   
}

.home-middle {
  text-align: center;
  padding-top: 80px;
  font-size: 28px;
}

.home-middle h3 a {
  color: #83CBFF;
}

.home-middle h3 {
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
}

.blue-banner {
  color: #83CBFF;
}

.home-blog {
  padding-top: 200px;
}

h1.title {
  border-bottom: thin solid #83CBFF;
  padding-bottom: 12px;
  text-transform: lowercase;
}

.main-body {
  margin-top: 20px;
}

.box {
  
}

p {
  padding-bottom: 20px;
  line-height: 18px;
}

body {
  font-family: 'Nunito', arial, serif;
}

h1, h2, h3 {
  font-family: 'Molengo', arial, serif;
}

.sidebar {
  font-size: 16px;
  margin-left: 5px !important;
}

.sidebar li {
  margin-bottom: 10px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px dotted #fff;
  list-style-image: url('arrow_state_grey_right.png') !important;
}

#no-bullet li {
  list-style-image: none !important;
}

.sep {
  padding-top: 10px;
}

.big-sep {
  padding-top: 20px;
}

.huge-sep {
    padding-top: 40px;   
}

.form tr td {
  padding-top: 5px;
  vertical-align: middle;
}

.form input[type='text'], .form textarea {
  padding: 5px;
  margin: 3px;
  font-size: 16px;
  width: 250px;
}

.form textarea {
  width: 350px;
  height: 100px;
}

.form input[type='text']:focus, .form textarea:focus {
  -webkit-box-shadow: 0px 0px 10px #999999;
  -moz-box-shadow: 0px 0px 10px #999999;
  box-shadow: 0px 0px 10px #999999;
}

.form input[type='submit'] {
  font-size: 16px;
  padding: 5px;
}

.current {
    color: #83CBFF;  
}

.last {
    border-bottom: none !important;   
}

.client-header {
    text-align: center;
    font-size: 14px !important;   
}

ul.padded li {
    padding-bottom: 10px !important;   
}

.screenshot-table {
    text-align: center;
    width: 420px;
    margin: auto;   
}

.screenshot-table td {
    padding: 10px;
}

.screenshot-table td img {
    border: 1px solid #9FA6A8;
    padding: 5px;
}

/**
 * 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; }
.ir br { display: none; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */

/* 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 in most situations.
   nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{}
    #cboxContent{margin-top:20px;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{background:#fff; border:5px solid #000;}
        #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
        #cboxPrevious.hover{background-position:bottom left;}
        #cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
        #cboxNext.hover{background-position:bottom right;}
        #cboxLoadingOverlay{background:#000;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
        #cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(images/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
        #cboxClose.hover{background-position:bottom center;}

/**
 * Placeholder media queries for responsive design. Modify as design requires.
 * These follow after, and will override, the primary ('mobile first') styles
 */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}



/**
 * 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; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

.widgettitle{
  border-bottom: none !important;
  margin-bottom: 0px;
}

#sidebar ul{
  list-style: none;
  padding-left: 0px;
}

abbr{
  cursor: help;
}

.maincontent {
  width: 690px;
  float:left;
        height: 100%;
}

#sidebar {
  width: 250px;
  padding-left: 20px;
  float:left;
}
.sidebar_home {
  width: 270px;
  padding-left: 40px;
  float:left;
}

.box1 {
  width:200px; padding-right:20px; border-right:thin dashed #9fa6a8; border-bottom:thin dashed #9fa6a8; height:180px; float:left;
}
.box2 {
  width:200px; padding-left:20px; padding-right:20px; border-right:thin dashed #9fa6a8; border-bottom:thin dashed #9fa6a8; height:180px; float:left;
}
.box3 {
  width:200px; padding-left:20px; border-bottom:thin dashed #9fa6a8; height:180px; float:left;
}
.box4 {
  width:200px; padding-right:20px; border-right:thin dashed #9fa6a8; height:180px; float:left;
}
.box5 {
  width:200px; padding-left:20px; padding-right:20px; border-right:thin dashed #9fa6a8; height:180px; float:left;
}
.box6 {
  width:200px; padding-left:20px; height:180px; float:left;
}


h3 {
  padding-bottom: 10px;
}

small {
  font-size: 10px;
}

.entry {
  padding-top: 10px;
}

.widgettitle {
  padding-top: 15px;
  padding-bottom: 15px;
}

ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navigation .alignleft {
  float: left; 
}

.navigation .alignright {
  float: right;
}

.post {
  clear: both;
  padding-top: 20px;
}

#twtr-widget-1 {
  padding-top: 30px;
}

input[type='text'], textarea, input[type='password'], input[type='url'], input[type='email'] {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

input[type='text']:focus, textarea:focus, input[type='password']:focus, input[type='url']:focus, input[type='email']:focus {
  -moz-box-shadow: 0 0 0 2px #73BDFA, 0 0 2px 0 rgba(115, 189, 250, 0.7);
  -webkit-box-shadow: 0 0 0 2px #73BDFA, 0 0 2px 0 rgba(115, 189, 250, 0.7);
  box-shadow: 0 0 0 2px #73BDFA, 0 0 2px 0 rgba(115, 189, 250, 0.7);
  border: 1px solid #ddd;
}

select {
    font-size: 14px;
    padding: 3px;   
    border: 1px solid #ddd;
}

select option {
    margin: 3px;   
}

input[type='submit'], button, input[type='reset'] { 
  display:inline-block;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  -moz-transition: -moz-box-shadow 0.25s ease-in-out;
  -o-transition: -o-box-shadow 0.25s ease-in-out;
  font-size: 14px;
  font-weight: bold;
  padding: 8px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  background: -moz-linear-gradient(center top , #EDEDED, #C4C4C4) repeat scroll 0 0 transparent;
  border: 1px solid #B6B6B6;
  color: #4F4F4F;
  cursor: pointer;
  cursor: hand;
}

input[type='submit']:hover, button:hover, input[type='reset']:hover {
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255,255,255,0.8) inset; 
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255,255,255,0.8) inset;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255,255,255,0.8) inset;  
}


.inputInvalid {
    background-image: url("../images/cross.png");
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

.inputValid {
    background-image: url("../images/check.png");
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

label, legend {
  font-family: 'Droid Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#s {
  margin-bottom: 10px;
}

#commentform textarea {
  width: 300px;
  height: 100px;
}

#commentform {
  padding-top: 20px;
}

#commentform input[type='submit'] {
  margin-top: 10px;
}

#commentform input[type='text'] {
  width: 250px;
}
