/* 
  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 "Times New Roman", Times, 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 { 
  color: #000; 
}


select, input, textarea {
/*	background-color:#2a2a30;
	border:1px solid #5b5b5b;*/
	background-color:#FFF;
	border:1px solid #CCC;
	color:#000;
}
/* 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: #444; }
a:hover { color: #444; }


footer a, a:active, footer a:visited { color: #fff; }
footer a:hover { color: #fff; }

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 
   Also: hot pink. */
::-moz-selection{ background: #009ddc; color:#fff; text-shadow: none; }
::selection { background:#009ddc; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #009ddc; } 

/* 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: 
 */


body {
	background:url(../graphics/bg.jpg) top left repeat-x;
}

#container, #headWrap, #footerWrap {
	position:relative;
	width:100%;

}
#headWrap {
	background:url(../graphics/navbg.jpg) bottom center no-repeat;
	height:252px;
}

#footerWrap {
	background:#3144a3 url(../graphics/footer-bg.jpg) top left repeat-x;

}
#inner {
	padding:0 0px 10px 0px;
	height:auto;
	width:1000px;
	position:relative;
	margin:0 auto;
	background-color:#FFF;
}
.inner {
	padding:10px;
}
#bg-tile {
	float:left;
	width:20px;
	height:19px;
}

header {
	margin:0 auto;
	width:1000px;
	height:150px;
	/*background:url(../graphics/header.jpg) top left no-repeat;*/
}

header #headerLink {
	width:980px;
	height:130px;
	display:block;
	margin-top:30px;
	float:left;
	background:url(../graphics/logo.jpg) top left no-repeat;
}

header #headerLink span {
	display:none;
}
	

nav {
	position:relative;
	width:992px;
	height:40px;
/*	background:url(../graphics/nav-bg.jpg) top left no-repeat;*/
	padding:10px;
	margin:0 auto;
}

#socialMedia {
position:relative;
width:982px;
padding:9px 15px 3px 15px;
height:28px;
margin:0 auto;
overflow:hidden;
}

#socialMedia #facebook{
	width:450px;
	height:30px;
	float:left;
	margin-right:10px;
}

#socialMedia #twitter{
	width:110px;
	height:30px;
	float:left;
	margin-right:10px;	
}


#socialRight {
	width:160px;
	padding:3px 0 0 5px;
	float:left;
}

p {
	
	margin:2px 0 6px 0;
/*h1, h2, h3 { font-family: 'Anonymous Pro', arial, serif; }*/

}
h1,h2 {
	font-size:17px;
	margin:2px 0 10px 5px;
	 font-family: 'Droid Serif', arial, serif;
}

h1 {
	border-bottom:1px dashed #999;
}
#header005 {
	float:left;
	width:36px;
	height:4px;
}

#nav-bg006 {
	float:left;
	width:2px;
	height:6px;
}

#hero {
	float:left;
	width:1000px;
	height:400px;
	position: relative;
	clear: both;
	overflow:hidden;
	padding: 0;
}

#headline {
	float:left;
	width:652px;
	height:147px;
}

#openingx20hours {
	float:left;
	width:260px;
	height:147px;
}

#home-finance {	

	float:left;
	width:268px;
	height:172px;
	padding-top:4px;

}

#home-managers {
	float:left;
	width:644px;
	height:176px;
	background:url(../graphics/managers-special-bg.gif) bottom left no-repeat;
}

.managersSP {
	float:left;
	width:180px;
	height:156px;
	margin:0 10px 0 0;
	padding:10px;
	color:#FFF;
	font-size:14px;
	line-height:160%;
	overflow:hidden;
	
}


#adDetail {
	height:71px;

	width:170px;
	padding:85px 10px 0 20px;
	font-size:16px;
	font-weight:900;
	
	
}

#managersImg, .latestNews {
	border:2px solid #009ddc;
	width:160px;
	height:120px;
	display:block;
	margin:15px 0 0 0;
	
}
#adDetail span {
	color:#009ddc;
}

#home-latest {
	float:left;
	width:1000px;
	height:120px;
	margin: 6px 0;
}


#banner-latest-cars {
	width:268px;
	height:43px;
	position:absolute;
	left:737px;
	top:846px;
	text-align:right;
}






