/*
  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.4 2009-07-27 | 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,
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; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {
    font:13px/1.231 sans-serif;
    *font-size:small;
}

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
 */


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;
}


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* 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: 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; }


/* 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; }



/*
 * Non-semantic helper classes
 */

/* 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; }


/* Primary Styles
   Author: Rastislav Kober <rastislav.kober@gmail.com>
   Author: Marek Kuziel <marek.kuziel@encode.net.nz>
*/
h1, h2, h3, strong, dt {
    color: #3680B5;
}
body { background-color: white; }
ul { margin-left: 1em; }
blockquote {
    padding: 0 0 20px 0;
}

/* header */
header {
    /*margin-bottom: .25em;*/
    position: relative;
    overflow: hidden;
    background-color: black;
}
header #header-image {
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 0;
    width:: 960px;
}
header,
header #header-image {
    height: 230px;
}
header.big,
header.big #header-image,
header.big #desc {
    height: 350px;
}

header #logo {
    font-family: 'Rock Salt', serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.024em;
    word-spacing: 0.024em;
    line-height: 2em;
    z-index: 10;
    left: 35%;
    opacity: 0.95;
    color: black;
    text-shadow: #444 3px 3px 5px;
    position: absolute;
    top: 5px;
}
header.big #logo {
    opacity: 0.6;
    color: white;
    text-shadow: black 3px 3px 5px;
}
header.big #logo-year {
    opacity: 0.7;
    color: black;
    text-shadow: white 3px 3px 5px;
}
header #logo-year {
    font-family: 'Rock Salt', serif;
    font-size: 80px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    z-index: 5;
    opacity: 0.25;
    color: white;
    text-shadow: black 3px 3px 5px;
    position: absolute;
    left: 75%;
    top: 5px;
}
header #desc {
    width: 260px;
    min-height: 150px;
    line-height: 1.5em;
    font-size: .9em;
    font-style:italic;
    font-family: 'Droid Serif',serif;
    padding: 20px;
    opacity: .8;
    color: white;
    background-color: #111;
    font-weight: 700;
    z-index: 15;
    position: relative;
    display: block;
    border-bottom: 50px solid #000;
}
header.big #desc { height: 267px; }
header #desc a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: "museo-1","museo-2","Georgia","Times New Roman","Times",serif;
    font-size: 1.25em;
    font-style: italic;
    text-shadow: 0 -1px 0 #7BA9CB;
}

header #desc a:hover { color: white; }
header #description {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  padding-top: 1em;
}
header #nav {
	position: absolute;
	z-index: 20;
	background-color: black;
    top: 190px;
    left:300px;
    border-radius: 0px 10px 0px 0px;
    -moz-border-radius: 0px 10px 0px 0px;
    -webkit-border-top-right-radius: 10px;
}
header.big #nav { top: 307px; }

/* header end */

.businesses li {
    list-style-type: none;
    padding: 0;
}
#content {
    padding: 0 0 20px 0;
}
#content ul li {
    line-height: 1.5em;
}

/* Font */
#description, #content h2, #content h3 {
  font-family: 'Droid Serif', serif;
}

#content p {
    line-height: 1.5em;
    padding: .5em 0;
}
#content h1 {
    color: #000;
    font-size: 28px;
    font-style: italic;
    padding: 10px 0 20px 0;
    letter-spacing: 0.05em;
}
#content h1 span a:hover {
    background: url('/media/images/pdf.png') no-repeat;
}
#show-on-map {
    display: block;
    float: right;
    width:85px;
    height:30px;
    margin-right: 20px;
    padding-top: 12px;
    padding-right: 40px;
    background: url('/media/images/maps-icon.png') no-repeat right;
    /*text-align: right;*/
}

