/* ----- RESET -------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
	v2.0b1 | 201101
	NOTE:WORK IN PROGRESS
	USE WITH CAUTION AND TEST WITH ABANDON */

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,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary,
time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}
/* 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;
}
/* remember to define visible focus styles!
:focus{
	outline:?????;
} */

/* remember to highlight inserts somehow! */
ins {
	text-decoration:none;
}
del {
	text-decoration:line-through;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* ----- GLOBAL ------------------------------------------------------- */

body {
	background: #E6E6E6;
	font-family: Arial, Helvetica, sans-serif;
}

h1, .main-content .column1 h2 {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #888;
	color: #222;
}

h1 {
	font-size: 24px;
	font-weight: bold;
}

h2 {
	font-size: 20px;
	font-weight: bold;
}

h3 {
	margin-bottom: 10px;
	color: #222;
	font-size: 13px;
	font-weight: bold;
}

h3 a {
	color: #222; 
	text-decoration: none;
}

h3 a:hover {
	color: #222; 
	text-decoration: underline;
}

p, p a, label, .content ul, .content ol {
	color: #222;
	font-size: 11px;
	line-height: 13.5px;
}

p, .content ul, .content ol {
	margin-bottom: 10px; 
}

p a:hover {
	text-decoration: none;
}

input[type=text], input[type=password], select {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	color: #222;
	font-size: 11px;
}

input[type=submit], .button-link {
	padding: 1px 5px 1px 45px;
	background: #FDD500;
	border: none;
	color: #111;
	cursor: pointer;
	font-size: 12px;
	text-align: right;
	text-decoration: none;
}

.form-row {
	width: 390px;
	margin-bottom: 10px;
	overflow: hidden;
}

.button-row {
	text-align: right;
}

fieldset {
	margin-left: 10px;
}

legend {
	margin-bottom: 5px;
	color: #222;
	font-size: 13px;
}

.form-row label {
	position: relative;
	top: 4px;	
	float: left;
	width: 155px;
}

.form-row input[type=text], .form-row input[type=password], .form-row select, .form-row textarea {
	float: left;
	width: 220px;
	margin-left: 10px;
}

.form-row input.date {
	width: 68px;
}

.form-row textarea {
	width: 215px;
}

.form-row .input-group label {
	display: inline;
	float: none;
	width: auto;
	margin-left: 15px;
}

.form-row .input-group input {
	display: inline;
	float: none;
	margin-left: 5px;
}

.date {
	font-size: 10px;
	font-weight: normal;
}

/* ----- Date Input ----- */

/* calendar root element */
#calroot {
	/* place on top of other elements. set a higher value if nessessary */
	z-index:10000;
	
	margin-top:-1px;
	width:198px;
	padding:2px;
	background-color:#fff;
	font-size:11px;
	border:1px solid #ccc;
	
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); 
}

/* head. contains title, prev/next month controls and possible month/year selectors */
#calhead {	
	padding :2px 0;
	height: 22px;
	margin-bottom: 4px;
	background-color: #FCD603; 
} 

#caltitle {
	font-size:14px;
	color: #222; 
	float:left;
	text-align:center;
	width:155px;
	line-height:20px;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8)
}

#calnext, #calprev {
	display:block;
	width:20px;
	height:18px;
	background: transparent url(../images/calendar-controls.png) 50% 3px no-repeat;
	float:left;
	cursor:pointer;
}

#calnext {
	background-position: 50% -18px;
	float:right;
}

#calprev.caldisabled, #calnext.caldisabled {
	visibility:hidden;	
}

/* year/month selector */
#caltitle select {
	font-size:10px; 
}

/* names of the days */
#caldays {
	height:14px;
	border-bottom:1px solid #ddd;
}

#caldays span {
	display:block;
	float:left;
	width:28px;
	text-align:center;
}

/* container for weeks */
#calweeks {
	background-color:#fff;
	margin-top:4px;
}

/* single week */
.calweek {
	clear:left;
	height:22px;
}

