body {
	background-image: url(../pngs/background.png);
	background-repeat: repeat-x;
	background-color: #ebebeb;
	color: #585858;
}

.previous {
	margin-top: 30px;
}

a:link {
	background-color: transparent;
	color: #585858;
	text-decoration: underline;
}

a:visited {
	background-color: transparent;
	color: #585858;
	text-decoration: underline;
}

a:hover {
	background-color: transparent;
	color: #585858;
	text-decoration: underline;
}

a:active {
	background-color: transparent;
	color: #585858;
	text-decoration: underline;
}

.italic {
	font-style: italic;
}

.clear {
	clear: both;
}

.spacer {
	margin-top: 10px;
}

.bold {
	font-weight: bold;
}

optgroup {
	font-weight: normal;
}

a:focus {
	outline: none;
}

li {
	list-style-type: circle;
}

ul li ul {
	margin-top: 0;
}

nav {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
	
.navbar-inverse {
	border-radius: 0px;
	margin-bottom: 0px; /* removes spacing beneath navbar */
}

.navbar-header .navbar-brand {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
	}
	
#navbar ul li a {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}

/* fix for menu carat */

ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

ul.nav li.dropdown:hover ul li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

ul.nav li.dropdown:hover ul li:hover {
	background-color: #e0e0e0;
}

#navbar ul ul li a  {
	color: #000;
	background-color: transparent;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 14px;
}

/*end */

footer {
	background-color: #333333;
	height: 40px;
}

ul.footer-links {
	margin: 10px 0;
}

ul.footer-links li {
	background-color: transparent;
	color: #ffffff;
	list-style-type: none;
	float: left;
	font-weight: normal;
}

ul.footer-links li a {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;

}

body .banner-block {
	padding: 20px 0; /* adds spacing beneath navbar */
}

body .main-content {
	padding-bottom: 10px;
}

body .main-content h1 {
	font-size: 25px;
	margin-bottom: 20px;
}

.box {
	border-top: solid 1px #cccccc;
	padding: 20px;
}

.featured {
	padding-left: 0px;
}

.right-box {
	border-top: solid 1px #cccccc;
	padding: 25px 0 20px 0;
}

.featured h2, .right-box h2, .right-box-borderless h2 {
	font-size: 18px;
	margin: 0;
	line-height: 125%;
	vertical-align: middle;
}

.featured h3 {
	font-size: 16px;
	margin: 0 0 10px 0;
	background-color: transparent;
	color: #999999;
	line-height: 125%;
	vertical-align: middle;
}

h2.links {
	font-size: 16px;
}

h2 .subtitle, h2.subtitle {
	background-color: transparent;
	color: #999999;
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 125%;
	vertical-align: middle;
}

h2.lowercase {
	font-family: sans-serif;
	background-color: transparent;
	color: #666666;
	display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 125%;
	vertical-align: middle;
	text-transform: none;
	clear: both;
}

h3 {
	font-family: sans-serif;
	background-color: transparent;
	color: #666666;
	display: block;
	font-weight: bold;
	font-size: 20px;
	line-height: 125%;
	vertical-align: middle;
	text-transform: none;
	padding-top: 0px;
	margin-top: 0px;
}

h3 .subtitle {
	background-color: transparent;
	color: #999999;
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 125%;
	vertical-align: middle;
}

/* news sidebar */

ul {
	margin: 10px 0 0 15px;
	padding: 0;
}

/* facts */

ul#atoz {
	margin: 10px 0 0 0;
	padding: 0;
}

ul#atoz li {
	list-style-type: none;
	display: block;
	clear: both;
}

ul#atoz li a {
	text-decoration: none;
}

ul#atoz li .big-letter, ul.atoz-page li.atoz .big-letter {
	background-color: transparent;
	color: #666666;
	font-size: 40px;
	font-weight: normal;
}

.right-box form, .right-box-borderless form {
	margin: 5px 0 0 0;
}

.addthis_toolbox {
	padding: 5px 0 0 0;
}

/* table */

.table {
	margin-bottom: 0px;
}

/* popular ordered list styling */

/* inspired by Roger J Johansson */
/* http://www.456bereastreet.com/archive/201105/styling_ordered_list_numbers/ */


ol {
    counter-reset:li; /* Initiate a counter */
    margin: 0; /* Remove the default left margin */
    padding: 5px 0 0 0; /* Remove the default left padding */
}
ol > li {
    position: relative; /* Create a positioning context */
    margin: 0 0 6px 25px; /* Give each list item a left margin to make room for the numbers */
    padding: 3px 10px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */

}
ol > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-0px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    color:#fff;
    background:#666;
    font-weight:normal;
    font-size: 13px;
    text-align:center;
}

/* quicklinks on story page */

ul.quicklinks {
	padding: 0;
	margin: 0;
}

ul.quicklinks li {
	list-style-type: circle;
	margin: 0 10px 0 15px;
	float: left;
	font-size: 12px;
}

ul.quicklinks li.first {
	border: none;
	padding-left: 0px;
}

ul.quicklinks li.none {
	border: none;
	padding-left: 0px;
	clear: left;
}

/* latest news */

ul.latest-news {
	margin: 0 0 25px 0;
	padding: 0;
}

ul.latest-news li {
	border-bottom: dotted 1px #cccccc;
	margin: 0;
	padding: 15px 0;
	list-style-type: none;
}

/* timeline */

ul.timeline {
	margin: 0 0 25px 0;
	padding: 0;
}

ul.timeline li {
	border-bottom: dotted 1px #cccccc;
	margin: 0;
	padding: 10px 0;
	list-style-type: none;
}


