@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: lighter;
	src: local('Lato Hairline'),
		local('Lato-Hairline'),
		url(/mobile/content/fonts/Lato-Light.woff?v=638258151226519034) format('woff');
}

@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: normal;
	src: local('Lato Regular'),
		local('Lato-Regular'),
		url(/mobile/content/fonts/Lato-Regular.woff?v=638258151226559087) format('woff');
}

@font-face {
	font-family: 'Lato';
	font-style: normal;
	font-weight: bold;
	src: local('Lato Bold'),
		local('Lato-Bold'),
		url(/mobile/content/fonts/Lato-Bold.woff?v=638258151226479039) format('woff');
}


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	-webkit-text-size-adjust: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*!
 * Bootstrap v2.3.1
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
.clearfix:after{clear:both;}
.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
.tooltip.top{margin-top:-3px;padding:5px 0;}
.tooltip.right{margin-left:3px;padding:0 5px;}
.tooltip.bottom{margin-top:3px;padding:5px 0;}
.tooltip.left{margin-left:-3px;padding:0 5px;}
.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;}


/* Prefix all pages with mb- for no collisions */

/* Page class for all mobile pages */
.mb-page {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*
 * Slide
 * slide pages horizontally
 */
@-webkit-keyframes slideInFromRight {
  0% { -webkit-transform: translate3d(100%, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes slideOutToRight {
  0% { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(100%, 0, 0); }
}
@-webkit-keyframes slideInFromLeft {
  0% { -webkit-transform: translate3d(-100%,0,0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes slideOutToLeft {
  0% { -webkit-transform: translate3d(0,0,0); }
  100% { -webkit-transform: translate3d(-100%, 0, 0); }
}
.mb-slide {
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
}
.mb-slide.mb-in {
  -webkit-animation-name: slideInFromRight;
}
.mb-slide.mb-in.mb-reverse {
  -webkit-animation-name: slideOutToRight;
  -webkit-transform: translate3d(100%, 0, 0);
}
.mb-slide.mb-out {
  -webkit-animation-name: slideOutToLeft;
  -webkit-transform: translate3d(-100%, 0, 0);
}
.mb-slide.mb-out.mb-reverse {
  -webkit-animation-name: slideInFromLeft;
}

/*
 * Slide up and down - like modal, but exiting page is animated too.
 */
@-webkit-keyframes slideInFromTop {
  0% { -webkit-transform: translate3d(0, 100%, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes slideOutToTop {
  0% { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(0, 100%, 0); }
}
@-webkit-keyframes slideInFromBottom {
  0% { -webkit-transform: translate3d(0,-100%,0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes slideOutToBottom {
  0% { -webkit-transform: translate3d(0,0,0); }
  100% { -webkit-transform: translate3d(0, -100%, 0); }
}

.mb-slide-up {
  -webkit-animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
}
.mb-slide-up.mb-in {
  -webkit-animation-name: slideInFromTop;
}
.mb-slide-up.mb-in.reverse {
  -webkit-animation-name: slideOutToTop;
  -webkit-transform: translate3d(0,-100%,0);
}
.mb-slide-up.mb-out {
  -webkit-animation-name: slideOutToBottom;
  -webkit-transform: translate3d(0,100%,0);
}
.mb-slide-up.mb-out.reverse {
  -webkit-animation-name: slideInFromBottom;
}

/*
 * Modal!
 * slide a page in from the bottom onto a page
 */
@-webkit-keyframes modalUp {
  0% { -webkit-transform: translate3d(0, 100%, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}
@-webkit-keyframes modalDown {
  0% { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(0, 100%, 0); }
}
.mb-modal {
  z-index: 10;
  -webkit-animation-duration: 0.4s;
}
.mb-modal.mb-in,
.mb-modal.mb-out.mb-reverse {
  -webkit-animation-name: modalUp;
}
.mb-modal.mb-in.mb-reverse,
.mb-modal.mb-out {
  z-index: 9; /* Lower than modal-in */
  -webkit-animation-name: modalDown;
  -webkit-transform: translate3d(0, 100%, 0);
}


/**
 *
 * Main container
 *
 */
#addToHomeScreen {
	z-index: 9999;
	-webkit-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	touch-callout: none;
	width: 240px;
	font-size: 15px;
	padding: 12px 14px;
	text-align: left;
	font-family: helvetica;
	background-image: -webkit-gradient(linear,0 0,0 100%,color-stop(0,#fff),color-stop(0.02,#eee),color-stop(0.98,#ccc),color-stop(1,#a3a3a3));
	border: 1px solid #505050;
	-webkit-border-radius: 8px;
	-webkit-background-clip: padding-box;
	color: #333;
	text-shadow: 0 1px 0 rgba(255,255,255,0.75);
	line-height: 130%;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

	#addToHomeScreen.addToHomeIpad {
		width: 268px;
		font-size: 18px;
		padding: 14px;
	}

	/**
 *
 * The 'wide' class is added when the popup contains the touch icon
 *
 */
	#addToHomeScreen.addToHomeWide {
		width: 296px;
	}

	#addToHomeScreen.addToHomeIpad.addToHomeWide {
		width: 320px;
		font-size: 18px;
		padding: 14px;
	}

	/**
 *
 * The balloon arrow
 *
 */
	#addToHomeScreen .addToHomeArrow {
		position: absolute;
		background-image: -webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(204,204,204,0)),color-stop(0.4,rgba(204,204,204,0)),color-stop(0.4,#ccc));
		border-width: 0 1px 1px 0;
		border-style: solid;
		border-color: #505050;
		width: 16px;
		height: 16px;
		-webkit-transform: rotateZ(45deg);
		bottom: -9px;
		left: 50%;
		margin-left: -8px;
		-webkit-box-shadow: inset -1px -1px 0 #a9a9a9;
		-webkit-border-bottom-right-radius: 2px;
	}


	/**
 *
 * The balloon arrow for iPad
 *
 */
	#addToHomeScreen.addToHomeIpad .addToHomeArrow {
		-webkit-transform: rotateZ(-135deg);
		background-image: -webkit-gradient(linear,0 0,100% 100%,color-stop(0,rgba(238,238,238,0)),color-stop(0.4,rgba(238,238,238,0)),color-stop(0.4,#eee));
		-webkit-box-shadow: inset -1px -1px 0 #fff;
		top: -9px;
		bottom: auto;
		left: 50%;
	}


	/**
 *
 * Close button
 *
 */
	#addToHomeScreen .addToHomeClose {
		-webkit-box-sizing: border-box;
		position: absolute;
		right: 4px;
		top: 4px;
		width: 18px;
		height: 18px;
		line-height: 14px;
		text-align: center;
		text-indent: 1px;
		-webkit-border-radius: 9px;
		background: rgba(0,0,0,0.12);
		color: #707070;
		-webkit-box-shadow: 0 1px 0 #fff;
		font-size: 16px;
	}


	/**
 *
 * The '+' icon, displayed only on iOS < 4.2
 *
 */
	#addToHomeScreen .addToHomePlus {
		font-weight: bold;
		font-size: 1.3em;
	}


	/**
 *
 * The 'share' icon, displayed only on iOS >= 4.2
 *
 */
	#addToHomeScreen .addToHomeShare {
		display: inline-block;
		width: 18px;
		height: 15px;
		background-repeat: no-repeat;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAQAAABDj1eZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUdJREFUKFNtkLtLw1AYxS/qJLhXVKr2ZRulUNtiqgSb3CziICI6ucTFVYcOnaQOFRwUnNTRwUWXgpP/QdHNUEQUHGxofYBTlRs83iZNjKTncOGe7/vx3QchXUWn6FL3jhfKUdCCr5zuifV5oDiHQM+c+CIhiiCSWNu08iq9oHXKLAiqrgR4UXqlOEYZt++ExEL0wW7+OW0G10muLv9gmqfe5FAWKmTMYQYiFL7PYwyLOD8lSjNh2gdnPzMII4QUBxc4OothbAF7GCBKQ0YbSWyPQsIhqvetS+y0ygGMo/KFZfviDvR4AhwgZU9dGYnA0J/6ndc15i3ouYIMcVVUcEXIoOxCeRCfwP8sXBSdjtpUv/1QW+K16kCCIUC4id9Fa0JtkluwVkSfqPL6RwfSDA0aNlx7k/bWgViB7bMS2/1vk5sdsZLN/ALSuL3tylO4RAAAAABJRU5ErkJggg==);
		background-size: 18px 15px;
		text-indent: -9999em;
		overflow: hidden;
	}


	/**
 *
 * The touch icon (if available)
 *
 */
	#addToHomeScreen .addToHomeTouchIcon {
		display: block;
		float: left;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.9);
		box-shadow: 0 1px 3px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.9);
		background-repeat: no-repeat;
		width: 57px;
		height: 57px;
		-webkit-background-size: 57px 57px;
		background-size: 57px 57px;
		margin: 0 12px 0 0;
		border: 1px solid #333;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
	}


/**
 *
 * The 'share' icon for retina display
 *
 */
@media all and (-webkit-min-device-pixel-ratio: 2) {
	#addToHomeScreen .addToHomeShare {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC);
	}
}


html,
body {
	color: #333;
	font-family: Arial, sans-serif;
	font-size: 12px;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

p {
	line-height: 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Lato';
	line-height: 1.2em;
}

td,
th {
	text-align: left;
}

button {
	/* color from theme */
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E1E1E1));
	border-radius: 5px;
	border: 1px solid #C6C6C6;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 15px;
	cursor: pointer;
}

	button.active {
		background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d6d6d6));
	}

/*
-------------------
Typography
-------------------
*/

.text-xxsmall {
	font-size: 9px;
}

.text-xsmall {
	font-size: 10px;
}

.text-small {
	font-size: 11px;
}

.text-normal {
	font-size: 12px;
}

.text-large {
	font-size: 14px;
}

.text-xlarge {
	font-size: 16px;
}

.text-xxlarge {
	font-size: 18px;
}

.text-xxxlarge {
	font-size: 24px;
}

.text-positive {
	color: green;
}

.text-negative {
	color: red;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.text-bold {
	font-weight: bold;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-nobreak {
	white-space: nowrap;
}

.link {
	/* color from theme */
	cursor: pointer;
	font-weight: bold;
}

/*
-------------------
Icons
-------------------
*/

.icon {
	/* background-image from theme */
	background-repeat: no-repeat;
	display: inline-block;
	height: 25px;
	width: 25px;
}

.icon-home {
	background-position: 0 -21px;
}

.icon-list {
	background-position: 0 -54px;
}

.icon-prev {
	background-position: 5px -86px;
}

.icon-next {
	background-position: 9px -121px;
}

.icon-note {
	background-position: 0 -194px;
}

.icon-pdf {
	background-position: -30px -194px;
}

/*
-------------------
Positioning
-------------------
*/

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

/*
-------------------
Misc
-------------------
*/

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
	line-height: 0;
}

.clearfix:after {
	clear: both;
}


/*
-------------------
Tables
-------------------
*/

table th,
table td {
	text-align: left;
	vertical-align: top;
}

.data-table {
}

	.data-table tbody tr {
		cursor: pointer;
	}

	.data-table a {
		color: #666;
		text-decoration: none;
	}

	.data-table th,
	.data-table td {
		color: #666;
		border-bottom: 1px solid #eee;
		padding: 10px;
	}

	.data-table th {
		padding-top: 0;
		color: #999;
		font-weight: bold;
	}

	.data-table tr:nth-child(even) td {
		background: #f9f9f9;
	}

.table-wrapper {
	position: relative;
	padding-left: 175px;
}

	.table-wrapper .fixed-table {
		position: absolute;
		left: 0;
		width: 175px;
	}

	.table-wrapper .table-container {
		overflow-x: auto;
	}

		.table-wrapper .table-container table {
			width: 100%;
		}

			.table-wrapper .table-container table th {
				white-space: nowrap;
				min-width: 80px;
			}

/*
-------------------
Rank Small
-------------------
*/

.rank-small {
	position: relative;
	padding-right: 15px;
}

.rank-small-label {
	font-weight: bold;
}

.rank-small-scale {
	position: absolute;
	top: 0;
	right: 0;
	background: #d5d5d5;
	width: 6px;
	height: 15px;
}

.rank-small-indicator {
	/* background from theme */
	height: 3px;
	width: 8px;
	position: absolute;
	left: -1px;
}

/*
-------------------
Rank Large
-------------------
*/

.rank-large {
	background: #323266;
	height: 90px;
	position: relative;
	width: 90px;
}

.rank-large-title {
	display: table;
	height: 30px;
	text-align: center;
	width: 100%;
}

	.rank-large-title span {
		color: #fff;
		display: table-cell;
		font-size: 11px;
		line-height: 12px;
		text-align: center;
		text-shadow: 2px 2px #25284C;
		text-transform: uppercase;
		vertical-align: middle;
		width: 90px;
	}

.rank-large-body {
	background: #fff;
	bottom: 3px;
	height: 57px;
	left: 3px;
	position: absolute;
	width: 84px;
}

.rank-large-text {
	color: #25284C;
	display: inline-block;
	float: left;
	font-size: 50px;
	font-weight: bold;
	line-height: 57px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	width: 60px;
}

	.rank-large-text span {
		left: 3px;
		position: relative;
	}

	.rank-large-text sup {
		font-size: 20px;
		line-height: normal;
		position: relative;
		text-transform: lowercase;
		top: -12px;
	}

.rank-large-ladder {
	height: 52px;
	position: absolute;
	right: 3px;
	top: 2px;
	width: 20px;
}

	.rank-large-ladder li {
		/* background-image from theme */
		background-repeat: repeat-x;
		background-position: 0 -70px;
		background-color: #e0e0e0;
	}

		.rank-large-ladder li.selected {
			background-color: #25284C;
		}

/*
-------------------
Tabs
-------------------
*/

.tabs {
}

.tab-panes {
	border-bottom: 1px solid #d1d1d1;
	padding: 0 10px;
}

	.tab-panes li {
		float: left;
		cursor: pointer;
		color: #333;
	}

		.tab-panes li.active {
			margin-bottom: -1px;
		}

		.tab-panes li > span {
			background: #f1f1f1;
			border-left: 1px solid #fff;
			border-right: 1px solid #fff;
			display: block;
			font-weight: bold;
			padding: 5px;
		}

		.tab-panes li.active > span {
			/* color from theme */
			background: #fff;
			border-left: 1px solid #d1d1d1;
			border-right: 1px solid #d1d1d1;
			border-top: 1px solid #d1d1d1;
		}

.tab-pane-content {
	display: none;
	padding: 10px;
}

	.tab-pane-content.active {
		display: block;
	}

/*
-------------------
Arrows
-------------------
*/

.arrow-box {
	padding-left: 15px;
	position: relative;
}

.arrow {
	/* background-image from theme */
	background-repeat: no-repeat;
	display: inline-block;
	height: 10px;
	left: 0;
	position: absolute;
	top: 5px;
	width: 10px;
}

.arrow-positive {
	background-position: 0 -157px;
}

.arrow-negative {
	background-position: 0 -177px;
}

/*
-------------------
Modal
-------------------
*/

#modal-container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.modal {
	width: 250px;
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	color: #333;
	position: fixed;
	top: 30%;
	left: 50%;
	margin-left: -135px;
	z-index: 2;
	line-height: 1.3em;
}

	.modal span {
		display: block;
	}

		.modal span.title {
			font-weight: bold;
			margin-bottom: 5px;
		}

		.modal span.detail {
			color: #999;
			margin-top: 5px;
		}

.modal-shadow {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, .75);
	z-index: 1;
}


/* ----------------------------------------------------------------------------
Site-wide
---------------------------------------------------------------------------- */

.site-header {
	border-bottom: 1px solid #999;
	height: 50px;
	padding: 0 10px;
}

	.site-header img {
		height: 33px;
		margin-top: 10px;
	}

.site-search {
	background: #1E2A3B;
	border-bottom: 1px solid #999;
	height: 40px;
	line-height: 40px;
}

	.site-search .icon,
	.site-search input {
		float: left;
		margin-top: 7px;
	}

		.site-search .link-list,
		.site-search .link-home,
		.site-search .link-prev,
		.site-search .link-next {
			float: left;
			height: 40px;
		}

		.site-search .link-list,
		.site-search .link-home {
			border-right: 1px solid #0C1219;
			margin-left: 10px;
			padding-right: 10px;
		}

		.site-search .link-prev,
		.site-search .link-next {
			border-left: 1px solid #0C1219;
			padding: 0 5px;
		}

	.site-search label {
		color: #fff;
		float: left;
		margin-left: 10px;
	}

	.site-search input {
		/* background-image from theme */
		background-color: #fff;
		background-position: 139px 6px;
		background-repeat: no-repeat;
		border-radius: 0;
		border: 1px solid #999;
		margin-left: 10px;
		margin-right: 10px;
		padding: 5px 20px 5px 5px;
		width: 129px;
	}

		.site-search input.loading {
			background: url(/mobile/content/img/ajax_input_spinner.gif?v=638258151226599062) 135px center no-repeat #fff;
		}

		.site-search .wide input {
			background-position: 164px 6px;
			width: 155px;
		}

			.site-search .wide input.loading {
				background: url(/mobile/content/img/ajax_input_spinner.gif?v=638258151226599062) 160px center no-repeat #fff;
			}

	.site-search-box {
		float: left;
	}

		.site-search-box input[type=text] {
			font-size: 16px;
			padding-top: 3px;
			padding-bottom: 3px;
		}

	.site-search-results {
		background: #fff;
		left: 0;
		position: absolute;
		right: 0;
		z-index: 10;
		margin-top: 40px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
	}

		.site-search-results li {
			border-bottom: 1px solid #ccc;
			line-height: 1.2em;
		}

		.site-search-results a {
			/* color from theme */
			display: block;
			padding: 10px;
		}

.site-content {
	background: #fff;
	position: absolute;
	height: 100%;
	width: 100%;
}

	.site-content .loader {
		background: url(/mobile/content/img/ajax_loader.gif?v=638258151226609062) no-repeat center center #fff;
		bottom: 0;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		visibility: hidden;
	}

		.site-content.loading {
			overflow: hidden;
		}

			.site-content.loading .site-template {
				visibility: hidden;
			}

			.loading .loader {
				visibility: visible;
			}

.mb-page {
	background: #fff;
}

.site-template {
	position: absolute;
	height: 100%;
	width: 100%;
}

.site-footer {
	background: #1E2A3B;
	padding: 15px 10px;
}

	.site-footer p {
		color: #999;
		font-weight: bold;
		padding: 10px 0 5px 0;
	}

	.site-footer ul:first-child {
		padding-bottom: 15px;
		border-bottom: 1px solid #5D5C5C;
	}

	.site-footer li {
		float: left;
	}

	.site-footer a {
		color: #fff;
		font-weight: bold;
		padding-right: 5px;
		border-right: 1px solid #040404;
	}

		.site-footer li:last-child a {
			border-right: none;
		}

		.site-footer li + li a {
			padding-left: 5px;
			border-left: 1px solid #5D5C5C;
		}

/* ----------------------------------------------------------------------------
Home Page
---------------------------------------------------------------------------- */

/*.section-home {}*/

	.section-home header {
		width: 100%;
	}

	.section-home header .site-search input {
		float: right;
	}

.section-home-masthead {
	background-size: 100% auto;
	background-repeat: no-repeat;
	height: 210px;
	position: relative;
}

	.section-home-masthead div {
		background: #fff;
		bottom: 0;
		height: 90px;
		opacity: 0.85;
		padding: 10px;
		position: absolute;
		right: 0;
		text-align: center;
		width: 200px;
	}

	.section-home-masthead h1 {
		font-size: 30px;
		font-weight: bold;
		line-height: 26px;
		margin-top: 5px;
	}

		.section-home-masthead h1 sup {
			bottom: 15px;
			font-family: "Arial", "sans-serif";
			font-size: 10px;
			position: relative;
			right: 5px;
		}

	.section-home-masthead h2 {
		font-size: 15px;
		font-weight: bold;
		line-height: 18px;
	}

.section-home-overview {
	/* background-image from theme */
	background-position: 0 -226px;
	background-repeat: no-repeat;
	color: #666;
	display: block;
	margin: 10px 10px 0 10px;
	min-height: 100px;
	padding: 0 0 10px 110px;
	position: relative;
}

	.section-home-overview p {
		display: inline;
		margin: 0;
	}

	.section-home-overview h2 {
		/* color from theme */
		/* border-color from theme */
		border-bottom-width: 2px;
		border-bottom-style: solid;
		font-weight: bold;
		margin: 0 0 5px 0;
		padding-bottom: 5px;
	}

.section-home-indexes {
	padding: 10px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

	.section-home-indexes li {
		width: 33%;
		float: left;
	}

	.section-home-indexes li > div {
		padding: 5px 10px;
	}

		.section-home-indexes li + li > div {
			border-left: 1px solid #eee;
		}

		.section-home-indexes li > div span {
			clear: both;
			line-height: 1.3em;
		}

	.section-home-indexes li > div span:first-child {
		font-weight: bold;
		text-transform: uppercase;
	}

	.section-home-indexes p {
		margin: 10px 10px 0 10px;
	}

.section-home-list {
	padding: 10px 0;
}

	.section-home-list h2 {
		font-weight: bold;
		margin: 0 10px 20px 10px;
	}

	.section-home-list footer {
		padding: 10px 10px 0 10px;
	}

		.section-home-list footer a {
			color: #333;
			font-weight: bold;
		}

/* ----------------------------------------------------------------------------
Market Overview Page
---------------------------------------------------------------------------- */

/*.section-market {}*/

	.section-market h2 {
		margin: 10px 0;
		font-weight: bold;
	}

.section-market-story {
	padding: 0 10px;
}

	.section-market-image {
		/* background-image from theme */
		height: 100px;
		width: 100px;
		float: left;
		margin: 0 10px 10px 0;
		background-position: 0 -226px;
		background-repeat: no-repeat;
	}

	.section-market-date {
		font-weight: bold;
	}

	.section-market-story p {
		display: inline;
	}

	.section-market-story p + p {
		margin: 1em 0;
		display: block;
	}

/* ----------------------------------------------------------------------------
List Page
---------------------------------------------------------------------------- */

/*.section-list {}*/

	.section-list h2 {
		margin: 10px 10px 20px 10px;
		font-weight: bold;
	}

	.section-list .data-table {
		margin-bottom: 20px;
	}

/* ----------------------------------------------------------------------------
Company Page
---------------------------------------------------------------------------- */

/*.section-company {}*/

.section-company-banner {
	border-bottom: 1px solid #999;
	padding-bottom: 10px;
}

	.section-company-banner header {
		/* background-image from theme */
		background-repeat: repeat-x;
		height: 40px;
		padding: 10px;
	}

		.section-company-banner header h1 {
			color: #fff;
			text-shadow: 2px 2px #25284C;
			line-height: 1em;
			position: relative;
			bottom: 3px;
		}

		.section-company-banner header h2 {
			color: #aaa;
			text-shadow: 2px 2px #25284C;
			text-transform: uppercase;
			margin-top: 2px;
		}

	/*.section-company-banner ul {}*/

		.section-company-banner li {
			float: left;
			width: 50%;
		}

			.section-company-banner .entitled li {
				width: 50%;
			}

			.section-company-banner h3 {
				margin: 10px 0 0 10px;
				color: #666;
			}

			.section-company-banner li > span {
				font-weight: bold;
				margin-left: 10px;
			}

			.section-company-banner p {
				color: #999;
				margin: 10px 0 0 10px;
			}

			.section-company-banner li:first-child {
				width: 100%;
			}

				.section-company-banner li button {
					float: right;
					margin: -9px 10px 0 0;
				}

.section-company-banner-chart {
	padding: 20px 10px 0 10px;
	position: relative;
}

	li .section-company-banner-chart button {
		float: left;
		margin: 0 5px 10px 0;
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-company-banner-chart img {
		width: 100%;
	}

/*.section-company-content {}*/

	.section-company-content .tabs {
		margin-top: 10px;
	}

.section-company-ranks {
	padding: 10px 10px 0 10px;
}

	.section-company-ranks > li {
		float: left;
		width: 33.33%;
	}

	.section-company-ranks .rank-large {
		margin: 0 auto;
	}

/*.section-company-articles {}*/

	.section-company-articles li {
		padding: 0 0 10px 0;
		cursor: pointer;
	}

		.section-company-articles li + li {
			padding: 10px 0 10px 0;
			border-top: 1px solid #d1d1d1;
		}

	.section-company-articles h3 {
		margin-bottom: 5px;
		font-weight: normal;
		color: #333;
	}

	.section-company-articles-single {
		position: relative;
		min-height: 160px;
		line-height: 1.3em;
	}

		.section-company-articles-single h2 {
			font-weight: bold;
			margin: 10px 0;
		}

		.section-company-articles-single h3 {
			margin: 10px 0;
		}

	.section-company .tabs h2 {
		font-weight: bold;
		margin-bottom: 5px;
	}

	.section-company .tabs li a {
		position: relative;
		padding-left: 25px;
		height: 25px;
		display: block;
		line-height: 25px;
	}

	.section-company .tabs li a .icon {
		position: absolute;
		left: 0;
		top: 0;
	}

.section-company-box {
	padding: 5px;
	background: #f1f1f1;
	border: 1px solid #ccc;
	margin-bottom: 10px;
}

	.section-company-box .icon {
		float: left;
	}

	.section-company-box h2 {
		float: left;
		line-height: 25px;
	}

	.section-company-box p {
		clear: both;
	}

.section-company-commentary {
	clear: both;
	margin-bottom: 10px;
}

		.section-company-commentary > ul li + li {
			margin-top: 5px;
		}

	.section-company-commentary p + p {
		margin-top: 10px;
	}

.section-company-commentary-body {
	line-height: 1.2em;
}

.section-company-commentary-author {
	margin-top: 10px;
}

/* ----------------------------------------------------------------------------
Terms and Conditions
---------------------------------------------------------------------------- */

.section-terms-content {
	padding: 10px;
}

	.section-terms p + p {
		margin-top: 10px;
	}


@media only screen and (-webkit-device-pixel-ratio: 1) {

	.section-home-masthead {
		background-image: url(/mobile/content/img/masthead-bg.jpg?v=638258151226679136);
	}

	.site-content .loader {
		background-image: url(/mobile/content/img/ajax_loader.gif?v=638258151226609062);
	}

}

@media only screen and (-webkit-device-pixel-ratio: 2) {

	.section-home-masthead {
		background-image: url(/mobile/content/img/masthead-bg@2x.jpg?v=638258151226689131);
	}

	.site-content .loader {
		background-image: url(/mobile/content/img/ajax_loader@2x.gif?v=638258151226629073);
	}

}


/* ----------------------------------------------------------------------------
Generic
---------------------------------------------------------------------------- */

.theme-highlight-bg {
	background: #4AA255;
}

.theme-highlight-color {
	color: #4AA255;
}

.theme-highlight-border {
	border-color: #4AA255;
}

.theme-sprite-bg {
	background-image: url(/mobile/content/img/sprite-bg-retail.gif?v=638258151226729108);
}

.theme-sprite-icons {
	background-image: url(/mobile/content/img/sprite-icons-retail.gif?v=638258151226739077);
}

/* ----------------------------------------------------------------------------
Specific instances
---------------------------------------------------------------------------- */

button {
	color: #4AA255;
}

.link {
	color: #4AA255;
}

.tab-panes li.active > span {
	color: #4AA255;
}

.arrow {
	background-image: url(/mobile/content/img/sprite-icons-retail.gif?v=638258151226739077);
}

.icon {
	background-image: url(/mobile/content/img/sprite-icons-retail.gif?v=638258151226739077);
}

/* ----------------------------------------------------------------------------
Home
---------------------------------------------------------------------------- */

.section-home-masthead {
	background-image: url(/mobile/content/img/masthead-bg@2x.jpg?v=638258151226689131);
}

.site-content .loader {
	background-image: url(/mobile/content/img/ajax_loader@2x.gif?v=638258151226629073);
}