/* single day */
.calweek a {
	display:block;
	float:left;
	width:27px;
	height:20px;
	text-decoration:none;
	font-size:11px;
	margin-left:1px;
	text-align:center;
	line-height:20px;
	color:#666;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
} 

/* different states */
.calweek a:hover, .calfocus {
	background-color:#ddd;
}

/* sunday */
a.calsun {
	color:red;	
}

/* offmonth day */
a.caloff {
	color:#ccc;	
}

a.caloff:hover {
	background-color:rgb(245, 245, 250);	
}


/* unselecteble day */
a.caldisabled {
	background-color:#efefef !important;
	color:#ccc	!important;
	cursor:default;
}

/* current day */
#calcurrent {
	background-color: #FCD603;
}

/* today */
#caltoday {
	background-color:#333;
	color:#fff;
}

.wrapper {
	width: 970px;
	margin: 0 auto 25px auto;
	padding: 0 15px 30px 15px;
	background: #f8f8f8;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ---- Header ----- */

#header {
	position: relative;
	height: 125px;
}

#logo {
	position: absolute;
	left: 10px;
	top: 0px;
	z-index: 200;
}

#book-online {
	position: absolute;
	right: 340px;
	top: 10px;	
	display: block;
	width: 209px;
	height: 58px;
	overflow: hidden;
	text-indent: -9999px;
	background: #FBD503 url(../images/book-online.png) left top no-repeat;
}

/* Yellow text on a white background? Seriously?? */
#header-contact {
	position: absolute;
	right: 20px;
	top: 10px;
	height: 44px;
	padding-top: 14px;
	background: transparent url(../images/faux-border.png) 40px 0px repeat-y;
	color: #333;
	font-size: 14px; 
}

#header-contact a {
	color: #333;
	text-decoration: none;
}

#header-contact a:hover {
	text-decoration: underline;
}

#header-contact .label {
	display: inline-block;
	width: 35px;
	margin-right: 8px;
	text-align: right;
}

#main-navigation {
	position: absolute;
	right: 15px;
	bottom: 15px;
	max-width: 790px;
}

#main-navigation li {
	float: left;
	height: 19px;
	padding: 0 3px;
	border-left: 1px solid #acacac;
}

#main-navigation li:first-child {
	border: none;
}

#main-navigation a {
	padding: 0 12px;
	color: #2C2A2A;
	font-size: 12px;
	line-height: 19px; 
	text-decoration: none;
}

#main-navigation a:hover {
	background: #E8E8E8;
}

#main-navigation .current a {
	background: #FED501;
}

/* ----- Footer ----- */

#footer {
	width: 970px;
	margin: 5px auto 10px auto;
	color: #999;
	font-size: 10px;
	line-height: 13px;
	overflow: hidden;
}

#priority-express-link {
	float: left;
}

#fanatic-link {
	float: right;
}

#footer a {
	color: #777;
	font-weight: bold;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;	
}

#twitter-link {
	float: left;
	width: 300px;
}

#follow-button {
	top: 4px;
	white-space: normal;
}

.btn, .hcount .count-o {
	-moz-box-sizing: border-box;
	height: 20px;
	max-width: 100%;
}