#content h1 span a {
    color: gray;
    float:right;
    text-align: right;
    display: block;
    position: relative;
    top: -0.5em;
    left: -0.5em;
    width:60px;
    height:60px;
    background: url('/media/images/pdf_grey.png') no-repeat;
    clear: both;
}
#content h1 a {
    color: #000;
    font-style: italic;
}
#content h2 {
    font-size: 20px;
    padding-bottom: 10px;
    font-style: italic;
    text-shadow: 3px 3px 3px #BBB;
}
#content h3 {
    font-size: 1.5em;
    padding-top: 1em;
    padding-bottom: .5em;
}
#content p {
	font-family: 'Droid Serif', serif;
	font-size: 1.1em;
	font-weight: 400;
	line-height: 1.5em;
	text-align: justify;
	color: #444;
}
#content h1 {
    /*font-size:3em;*/
    /*padding-bottom: .5em;*/
    color: #3680B5;
    text-shadow: 3px 3px 3px #bbb;
    line-height: 1em;
}
#content ul.businesses,
#content ul.categories {
    list-style: none;
}
#content ul.categories li {
    margin-bottom: 10px;
}
#content ul.categories li.subcategory {
	padding-left: 1em;
}
#content ul.categories li.subcategory a {
}
#content ul.businesses li {
	font-size: .95em;
    background-color: #F3F6F6;
    /*margin-top: 10px;*/
    margin-bottom: 20px;
    min-height: 200px;
}
#content ul.businesses li p {
	font-size: .95em;
    padding: 0 10px;
}
#content ul.businesses li a,
#content ul.categories li a {
    line-height: 1.5em;
    text-decoration: none;
    display: block;
    font-weight: bold;
    border-bottom: 1px solid #C7D3D6;
    background-color: #E5EAEB;
    color: #415262;
    padding: 5px;
}
#content ul.businesses li h3 {
    padding-top: 0;
}
#content ul.businesses li h3 a {
    font-size: .8em;
    padding: 5px 10px;
    margin: 0;
}
#content ul.businesses li a.none {
    background-color: #F3F6F6;
    border-bottom: 0;
    padding: 0 10px;
    font-weight: normal;
    text-align: right;
}
#content ul.businesses li a.none:hover {
    border-bottom: 0;
}
#content ul.businesses li dl {
    padding: 0 10px;
}
#content ul.businesses li dd {
    margin-left: 7em;
}
#content ul.businesses li dd a {
    overflow: hidden;
}
#content ul.businesses li dd a {
    background-color: #F3F6F6;
    font-size: .95em;
    text-decoration: none;
    border: 0;
    text-shadow: none;
    padding-left: 0;
}
#content ul.businesses li a:hover,
#content ul.categories li a:hover {
    color: black;
    text-decoration: underline;
}
#content ul.businesses dd a:hover {
    background-color: #F3F6F6;
    border: 0;
}
#content h1.business {
	background-color: #FFF;
    font-size: 1.25em;
	padding: 10px 0;
	line-height: 1.5em;
	font-style: normal;
	text-decoration: none;
}
#content h1.business {
    border-bottom: 1px dotted #000;
}
#content h1.business a:hover {
	text-decoration: underline;

}
#directory-menu {

}

#tab-explore.active a {
    text-shadow: 1px 1px 1px white;

}
#map {
    margin: 10px 0 0 0;
    width: 618px;
	height: 350px;
	border: 1px solid #444444;
}
#map-category {
    margin: 10px 0 0 0;
    width: 618px;
	height: 450px;
	border: 1px solid #444444;
}
#map-explore {
    margin-top: 20px;
    width: 618px;
	height: 450px;
	border: 1px solid #444444;
}

#maps-popup { width: 350px; min-height: 170px; font-size: .9em; }
#maps-popup h2 { font-size: 1.5em; }
#maps-popup h2 a {
    color: #3680B5;
    text-shadow: none;
}
#maps-popup p { padding: 0; }
#maps-popup a.more { float: right; padding-top: .5em; }
#maps-popup img { float: right; clear: both; margin: 0 0 10px 10px; }
footer {
    margin: 0;
    padding: 5px 0;
    background-color: #EFEFEF;
}
footer h3 {
    font-size: 1.25em;
    padding-bottom: 10px;
}
footer ul {
  display: block;
  margin: 0;
  padding: 0;
  text-align: justify;
}
footer .logo {
}
footer .contact {
    float: right;
    padding: 0 15px;
}
#contact-information {
    width: 290px;
    line-height: 1.5em;
    padding-left: 10px;
}
#contact-information a {
	text-decoration: none;
}

/* Same Height Sidebar and Main  */
#container2 {
    /*clear:left;*/
	float:left;
	width: 960px;
	overflow:hidden;
	background:white; /* column 2 background colour */
}
#container1 {
	position:relative;
	float:left;
	width:940px;
	right:640px;
	background:red; /* column 1 background colour */
}
#col1 {
	float:left;
    width:300px;
	position:relative;
	left:640px;
	overflow:hidden;
}
#col2 {
	float:left;
	width:640px;
	position:relative;
	left:659px;
	overflow:hidden;
}
/* End Postion */