ul.timeline .date {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	padding: 0 0 3px 0;
}

#pager-box {
	background-color: transparent;
	color: #000000;
	margin: 15px 0 0 0;
}

.pager-box {
	margin: 0 0 20px 0;
}

.pager-box .qp_prev {
	padding: 0 0 0 0.5em;
}

.pager-box .qp_next {
	padding: 0 0.5em 0 0;
}

.pager-box .qp_disabled {
	cursor: default;
	text-decoration: none;
}

.kiosks-table {
	margin-bottom: 20px;
	padding: 0;
}

.kiosks-table img {
	padding: 0;
	margin: 0;
}

.kiosk-table-label {
	padding-top: 10px;
	height: 60px;
	display: block;
}

#accordion h4 a {
	color: #999;
	text-decoration: none;
}

#accordion p {
	margin-bottom: 0px;
}

/* font embedding */

h1, h2, h3, h4, h5, h6,
nav, 
.box .subtitle,
.box .designerName,
.big-letter,
ul.timeline .date,
#accordion h4,
ol > li:before { 
	font-family: MuseoSlab-700, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
}

#page #header,
#page #footer,
nav ul li a,
footer, 
footer ul li a,
.kiosk-details, .tagline { 
	font-family: MuseoSlab-300, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
}


@media(min-width:320px)
{
	li.dropdown > a.dropdown-toggle > span.caret {
		visibility: hidden;
	}
	
	.navbar-collapse.collapse.in > ul.nav.navbar-nav > li.dropdown > ul.dropdown-menu {
		display: none;
	}
	
	form#profiles-form.form-inline > div.form-group > select.form-control  {
		width: 100%;
	}
	
	ul#atoz li {
		list-style-type: none;
		display: block;
		clear: both;
	}
	
	ul#atoz li .big-letter {
		margin: 0px 15px 0 0;
		padding: 0;
		line-height: 100%;
	}

	.right-box-borderless {
		border-top: solid 1px #cccccc;
		padding: 20px 0;
	}	
	
	.left-border {
		padding-left: 0px;
	}
}

@media(min-width:768px)
{

	li.dropdown > a.dropdown-toggle > span.caret {
		visibility: visible;
	}
	
	div.navbar-header > a.navbar-brand {
		background-color: transparent;
		color: #ffffff;
		font-size: 18px;
		text-decoration: none;
	}
	
	#navbar ul li a {
		background-color: transparent;
		color: #ffffff;
		font-size: 11px;
		padding-left: 15px;
		padding-right: 0px;
		text-decoration: none;
	}
	
	ul.footer-links li {
		font-size: 10px;
		margin: 0 10px 0 0;
	}	

	.box-profiles .right-box-borderless {
		border-top: solid 1px #cccccc;
		padding: 25px 0 20px 0;
	}

	.box-popular {
		clear: both;
	}

	ul#atoz li {
		list-style-type: none;
		display: block;
		clear: both;
	}
	
	ul#atoz li .big-letter {
		margin: 0 20px 0 0;
		padding: 0;
		line-height: 100%;
	}
	
	form#profiles-form.form-inline > div.form-group > select.form-control  {
		width: 600px;
	}
	
}

@media(min-width:992px)
{

	li.dropdown > a.dropdown-toggle > span.caret {
		visibility: visible;
	}

	div.navbar-header > a.navbar-brand {
		font-size: 22px;
		background-color: transparent;
		color: #ffffff;
		padding-left: 20px;
		padding-right: 20px;
		text-decoration: none;
}
	
	#navbar ul li a {
		background-color: transparent;
		color: #ffffff;
		font-size: 14px;
		padding-left: 20px;
		padding-right: 0px;
		text-decoration: none;
	}
	
	ul.footer-links li {
		font-size: 12px;
		margin: 0 20px 0 0;
	}	
	
	.box-profiles .right-box-borderless {
		padding: 20px 0 20px 0;
		border-top: none;
	}
	
	.left-border {
		border-left: solid 1px #cccccc;
	}

	ul#atoz li {
		list-style-type: none;
		display: block;
		clear: both;
		margin-left: 10px;		
	}
	
	ul#atoz li .big-letter {
		margin: 25px 15px 32px 0;
	}
	
	.atoztext {
		padding-right: 15px;
	}
	
	form#profiles-form.form-inline > div.form-group > select.form-control  {
		width: 100%;
	}
	
	
}

@media(min-width:1200px)
{

	.navbar-header .navbar-brand {
		background-color: transparent;
		color: #ffffff;
		font-size: 22px;
		padding-left: 50px;
		padding-right: 20px;
		text-decoration: none;
	}
	
	#navbar ul li a {
		background-color: transparent;
		color: #ffffff;
		font-size: 15px;
		padding-left: 25px;
		padding-right: 25px;
		text-decoration: none;
	}
	
	ul.footer-links li {
		font-size: 12px;
		margin: 0 20px 0 0;
	}	
	
	.right-box-borderless {
		padding: 20px 0 20px 0;
		border-top: none;
	}
	
	.left-border {
		border-left: solid 1px #cccccc;
	}
	
	ul#atoz li {
		list-style-type: none;
		display: block;
		clear: both;
		margin-left: 10px;
	}
	
	ul#atoz li .big-letter {
		margin: 20px 20px 12px 0;
	}
	
	.atoztext {
		padding-right: 20px;
	}

}

/* force wider banner images for >1600px wide screens */

@media(min-width:1600px)
{
	.banner-block {
		width: 1300px;
	}

}