.btn {
	-moz-user-select: none;
	background: #f8f8f8;
	background: -moz-linear-gradient(top,  #ffffff 0%, #dedede 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dedede));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#dedede 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#dedede 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#dedede 100%);
	background: linear-gradient(top,  #ffffff 0%,#dedede 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dedede',GradientType=0 );

	border: 1px solid #CCCCCC;
	border-radius: 3px 3px 3px 3px;
	color: #333333;
	cursor: pointer;

	overflow: hidden;
	position: relative;
	padding: 3px 5px 3px 19px;    
	font-weight: bold;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);    
}

.btn:focus, .btn:hover, .btn:active {
	background: #f1f1f1;
	background: -moz-linear-gradient(top,  #f8f8f8 0%, #d9d9d9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#d9d9d9));
	background: -webkit-linear-gradient(top,  #f8f8f8 0%,#d9d9d9 100%);
	background: -o-linear-gradient(top,  #f8f8f8 0%,#d9d9d9 100%);
	background: -ms-linear-gradient(top,  #f8f8f8 0%,#d9d9d9 100%);
	background: linear-gradient(top,  #f8f8f8 0%,#d9d9d9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#d9d9d9',GradientType=0 );

	border-color: #BBBBBB;
	box-shadow: none;
}

.btn:active {
	background-color: #EFEFEF;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1) inset;
}

.btn i {
	background: url(../images/icon-twitter.png) no-repeat scroll 0 0 transparent;
	height: 12px;
	left: 2px;
	margin-top: -6px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* ----- Banner / Slideshow ----- */

.banner {
	width: 968px; 
	height: 190px;
	margin-bottom: 20px;
	overflow: hidden;
}

#slideshow {
	height: 407px;
}

.nivoSlider {
	position:relative;
	 background:#fff url(../images/loading.gif) no-repeat 50% 50%; 
}

.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display: none;
}

.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}

.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}

.nivo-controlNav {
	position: absolute;
	right: 15px;
	top: 10px;
	z-index: 300;
}

a.nivo-control {
	display: block;
	float: left;
	width: 12px;
	height: 13px;
	margin-left: 8px;
	cursor: pointer;
	overflow: hidden;
	text-indent: -9999px;
	background: transparent url(../images/carousel-controls.png) 0px 0px no-repeat;
}

a.nivo-control.active {
	background-position: -25px 0px;
}

/* ----- Main Content ----- */

.main-content {
	min-height: 300px;
	overflow: hidden;

}

.main-content.two-column	.column1 {
	float: left;
/*	width: 490px;*/
	width: 500px;
}

.main-content.two-column .column2 {
	float: right;
	width: 425px;
}

.content ul {
	margin-left: 20px;
	list-style-type: disc;
}

.content ol {
	margin-left: 20px;
	list-style-type: decimal;
}

.more-link, .back-link {
	color: #222;
	font-size: 11px;
	text-decoration: none;
	text-transform: lowercase;
}

.more-link {
	float: right;
}

.more-link:after {
	content: " >";
}

.back-link:before {
	content: "< ";
}

.more-link:hover, .back-link:hover {
	text-decoration: underline;
}

.header-strip {
	height: 35px;
	margin-bottom: 10px;
	border-top: 1px solid #8f8f8f;
	border-bottom: 1px solid #8f8f8f; 
	overflow: hidden;
}

.header-strip h1 {
	float: left;
	margin: 0;
	border: none;
	font-size: 20px;
	font-weight: bold;
	line-height: 35px;
}

.footer-strip {
	clear: both;
	margin: 30px 0 15px 0;
	padding-top: 7px;
	padding-bottom: 7px;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #8f8f8f;
	overflow: hidden;
}

.header-strip .pager, .footer-strip .pager {
	float: right;
	margin-bottom: 0px;
}

.header-strip .pager li {
	line-height: 35px; 
}

.pager li {
	display: inline;
	border-left: 1px solid #b6b6b6;
	font-size: 12px;
}

.pager .first, .pager .previous, .pager .next {
	border-left: none;
}

.pager .previous {
	margin-right: 25px;
}

.pager .next {
	margin-left: 25px;
}

.pager a {
padding: 0 3px;
	color: #222;
	text-decoration: none;
}

.pager a:hover {
	text-decoration: underline;
}

.pager .current a {
	font-weight: bold;
}

.pager .current a:hover {
	text-decoration: none;
 }

/* ----- Sub-navigation ----- */

#sub-navigation {
	float: left;
	width: 200px;
}

#sub-navigation h2 {
	margin-bottom: 5px;
	font-size: 16px;
}

#sub-navigation li {
	padding: 3px 0;
	border-bottom: 1px solid #d7d7d7;
}