#sidebar {
    width:300px;
    background-color: #DFEFC9;
}
#sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#sidebar h2 {
    padding: 15px 20px;
    background-color: #3680B5;
    color: #FFF;
    font-weight: bold;
    font-size: 1.25em;
    border-bottom: 1px dashed #fff;
}
#sidebar ul a {
    color: #303E4A;
    font-weight: 600;
    display: block;
	text-decoration: none;
	font-family: 'Droid Serif', serif;
    padding: 10px 20px;
}
#sidebar ul a:hover, #sidebar ul li.selected {
    background-color: #8BC53E;
    color: #000;
    box-shadow: 0 1px 0 #567A24;
}
#sidebar.business, #container1 {
    background-color: #C7D3D6;
}

#sidebar.business ul li.selected,
#sidebar.business ul a:hover {
    background-color: #E5EAEB;
    box-shadow: 0 1px 0 #C8D2D5;
    text-decoration: underline;
}

footer {
    margin: 0;
    padding: 10px 0;
    background-color: #EFEFEF;
}
footer a.email {
    display: block;
    padding-bottom: 10px;
}
footer ul {
  display: block;
  margin: 0;
  padding: 0;
  text-align: justify;
}
footer ul li {
  display: inline;
  margin: 0 0 0.5em 0;
  padding: 0;
  border-right: 1px solid #ddd;
}
#copy {
    padding-top: 10px;
	text-align: center;
}
#tabs {
    list-style: none;
    margin-left: 0;
    /*margin-bottom: 1em;*/
    padding: .5em 1em .5em .5em;
}
#tabs a {
    color: white;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 1.5em;
    text-decoration: none;
    font-weight: bold;
}
#tabs li {
	float: left;
	margin-left: 1em;
	padding: .5em 1em;
	background-color: #4D4D4D;
	/*border: 1px dotted gray;*/
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
}
#tabs li:hover  {
	background-color: gray;
}
#tabs li.active  {
	background-color: white;
}
#tabs li.active a {
	color: #3680B5;
}

#featured-content h2 {
    color: #36646F;
    font-size: 26px;
    margin: 20px 0;
    text-shadow: 1px 1px #FFFFFF;
}

#featured-content p {
    color: #36646F;
    font-size: 16px;
    line-height: 22px;
    text-shadow: 1px 1px #FFFFFF;
}
ul#pages-menu {
    padding-bottom: 1px;
}
#page-info {
    padding: 20px;
}

#content strong { font-style: italic; font-size: 1em; }
#content em { font-weight: bold; }
.beta { margin-left: 0; margin-right: 0; }

#contact {
    overflow: hidden;
    width: 578px;
	margin-top: 20px;
	padding: 20px;
	background: #C7D3D6;
	border: 1px solid #AABBC0;
}
#contact-form label {
	float: left;
	clear: left;
	margin: 5px 20px 0 0;
	width: 20%;
	text-align: right;
	font-size: 16px;
	color: #303E4A;
	font-weight: bold;
}