#txtPostcodeA, #txtPostcodeB {
	width:40px;
	float:left;
	display:inlide;
	margin-left:5px;
}




.homeBtmWrap {
	width:210px;
	height:300px;
	float:left;
/*	margin-top:6px;*/
	padding:0 18px;
	border-right:1px solid #000;
	
}
.homeBtmImg {
	width:210px;
	height:120px;
}
.homeBtmTxt {
	width:210px;
	margin-top:10px;
}

.homeBtmTxt h3 {
	font-size:17px;
}

.homeBtmTxt {
	line-height:20px;
	
}

.homeBtmWrap.last {
	border:none !important;

}
.homeBtmWrap.first {
	margin-left:7px !important;
}

#home-heros {
	width:1000px;
	float:left;
	clear:both;
	background:url(../graphics/home-fader.jpg) top left no-repeat;
}
footer {
	width:960px;
	min-height:275px;
	position:relative;
	margin:0 auto;
	padding:10px;
	color:#FFF;
}


#footer-links {
	float:left;
	width:500px;
	margin-top:8px;
	margin-left:20px;
	height:40px;
	
	}

#footer-spidersnet {
	float:right;
	width:400px;
	margin-top:8px;
	text-align:right;
	padding-right:20px;
	height:40px;
	}
	
	
#footer-top {
	width:190px;
	float:left;

}

#footer-sitemap {
		width:260px;
	float:left;
}

#footer-contact {
	width:400px;
	float:left;
}
	
		#footer-form {
		width:340px;
		float:left;
		padding-left:140px;

		margin:11px 0 0 10px;
		background:url(../graphics/footer-contact.jpg) bottom left no-repeat;

		
	}
	
	
	#footer-form .button {
		float:right;
	}
		#footer-form  label{
			float:left;
			width:140px;
			padding:5px;
			text-align:right;
			color:#FFF;
		}
		
		#footer-form  input {
			width:181px;
			margin:0 0 5px 0;
			background-color:#fff;
			color:#000;
			border:1px solid #000;
		}
		
		
		#footer-form  textarea {
			width:178px;
			margin:0 0 5px 0;
			background-color:#fff;
			color:#000;
			border:1px solid #000;
		}
		
/*		#footer-form  #submit {
			margin-left:150px !important;
			border:1px solid #000;
			width:183px;
		}
		
		
		#footer-form span {
			width:330px;
			float:left;
			clear:both;
			font-size:16px;
			color:#99fe00;
			font-weight:900;
			text-align:right;
			margin-bottom:10px;
			padding-right:10px;
		}*/
	
#footer-address {
	float:left;
	width:930px;
	margin-top:8px;
	margin-left:20px;
	clear:both;
	
	}

#leftCol {
	float:left;
	width:790px;
	font-family:arial,sans-serif;
}

#rightCol {
		float:right;
	width:190px;
	margin:0 10px 0 10px;
	
}

/*.70pad {
	padding-top:70px !important;
}
*/
#rightCol  ul li {
	list-style:none;
}
#rightCol .rightItem {
	position:relative;
	height:auto;
	width:200px;
	float:left;
	clear:both;
	margin:0 0 50px 0;
}
#rightCol .itemHead {
	width:259px;
	height:45px;
	position:absolute;
	top:-28px;
	right:-59px;
}


a#trans { padding: 3px; -webkit-transition: all 1s linear; }
a#trans:hover { background: #220077; color: #fff; }
#trans-nav { list-style-type: none; height: 40px; padding: 0; margin: 0; }
#trans-nav li { float: left; position: relative; padding: 0; line-height: 40px; }
#trans-nav li:hover { background-position: 0 -40px; }
#trans-nav li a { display: block; padding: 0 15px; color: #fff; text-decoration: none; font-size:16px; font-weight:900; text-shadow: 0px 0px 1px #000000;
filter: dropshadow(color=#000000, offx=0, offy=0); }
#trans-nav li a:hover { color: #009ddc; }

#trans-nav li ul { opacity: 0; position: absolute; left: 0; width: 8em; background:#666; list-style-type: none; padding: 0; margin: 0; }
#trans-nav li:hover ul { opacity: 1; }
#trans-nav li ul li { float: none; position: static; height: 0; line-height: 0; background: none; }
#trans-nav li:hover ul li { height: 30px; line-height: 30px; }
#trans-nav li ul li a { background: #63867f; }
#trans-nav li ul li a:hover { background: #5a8078; }
#trans-nav li { -webkit-transition: all 0.2s; }
#trans-nav li a { -webkit-transition: all 0.5s; }
#trans-nav li ul { -webkit-transition: all 1s; }
#trans-nav li ul li { -webkit-transition: height 0.5s; }

#thesearch {
	width:290px;
	padding:20px 10px 10px 10px;
	height:348px;
	position:absolute;
	left:12px;
	top:11px;
	z-index:500;
	background:url(../graphics/car-search-bg.png) top left no-repeat;
}

