#dialog-bye, #dialog-warning, #scrollToTop { display: none; }
/* 
  Note: Primary styles begin near line 226.
  Using:
  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; } /* 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 
 */


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: 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 
 */
::-moz-selection{ background: #3B4A98; color:#fff; text-shadow: none; }
::selection { background:#3B4A98; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #3B4A98; } 

/* 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 */
body {
	background-color: #FFF;
	color: #58595b;
	font-family: Arial;
}

h1 {
	color: #000;
	font-size: 182%;
}


a:link, 
a:visited {
	color: #231f20;
	text-decoration: none;
}


.ie6 a, .ie7 a, .ie8 a {
	border-bottom: 1px solid #FFF;
	display: inline-block;
}

.ie6 a#logo, 
.ie7 a#logo, 
.ie6 a#logo:hover, 
.ie7 a#logo:hover { border-bottom: 1px solid #FFF; }

a:hover, 
a:active, 
a:focus, 
.ie6 a:hover, .ie6  a:active, .ie6  a:focus, 
.ie7 a:hover, .ie7  a:active, .ie7  a:focus, 
.ie8 a:hover, .ie8  a:active, .ie8  a:focus  { color: #000; border-bottom: 1px dotted #1B40DD; }

a#logo:hover, 
a.img:hover, 
a.img:active, 
a.img:focus, 
.ie6 a.img:hover, .ie6  a.img:active, .ie6  a.img:focus, 
.ie7 a.img:hover, .ie7  a.img:active, .ie7  a.img:focus, 
.ie8 a.img:hover, .ie8  a.img:active, .ie8  a.img:focus  { border-width: 0; }

a.analyze:hover, 
a.analyze:active, 
a.analyze:focus, 
.ie6 a.analyze:hover, .ie6  a.analyze:active, .ie6  a.analyze:focus, 
.ie7 a.analyze:hover, .ie7  a.analyze:active, .ie7  a.analyze:focus, 
.ie8 a.analyze:hover, .ie8  a.analyze:active, .ie8  a.analyze:focus  { color: #000; border-bottom-color: #b5b317; }

a.map:hover, 
a.map:active, 
a.map:focus, 
.ie6 a.map:hover, .ie6  a.map:active, .ie6  a.map:focus, 
.ie7 a.map:hover, .ie7  a.map:active, .ie7  a.map:focus, 
.ie8 a.map:hover, .ie8  a.map:active, .ie8  a.map:focus  { color: #000; border-bottom-color: #cb2128; }

a.provider:hover, 
a.provider:active, 
a.provider:focus, 
.ie6 a.provider:hover, .ie6 a.provider:active, .ie6 a.provider:focus, 
.ie7 a.provider:hover, .ie7 a.provider:active, .ie7 a.provider:focus, 
.ie8 a.provider:hover, .ie8 a.provider:active, .ie8 a.provider:focus  { color: #000; border-bottom-color: #49ae00; }

a.blog:hover, 
a.blog:active, 
a.blog:focus, 
.ie6 a.blog:hover, .ie6  a.blog:active, .ie6  a.blog:focus, 
.ie7 a.blog:hover, .ie7  a.blog:active, .ie7  a.blog:focus, 
.ie8 a.blog:hover, .ie8  a.blog:active, .ie8  a.blog:focus  { color: #000; border-bottom-color: #ff5400; }

a.engage:hover, 
a.engage:active, 
a.engage:focus, 
.ie6 a.engage:hover, .ie6  a.engage:active, .ie6  a.engage:focus, 
.ie7 a.engage:hover, .ie7  a.engage:active, .ie7  a.engage:focus, 
.ie8 a.engage:hover, .ie8  a.engage:active, .ie8  a.engage:focus  { color: #000; border-bottom-color: #455916; }

a.twitter:hover, 
a.twitter:active, 
a.twitter:focus, 
.ie6 a.twitter:hover, .ie6  a.twitter:active, .ie6  a.twitter:focus, 
.ie7 a.twitter:hover, .ie7  a.twitter:active, .ie7  a.twitter:focus, 
.ie8 a.twitter:hover, .ie8  a.twitter:active, .ie8  a.twitter:focus  { color: #000; border-bottom-color: #ff5400; }

a.updates:hover, 
a.updates:active, 
a.updates:focus, 
.ie6 a.updates:hover, .ie6  a.updates:active, .ie6  a.updates:focus, 
.ie7 a.updates:hover, .ie7  a.updates:active, .ie7  a.updates:focus, 
.ie8 a.updates:hover, .ie8  a.updates:active, .ie8  a.updates:focus  { color: #000; border-bottom-color: #374ea2; }

p { margin: 1em 0; }

/* footer */
footer {
	clear: both;
	text-align: center;
	margin: 0 0 30px;
}

footer .exec-time {
	border-top: 1px solid #000;
	margin-top: 1.75em;
	padding-top: 1.4em;
}

footer ul { margin: 0; }

footer li {
	color: #231f20;
	display: inline;
}

footer li small {
	font-size: 77%;
	line-height: 1.6;
	vertical-align: top;
}

.ie6 footer li small, 
.ie7 footer li small { vertical-align: middle; }

.nav { margin-bottom: 1ex; }

.nav li { color: #1B40DD; }

.nav a { font-weight: bold; }

footer li.border-right {
	border-right: 1px solid #a7a9ac;
	margin-right: 1ex;
	padding-right: 1em;
}

.ie6 footer li.border-right, 
.ie7 footer li.border-right {
	margin-right: 0.9em;
	padding-right: 1ex;			
}

.basemap-links { margin: 1em 0; }
/* end footer */

.fLeft { float: left; }
.fRight { float: right; }

ul, li { list-style-type: none; }

#logoline {
	margin: 1em 40px;
	position: relative;
}

.webkit #logoline { margin: 1em 25px; }

#logoline img {
	position: absolute;
	top: 0;
}

.webkit #logoline img {
	position: relative;
	top: -1.2em;
}

#logoline .fLeft { left: -40px; }

.webkit #logoline .fLeft { left: -25px; }

.ie6 #logoline .fLeft { left: -140px; }

#logoline .fRight { right: -40px; }

.webkit #logoline .fRight { right: -25px; }

.ie6 #logoline .fRight { right: 0; }

#logoline strong { white-space: nowrap; }

div.olMap {
	cursor: default;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 0;
}

.container_12 .olControlNoSelect {
	bottom: 0;
	-moz-user-select: none;
}

#tinyURLDisplay input {
	border: 0 none;
	font-weight: bold;
	outline: none;
	vertical-align: baseline;
}

/* 960 */
body {
	min-width:960px
}
.container_12 {
	margin-left:auto;
	margin-right:auto;
	width:960px
}
.grid_1,.grid_2,.grid_3,.grid_4,.grid_5,.grid_6,.grid_7,.grid_8,.grid_9,.grid_10,.grid_11,.grid_12,.grid_13,.grid_14,.grid_15,.grid_16 {

    display:inline;
    float:left;
    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,.push_13,.pull_13,.push_14,.pull_14,.push_15,.pull_15 {
	position:relative
}
.container_12 .grid_3 { width:220px } 

.container_12 .grid_6 { width:460px } 

.container_12 .grid_9 { width:700px } 

.container_12 .grid_12 { width:940px } 

.alpha { margin-left:0 } 

.omega { margin-right:0 }

.container_12 .grid_1 { width:60px } 

.container_12 .grid_2 { width:140px } 

.container_12 .grid_4 { width:300px } 

.container_12 .grid_5 { width:380px } 

.container_12 .grid_7 { width:540px } 

.container_12 .grid_8 { width:620px } 

.container_12 .grid_10 { width:780px } 

.container_12 .grid_11 { width:860px } 

.container_12 .prefix_3 { padding-left:240px } 

.container_12 .prefix_6 { padding-left:480px } 

.container_12 .prefix_9 { padding-left:720px } 

.container_12 .prefix_1 { padding-left:80px } 

.container_12 .prefix_2 { padding-left:160px } 

.container_12 .prefix_4 { padding-left:320px } 

.container_12 .prefix_5 { padding-left:400px } 

.container_12 .prefix_7 { padding-left:560px } 

.container_12 .prefix_8 { padding-left:640px } 

.container_12 .prefix_10 { padding-left:800px } 

.container_12 .prefix_11 { padding-left:880px } 

.container_12 .suffix_3 { padding-right:240px } 

.container_12 .suffix_6 { padding-right:480px } 

.container_12 .suffix_9 { padding-right:720px } 

.container_12 .suffix_1 { padding-right:80px } 

.container_12 .suffix_2 { padding-right:160px } 

.container_12 .suffix_4 { padding-right:320px } 

.container_12 .suffix_5 { padding-right:400px } 

.container_12 .suffix_7 { padding-right:560px } 

.container_12 .suffix_8 { padding-right:640px } 

.container_12 .suffix_10 { padding-right:800px } 

.container_12 .suffix_11 { padding-right:880px } 

.container_12 .push_3 { left:240px } 

.container_12 .push_6 { left:480px } 

.container_12 .push_9 { left:720px } 

.container_12 .push_1 { left:80px } 

.container_12 .push_2 { left:160px } 

.container_12 .push_4 { left:320px } 

.container_12 .push_5 { left:400px } 

.container_12 .push_7 { left:560px } 

.container_12 .push_8 { left:640px } 

.container_12 .push_10 { left:800px } 

.container_12 .push_11 { left:880px } 

.container_12 .pull_3 { left:-240px } 

.container_12 .pull_6 { left:-480px } 

.container_12 .pull_9 { left:-720px } 

.container_12 .pull_1 { left:-80px } 

.container_12 .pull_2 { left:-160px } 

.container_12 .pull_4 { left:-320px } 

.container_12 .pull_5 { left:-400px } 

.container_12 .pull_7 { left:-560px } 

.container_12 .pull_8 { left:-640px } 

.container_12 .pull_10 { left:-800px } 

.container_12 .pull_11 { left:-880px } 

.clear {
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0
}
/* end 960 */

body { margin: 15px auto; }

header {
	border-bottom: 1px solid #CCC;
	margin-bottom: 20px
}

header.noborder { border-bottom-width: 0; }

.clearboth { clear: both; }

.js .offleft {
	position: absolute;
	left: -999em;
}

.footerLine{
	padding-top: 20px;
	padding-bottom: 10px;
}


/* titles */

.title-arrow {
	color: #cbb521;
}


/* end titles */

/* Sidebar styles */
#content {}

.col1 { margin-right: 20px; }

.sidebar-map { margin-bottom: 1em; }

.container_12 .sidebar-map, 
#teasers-side { width: 320px; }

#teasers-side p { margin: 0; }

.mod {clear:both}

aside .mod {
	margin-bottom:15px;
	padding-bottom:5px;
	border-bottom:1px solid #e9e8e8
}
#teasers-inline .mod {
	float:left;
	display:inline;
	clear:none;
	width:305px
}

#teasers-inline .clearboth .mod {border:none}

aside .mod > div {
	padding:5px 0 10px 10px;
	font-size:95%;
	color:#a7a5a6;
	outline:none
}

aside .mod > div p {margin:0}

.sprite {
	overflow: hidden;
	position: relative;
	display:block;
	height:100%;
	height: 20px;
	width: 250px
}

.sprite:hover {border:none}

.sprite img {position:relative}

aside .mod  a:focus {outline:1px dotted}

aside .mod:hover > div {color:black}

aside .mod input[type=email], aside .mod label {
	font-size:120%;
	color:#898888;
}

aside .mod input[type=email] {
	border: 2px solid #e9e8e8;
	-moz-transition: border-color 0.1s;
	-o-transition: border-color 0.1s;
	-webkit-transition: border-color 0.1s;
	margin-bottom:5px
}

.js *[aria-hidden="true"] {display:none}

#sr-map1 {
	width:320px;
	height:240px;
}

#sr-map-link {
	float:right;
	margin-top:5px
}

#sdbr-map a img {top:-80px}
#sdbr-rank a img {top:-100px}
#sdbr-sum a img {top:-120px}
#sdbr-class a img {top:-140px}
#sdbr-engage a img {top:-160px}
#sdbr-blog a img {top:-180px}
#sdbr-isp a img {top:-200px}
#sdbr-updates a img {top:-40px}
#sdbr-updates.expand a img {top:-60px}
#sdbr-share a img {top:0px}
#sdbr-share.expand a img {top:-20px}

.addthis_toolbox {padding-top:10px}
/* end sidebar styles */

.button {
	background:#B2B2B2;
	color:white;
	text-transform:uppercase;
	padding:5px 5px 0;
	border:none;
	font-size:120%;
	font-weight:bold
}

.ie7 .button {
	max-width:150px;
	max-height:30px
}

.ajaxResp {
	color:green;
	font-size:90%;
}

.error {
	color:#bb0000;
	margin-top:5px
}

/* Global Results Tables Styles */
.results {
	width:100%;
	text-align:left;
	font-size:95%;
	color:#ccc;
}

.results caption {
	color:#000;
	font-weight:bold;
	text-align:left
}

.results thead tr { border-bottom: 1px solid #918f8f; }
.msie .results thead th{ border-bottom: 1px solid #918f8f; }

.results th {font-weight:normal}

.results tbody {border-bottom: 2px solid #918f8f}

.results tbody tr {border-bottom: 1px solid #cccdcf}
.msie .results tbody td {border-bottom: 1px solid #cccdcf}

.results th,
.results td {
	padding: 0.5em 1ex
}

.results .active {color:#555}
.results .sorted {
	color:#000;
	font-weight:bold
}

.c1,.c2,.c3,.c4,.c5,.c6,.c7 {text-align:right}

/* End Table Styles */

/* Tooltip Styles */
/* Based on http://nicolasgallagher.com/pure-css-speech-bubbles */
.tooltip {
	padding: 5px;
	font-size: 85%;
	background:#FFF;
	border:1px solid #CCC;
	z-index:1001;
	width: 200px;
	height:auto;
	position:absolute;
}

.cssgradients .tooltip {
	background:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#ebedf6));
	background:-moz-linear-gradient(top, #fff, #ebedf6);
	background:-o-linear-gradient(top, #fff, #ebedf6);
}

.no-cssgradients .tooltip {background:#FFF url(../img/grad-blue-wht.png) repeat-x bottom left}

/* :after will not work in IE <8, so using empty span */
.tooltip .tri {
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	bottom:-10px; /* value = - border-top-width - border-bottom-width */
	left:0; /* controls horizontal position */
	width:0;
	height:0;
	border-width:10px 10px 0; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#bbb transparent;
}

.tooltip .tri span {
	display:block; /* reduce the damage in FF3.0 */
	position:relative;
	bottom:10px; /* value = - border-top-width - border-bottom-width */
	left:-9px; /* controls horizontal position */
	width:0;
	height:0;
	border-width:9px 9px 0; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#ebedf6 transparent;
}

.ie6 .tooltip .tri, .ie6 .tooltip .tri span {display:none}

.tooltip.below {
	color:#000;
	height:125px;
	left:-6px;
	top:24px;
	width:200px;
}
.tooltip.below .tri {
	top:-10px;
	bottom:auto;
	border-width:0 10px 10px;
}
.tooltip.below .tri span{
	top:1px;
	border-color:#FFF transparent;
	border-width:0 9px 9px;
}

.tooltip-inner {position:relative}

.js .tooltip-data {display:none}
/* End Tooltip Sytles */

form.grey input {border-color:#CCC}
form.grey button {background-color:#CCC;border-color:#CCC}

/* Brought in from global.css.php */ 
#frmSearch {margin-bottom:15px}

input.addrsearch, 
#lblAddress, 
#lblAddress2, 
#btnSearch, 
#btnSearch2 {
	font-size: 138.5%;
	padding: 0.6ex 0.8ex;
}

.searchform_q,
.searchform_btn {
	font-size: 18px;
	float:left;
}

.searchform_q {
	border-width:2px;
	border-style:solid;
	float:left;
	padding:3px;
	outline-width:0;
}

#btnSearch, 
#btnSearch2 {
	padding: 0.7ex 1.3ex 0.7ex 1.5ex;
	background-color: #3B4A98;
	border: 0 none;
	color: #FFF;
	font-weight: bold;
	margin-left: -0.5ex;
	vertical-align: middle;
}

#btnSearch2 { background-color: #006838; }

.ie6 #btnSearch, 
.ie7 #btnSearch {
	position: absolute;
	top: 1px;
	padding: 0.5ex 1.3ex;
}

.ie6 #btnSearch2, 
.ie7 #btnSearch2 { padding: 0.5ex 1.3ex; }

.ie8 #btnSearch { border: 1px solid #3B4A98; }
.ie8 #btnSearch2 { border: 1px solid #006838; }

.searchform_btn {
	margin:0;
	border:none;
	color:#FFF;
	font-weight:bold;
	outline-width:0;
	text-transform:uppercase;
	border:2px solid;
}

.moz .searchform_btn {padding:2px;}
.webkit .searchform_btn, .presto .searchform_btn {padding:3px;}

#address {
	border: 2px solid #d7dcec;
	width: 48em;
}
.ie8 #address { width: 48.52em; }
.ie9 #address { width: 48.72em; }

#address2 {
	border: 2px solid #9fc6b4;
	width: 45.2em;
}
.ie6 #address2, 
.ie7 #address2 { width: 45.05em; }
.ie8 #address2 { width: 45.75em; }
.ie9 #address2 { width: 45.95em; }

#address:focus, 
#address2:focus {
	border-color: #f4edc5;
	-moz-transition: border-color 0.1s;
	-o-transition: border-color 0.1s;
	-webkit-transition: border-color 0.1s;
}

#lblAddress, #lblAddress2 { color: #999; }

#lblAddress strong, #lblAddress2 strong { color: #666; }

fieldset {
	position: relative;
	margin-bottom: 15px;
}

#logo {
	border-width: 0;
	float: left;
}

nav { float: right; }

nav li { display: inline; }
nav li small { margin: 0 8px; }

form.full {width:100%}

#resultsmap {margin:10px 0}
   
.chicklets{ display: none!important;}
  
#sharethisimg{
	position: relative;
	top: 3px;
	left: 8px;
}

.social-links{
	height: 30px;
	margin-left: -90px;
	padding-top: 15px!important;
	text-align: center;
	vertical-align: center;
}

.ie6 .linkedin, 
.ie7 .social-links .linkedin { padding-right: 5px; }

.moz .linkedin, 
.ie8 .linkedin {
	position: relative;
	top: 1px;
}

li.facebook {
	margin-left: 4px;
	position: absolute;
}

.moz .facebook, 
.ie8 .facebook { margin-top: 1px; }

.ie6 .facebook, 
.ie7 .facebook, 
.ie8 .facebook { margin-left: 0; }

.cms-content { word-wrap: break-word; }

.cms-content ul li{
	list-style-type: square!important;
}

.cms-content a:link, 
.cms-content a:visited {
	color: #4b60ba;
	text-decoration: none;
}


.cms-content a:hover, .cms-content a:active, .cms-content a:focus {
	color:#1B40DD;
	border-bottom: 1px dotted #1B40DD;
}

#scrollToTop {
    background-color: #FFF;
    border: 3px solid rgb(155, 155, 155);
    border: 3px solid rgba(155, 155, 155, 0.6);
	bottom: 10px;
    color: #58595B;
	display: none;	
    font-size: 88%;
    font-weight: bold;
    margin: 0 0.75ex 0 0;
    padding: 0.25em 0.25ex;	
	position: fixed;
	right: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100px;
	z-index: 100;
}

.ie6 #scrollToTop {
	bottom: 0;
	position: absolute;
}

#scrollToTop:hover, 
#scrollToTop:focus { color: #000; }

.graySmall {
	font-size: 0.9em;
	color: #ccc;
}
   
   
/*
 * iPad css
 */

.iPad-icon {
	position: relative!important;
	top: 8px!important;
	padding-right: 6px!important;
}
   

/* 
 * dev section
 */

.devTitle {
	color: black;
	font-weight: bold;
	font-size: 14px!important;
}

.devApiDiv p {
	padding-bottom: 12px;
}
   
.devResponseBtn {
    padding: 5px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-right-style: solid;
    border-left-style: solid;
    border-bottom-style: solid;
    border-top-style: solid;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-top-width: 2px;
    border-right-color: #d7dcec;
    border-left-color: #d7dcec;
    border-bottom-color: #d7dcec;
    border-top-color: #d7dcec;
    font-weight: bold;
}

#devJSON{
    display: none;
}

#devXML{
    display: none;
}

/*
 * 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; }
  #scrollToTop { display: none !important; }
}