#contact input {
	width: 68%; padding: .25em .5em; margin: 0 0 1em 0;
	border: 1px solid #AABBC0;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	-moz-box-shadow: 0px 1px 0px #f2f2f2;-webkit-box-shadow: 0px 1px 0px #f2f2f2;
	font-size: 16px; color: #444444;
	/*text-shadow: 0px -1px 0px #334f71; */
	background: #BAC6CA;
	background: -moz-linear-gradient(top, #BAC6CA 0%,#E5EAEB 20%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#BAC6CA), color-stop(20%,#E5EAEB));
}
#contact input:-webkit-input-placeholder  {
    color: #a1b2c3; text-shadow: 0px -1px 0px #38506b;
}
#contact input:-moz-placeholder {
	color: #a1b2c3; text-shadow: 0px -1px 0px #38506b;
}
#contact textarea {
	width: 68%; height: 170px; padding: .25em .5em; margin: 0 0 20px 0;
	border: 1px solid #AABBC0;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	-moz-box-shadow: 0px 1px 0px #f2f2f2;-webkit-box-shadow: 0px 1px 0px #f2f2f2;
	font-size: 16px;
	background: #E5EAEB;
	background: -moz-linear-gradient(top, #BAC6CA 0%,#E5EAEB 4%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#BAC6CA), color-stop(4%,#E5EAEB));
}
#contact textarea::-webkit-input-placeholder  {
    color: #a1b2c3; text-shadow: 0px -1px 0px #38506b;
}
#contact textarea:-moz-placeholder {
	color: #a1b2c3; text-shadow: 0px -1px 0px #38506b;
}
#contact h4 {
	color: #303E4A;
	font-size: 1.2em;
	background: #C7D3D6;
	text-align: center; margin: 0 0 1em 0;
}
#contact input:focus {
	background: #F3F6F6;
	background: -moz-linear-gradient(top, #BAC6CA 0%,#F3F6F6 20%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#BAC6CA), color-stop(20%,#F3F6F6));
}
#contact textarea:focus {
	background: #F3F6F6;
	background: -moz-linear-gradient(top, #BAC6CA 0%,#F3F6F6 3%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#BAC6CA), color-stop(3%,#F3F6F6));
}
#contact input[type=submit] {
    overflow: hidden;
    float: right;
	width: 185px;
    height: 52px;
    padding: 10px 15px;
    margin: 75px 5% 0 0;
	-moz-box-shadow: 0px 0px 5px #999;-webkit-box-shadow: 0px 0px 5px #999;
	border: 1px solid #556f8c;
	background: #AABBC0;
	background: -moz-linear-gradient(top, #8DA4AA 0%, #AABBC0 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8DA4AA), color-stop(100%,#AABBC0)); /* webkit */
	cursor: pointer;
	color: #F3F6F6;
	font-weight: bold;
}
#contact input[type=submit]:hover {
	color: #FFFFFF;
	background: #8DA4AA;
	background: -moz-linear-gradient(top, #AABBC0 0%, #8DA4AA 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#AABBC0), color-stop(100%,#8DA4AA)); /* webkit */
}
dl { line-height: 2em; margin: 5px 0;}
dt { float: left;; }
dt, dd { font-weight: bold; }
dd { margin-left: 9em; }

#recaptcha_widget_div {
    position: relative;
    float: left;
    margin-left: 25px;
}

.shadow {
    -moz-box-shadow: 0 1px 9px #888888;
}

/* Rounded */
#content, #container {
	background: white;
    overflow: hidden;
}
#container {
    font-family: 'Droid Serif', serif;
    padding-bottom: 0;
 	margin-bottom: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 10px;
}

#gmap-popup {
	width: 300px;
	/*height: 200px;*/
}
#gmap-popup h5 {
	font-size: 1.5em;
	color: #365789;
	margin-bottom: 10px;
}
#gmap-popup img {
	float: left;
	clear: both;
	margin-right: 10px;
}
nav {
    font-weight: bold;
    text-decoration: none;
    padding: 20px 0;
}
nav a {
}
nav a:hover {
}

.right {
    text-align: right;
}

.hide {
    display: none;
}
.over {
    overflow: hidden;
}


#breadcrumbs {
    /*clear: both;*/
    float: left;
    width: 490px;
    height: 1.5em;
    margin: 10px 0;
}
#breadcrumbs.map {
    width: 620px;
    border-top: 1px dotted #607890;
    padding-top: 5px;
}

#breadcrumbs li {
    float: left;
    text-transform: capitalize;
    list-style: none;
    color: #607890;
}
#breadcrumbs span {
    padding: 0 3px 0 5px;
}
#errors strong {
    color: red;
}
#errors {
    margin: 20px 20px 0 0;
    padding: 10px 0 10px 10px;
    color: red;
    border: 1px solid red;
    border-radius: 3px;
    -moz-border-radius: 3px;
}

#message {
    margin: 20px 20px 0 0;
    padding: 10px 0 10px 10px;
    color: green;
    border: 1px solid green;
    border-radius: 3px;
    -moz-border-radius: 3px;
}

.promo-big { margin-top: 20px; }

/*
 * 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; } */
}

/*
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
 */
@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; }

    /* Display None */
    header, #explore, #directory, #sidebar, header img, #logo, #logo-year, #contact-information, #contact, #show-on-map, nav
    { background: none; display: none; width: 0; height: 0; }
    #container {
        -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
        -moz-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
        ox-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #header-print {
        display: block;
        padding: 1em 0;
        margin: 1em 0;
        border-bottom: 1px solid gray;
    }
    .noprint { display:none; }
    .div-break { display: block; page-break-inside: avoid; }
}