#homeSearchType {
	height:225px;
}


#homeSearchType .radio {
	margin:80px 0px 6px 0 ;

	width:70px !important;
	text-align:center;
}

#uniform-typeSearch_1, #uniform-typeSearch_4 {
	margin-left:40px !important;
}

#uniform-typeSearch_2, #uniform-typeSearch_5 {
	margin-left:24px !important;	
}


#homeSearchType .checkFix {
	width:70px !important;
	float:left;
	display:inline-block;
	overflow:hidden;
}


#homeSearchBtm {
	padding:18px 0 0 0;
	position:relative;
}

#resultCount {
	width:70px;
	position:absolute;
	height:41px;
	left:205px;
	top:20px;
	font-size:30px;
	padding-top:10px;
	color:#FFF;
	text-align:center;
	
}

#search-go .button {
	margin-top:5px !important;
	width:100px;
}
#makemodel {
	position:relative;
	width:200px;
	float:left;
	clear:both;
	padding-bottom:40px;
}

ul#makesinstock, ul#makesinstock ul {
	margin:0;
	width:200px;
	list-style:none;
	margin-top:10px;


}

#makesinstock  li a
{
	padding:2px 5px 4px 5px;
	width:190px;
	display:block;
	text-align:left;
	background-color:#009ddc ;
	color:#FFF;
	
	margin:0 0 2px 0;
	text-decoration:none;
}
 #makesinstock  li a:hover
{
	
	background-color:#606060;
	color:#000;
}

 #makesinstock  .leftModel a {
	background:#606060 url(../graphics/arrow.png) top left no-repeat;
	color:#fff;	
	padding:2px 5px 4px 20px;
	width:175px;
}

#makesinstock  .leftModel a:hover {
	background-color:#009ddc;
	color:#FFF;	
}


#pricesearch .search {
	margin:3px 0 5px 3px;
	color:#444;
	
}

#pricesearch input, #pricesearch select {
	width:200x;
	margin:3px 0 0 3px;
	float:left;
	clear:both;
}


#thesearch input, #thesearch select{
	width:200px;
/*	background:#0065a4;
	border:1px solid #0065a4;*/
	clear:both;
	margin-bottom:6px;
	float: left;
}

#thesearch input[type="checkbox"] {
	width:18px;
	
	display:inline;
	height:16px;
	margin-right:5px;
	float:left !important;
	top: -1px;
    *overflow: hidden;

}
#thesearch label {
	width:65px;
	display:inline-block;
	float:left;
	height:16px;
}

/*.checkFix {
	width:99px;
	float:left;
	display:inline;
}
*/

.error {
	color:#F00;
}

/*finance page styles*/
	/* 2 col layout pages only */
	#cola {
	width:160px;
	float:left;
	margin-right:10px;
	margin-left:10px;
	}
	
	#colb {
	width:710px;
	float:left;
	margin-right:10px;
	padding-top:20px;
	}
	
	.slide-show {
	width:690px;
	height:180px;
	float:left;
	clear:both;
	margin-bottom:10px;
	margin-left:30px;
	background:url(/graphics/slide-show-bg.gif) top center no-repeat;
	padding:10px;
	}
	
		.slide-show p{
		margin:0;
		padding:0;
		}
/*Contact Us*/

#contact-left {
	float:left;
	width:680px;
	border-right:1px solid #ded6d4;
	margin-top: 10px;
	}
#contact-left h3 {
	margin:10px 0;
	
}
#contact-right {
	float:left;
	width:250px;
	margin-left:30px;
	margin-top: 10px;
	}
	
#contact-phone {
	font-size:20px;
	font-weight:bold;
	color:#02a6e5;
	}
	