#sub-navigation a {
	display: block;
	padding: 2px 6px;
	color: #222;
	font-size: 12px;
	text-decoration: none;
}

#sub-navigation a:hover, #sub-navigation .current a {
	background: #FBD503;
}

#sub-navigation .current a {
	font-weight: 500;
}

.column1 {
	float: right;
	width: 730px;
}

/* ----- HOMEPAGE ------------------------------------------------ */

.nugget {
	position: relative;
	margin-bottom: 10px;
	padding: 10px 0;
	overflow: hidden;
}

.nugget h2 {
	width: 160px;
	height: 25px;
	margin-bottom: 15px;
	padding: 0 10px 0 0;
	background: #FED500;
	color: #222;
	font-size: 18px;
	font-weight: bold;
	line-height: 25px;
	text-align: right;
}

.nugget p {
	margin-left: 15px;
	color: #222;
	font-size: 11px;
}

.nugget .more-link {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

#nugget-delivery, #nugget-delivery-small {
	height: 245px;
	background: #eee url(../images/delivery-zone.png) 195px 15px no-repeat;
	border: 1px solid #d8d8d8;
}

#nugget-delivery-small {
	height: 80px;
	background-position: 221px -33px;
}

#nugget-delivery .text-column {
	width: 170px;
}

#nugget-delivery-small .text-column {
	width: 215px;
}

#nugget-delivery-small .more-link {
	position: static;
}

/*
#nugget-delivery img {
	float: right;
	margin: 10px 15px 0 0;
}
*/
#nugget-profiles, #nugget-profiles-small {
	height: 140px;
	background: #2E2E30 url(../images/rider-profiles-bg.jpg) left top no-repeat;
}

#nugget-profiles-small {
	height: 80px;
}

#nugget-profiles .more-link, #nugget-profiles-small .more-link {
	color: #FED500;
}

#video-wrapper {
	position: relative;
	width: 425px;
	height: 320px;
	background: #1D1D1D;
}

#video-wrapper .overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 425px;
	height: 320px;
	cursor: pointer;
	background: transparent url(../images/video-overlay.png) center center no-repeat;
}

#nugget-videos iframe {
	margin-bottom: 5px;
}

#nugget-videos h2 {
	margin-bottom: 10px;
}

#nugget-videos .footer-strip {
	margin-top: 0px;
}

#newsletter-sign-up label {
	margin-left: 15px;
}

#newsletter-sign-up input[type=text] {
	width: 215px;
}

/* ----- NEWS / BLOG --------------------------------------------- */

/* ----- News / Blog / Vacancy Listing ----- */

.listing-item{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #d9d9d9;
	overflow: hidden;
}

.listing-item .thumbnail {
	float: left;
	width: 145px;
	margin: 0 15px 0 15px;
}

/* ----- Individual News / Blog item ----- */

#news-story-image {
	float: left;
	width: 270px;
	margin: 0 15px 10px 10px;
}

/* ----- RIDER PROFILES ------------------------------------------ */

/* ----- Rider Listing ----- */

.listing-row {
	clear: both;
}

.rider {
	float: left;
	width: 210px;
	margin: 0 15px 10px 15px;
	padding-bottom: 10px;
	color: #222;
	border: 1px solid #d3d3d3;
}

.rider img {
	display: block;
	margin: 5px auto 10px auto;
	border: 1px solid #222;
	border-radius: 2px;
}

.rider .name {
	float: left;
	margin-left: 8px;
}

.rider .more-link {
	margin: 5px 8px 0 0;
}

/* ----- Rider Profile ----- */

#rider-photo {
	float: left;
	width: 360px;
	margin: 0 0 50px 15px;
	padding-bottom: 10px;
	color: #222;
	border: 1px solid #d3d3d3; 
}

#rider-photo img {
	display: block;
	margin: 8px auto 10px auto;
	border: 1px solid #222;
	border-radius: 2px;
}

#rider-photo .name {
	margin-right: 12px;
	font-size: 16px;
text-align: right;
}