.border-bottom {
	border-bottom:1px dashed #c7c7c7;
	padding-bottom:10px;
	}

#social-networking {
	float:left;
	width:250px;
	height:40px;
	}

#contact-facebook {
	float:left;
	height:20px;
	padding:18px 0 0 45px;
	background:url(/graphics/facebook-grey.gif) left center no-repeat;
	color:#000000;
	}

#contact-blog {
	float:left;
	height:20px;
	margin-left:20px;
	padding:18px 0 0 45px;
	background:url(/graphics/blog-grey.gif) left center no-repeat;
	color:#000000;
	}

#contact-facebook:hover {
	text-decoration:none;
	background:url(/graphics/facebook.gif) left center no-repeat;
	}
	
#contact-blog:hover {
	text-decoration:none;
	background:url(/graphics/blog.gif) left center no-repeat;
	}

#googlemap {
	float:left;
	width:660px;
	height:570px;
	border:6px solid #f1efee;
	margin-left:10px;
	-moz-box-shadow: 0px 0px 4px #000;
	-webkit-box-shadow: 0px 0px 4px #000;
	box-shadow: 0px 0px 4px #000;
	}

.currentday {
	color:#02a6e5;
	}
	
	#alertintro {
	float:right;
	width:300px;
	margin-left:10px;
}

#alertbox {
	float:left;
	width:320px;
}
	
	
	
/* =-=-=-=-=-=-=-[makes]-=-=-=-=-=-=-=- */
#makesin {
	list-style: none;
	margin: 0;
	padding: 0;
	}	

	
#makesin li a {
 
  	voice-family: "\"}\""; 
  	voice-family: inherit;
	text-decoration: none;
			display: block;
	padding: 4px 0 4px 10px;
	height:14px;
	margin-bottom:1px;
	background-color:#2969D3;
	border:1px solid #2969D3;
	color:#FFFFFF;
	
	}
		
#makesin li a:hover {
background-color:#FFFFFF;
border:#2969D3 1px solid;
color:#2969D3;
	}
	
	/* blue candy (inspired by Apple iOS buttons)
*******************************************************************************/
.blue-candy {
  background: #2260dd;
  background: -moz-linear-gradient(top, #779be9 0%, #376fe0 50%, #2260dd 50%, #2463de 100%);
  background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #779be9), color-stop(0.5, #376fe0), color-stop(0.5, #2260dd), color-stop(1, #2463de));
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-family: "helvetica neue", helvetica, arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 0 12px 0;
  text-align: center;
  text-shadow: 0px -1px 1px #2c4d93;
  width: 150px;
  -webkit-background-clip: padding-box;
  text-decoration:none;
  display:block;
  margin-left:30px;
  color:#FFF !important;
}

.blue-candy:hover {
  background: #1d55c4;
  background: -moz-linear-gradient(top, #6989cf 0%, #3263c7 50%, #1d55c4 50%, #1d55c4 100%);
  background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #6989cf), color-stop(0.5, #3263c7), color-stop(0.5, #1d55c4), color-stop(1, #1d55c4));
  -webkit-background-clip: padding-box;
  cursor: pointer;
   color:#FFF !important;
}

.blue-candy:active {
  background: #1a4aab;
  background: -moz-radial-gradient(50% 31% 0deg,circle cover, rgba(38, 76, 153, 0.4), rgba(11, 23, 46, 0.4)),
              -moz-linear-gradient(top, #5c78b5 0%, #2b57ad 50%, #1a4aab 50%, #1b4bab 100%);
  background: -webkit-gradient(radial, 50% 20%, 75, 50% 50%, 0, from(rgba(38, 76, 153, 0.4)), to(rgba(11, 23, 46, 0.4))),
              -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #5c78b5), color-stop(0.5, #2b57ad), color-stop(0.5, #1a4aab), color-stop(1, #1b4bab));
  color: #ddd;
  -webkit-background-clip: padding-box;
}

#makesheader {
	background-color::#051467 !important;
}

/*
 * 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; }
}

#captcha { float:left; width:174px; border:1px solid #000; background-color:#fff; padding:5px; color:#000; text-align:center; margin:0 0 8px 150px; }
#captcha a { color:#000; }
#captcha input, #captchacode { float:left; width:165px; } !important