#rider-biography {
	float: right;
	width: 340px;
}

#rider-biography h2 {
	margin-bottom: 10px;;
	padding: 0px;
	border: none;
	font-size: 16px;
}

.timestamp {
	position: relative;
	top: -5px;
	color: #888;
	font-size: 11px;
}

/* ----- VACANCIES ----------------------------------------------- */

.job-info {
	font-size: 12px;
}

.job-info .salary, .job-info .date {
	font-size: 10px;
	font-weight: normal;
}

.vacancy-footer {
	text-align: right;
}

.vacancy-footer .date {
	margin-right: 10px;
	color: #222;
	font-size: 12px;
}

.no-vacancies {
	width: 100%;
}

.no-vacancies label {
	width: 70px;
}

.no-vacancies input[type=submit] {
	margin-left: 10px;
}

/* ----- APPLICATION FORM ---------------------------------------- */

#application fieldset {
	float: left;
	width: 355px;
	margin: 0 50px 0 10px;
}

select.title {
	width: 55px;
}

/* ----- CONTACT ------------------------------------------------- */

#contact-details {
	float: left;
	width: 180px;
}

#contact-details h2 {
	font-size: 12px;
}

#contact-form {
	float: right;
	width: 315px;
}

#contact-form .form-row {
	width: 315px;
}

#contact-form label {
	width: 80px;
}

#contact-form .checkbox-row label {
	width: 290px;
	text-align: right;
}

#contact-form .checkbox-row input[type=checkbox] {
	float: right;
}

/* ----- LANDING PAGE ------------------------------------------------- */

#landing-page #header {
	height: 40px;
}

#landing-banner {
	height: 200px;
	background-image: url(../example-content/landing-page-banner.jpg);
}

#landing-page .main-content {
	min-height: 50px;
	margin-bottom: 20px;
}

#choose-city p {
	font-size: 14px;
}

#choose-city .button-link {
	display: inline-block;
	margin-right: 22px;
	padding: 6px 8px 6px 65px;
	font-size: 16px;
	font-weight: bold;
}

#landing-page .main-content.two-column .column1, #landing-page .main-content.two-column .column2 {
    width: 470px;
}

#landing-page .sub-content > div {
	width: 450px !important;
	padding: 0 10px;
	background: #EBEBEB;
}

#landing-page .sub-header {
	position: relative;
    width: 470px;	
	height: 204px;
	margin-left: -10px;
	margin-bottom: 15px;
	background: transparent left top no-repeat;
}

#landing-page .sub-header .logo {
	margin-left: 30px;
}

#landing-page .sub-content h1, #landing-page .sub-content h2 {
	border-bottom: 1px solid #888888;
	color: #222222;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#landing-page .sub-content h2 {
	font-size: 20px;
	font-weight: bold;
}

#landing-page .listing-item {
	margin-bottom: 0px;
	border-bottom: none;
}

#landing-page .footer-strip {
	margin-top: 0px;
}

#landing-page .sub-footer {
	margin-bottom: 20px;
	text-align: right;
}

.twitter-link {
	float: right;
	margin-top: -41px;
	padding-left: 25px;
	color: #222;
	font-size: 11px;

	line-height: 20px;
	background: transparent url(../images/icons-social-media.png) -25px 0px no-repeat;
}

#tweets-bristol li,
#tweets-cardiff li {
	color: #222;
	font-size: 11px;
	line-height: 13.5px;
	overflow: hidden;
}

.tweet_avatar {
	float: left;
	margin-right: 10px;
	text-decoration: none;
}

.tweet_avatar img {
	border: 3px solid #CFCFCF;
	border-radius: 2px;
}

.tweet_time {
	display: block;
	color: #222;
	font-size: 11px;
	font-style: italic;
}

.tweet_time a, .tweet_text a {
	color: #222;
}

.tweet_time, .tweet_text {
	display: block;
	float: right;
	width: 375px;
}

#bristol-news .listing-item,
#cardiff-news .listing-item {
	min-height: 60px;
}