/**********
Note - hacks
The html is using conditional comments to add a class of ie6 or ie7 for those browsers meaning hacks will be in the same file, right underneath the selector that's being changed. eg
#content { width 500px }
.ie6 #content { width: 550px; }
**********/
/* Contents 

html tags
basic classes
easy clearing
layout
right nav
headings
content
footer

home
contact
news
heading 2s - in VAG
*/

/* CSS reset */
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, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
/* remember to define focus styles! */
:focus { outline: 0; }
body { line-height: 1; color: black; background: white; text-align: left; }
/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* html tags */
body {
	font-family: Helvetica, arial, sans-serif;
	font-size: 76%;
	color: #555;
	background: #f5f5f4 url(../i/bg.gif) repeat-x 0 0 scroll;
}
h1,h2,h3,h4,h5,h6 { margin: 0 0 0.5em 0; font-weight: bold; }
h1 {
	font-size: 1em;
	margin: 0;
	padding: 0;
	text-indent: -999em;
}
h2 {
	font-size: 1.4em;
	color: #949494;
	margin: 0 0 0.75em 0;
	font-family: "VAG Rounded", VAGRounded, VAG, Helvetica, arial, sans-serif;
}
h3 {
	font-size: 1.3em;
	color: #555;
	font-family: "VAG Rounded", VAGRounded, VAG, Helvetica, arial, sans-serif;
}
h4 {
	font-size: 1.2em;
	color: #555;
}
h5 {
	font-size: 1.1em;
	color: #555;
}
h6 {
	font-size: 1.0em;
	color: #555;
}
p, pre {
	margin: 0 0 1em 0;
	color: #555;
	line-height: 1.4em;
}
p.small { font-size: 10px; line-height: 16px; margin: 0.5em 0 1em 0; }
pre {
	font-family: "Courier New", Courier, monospace;
}
blockquote {
	margin: 0 0 1em 0;
	padding: 0 0 10px 0;
	background: #949496 url(../i/testimonial-bottom.gif) no-repeat bottom left scroll;
	clear: both;
}
blockquote p {
	color: #fff;
	padding: 0 10px;
}
blockquote h3 {
	background: #949496 url(../i/testimonial-top.gif) no-repeat top left scroll;	
	height: 26px;
	text-indent: -9999em;
}
blockquote.home {
	background: #949496 url(../i/homequote-bottom.gif) no-repeat bottom left scroll;
	clear: both;
}
blockquote.home p {
	margin: 0;
	padding: 10px;
	background: #949496 url(../i/homequote-top.gif) no-repeat top left scroll;	
}

a:link {
	color: #359ed9;
	text-decoration: none;
	border-bottom: 1px solid #359ed9;
}
a:visited {
	color: #06c;
	text-decoration: none; 
	border-bottom: 1px solid #06c;
}
a:hover { 
	color: #f90;
	text-decoration: none;
	border-bottom: 1px solid #f90;
}
a:active {
	color: #359ed9;
	text-decoration: none;
	border-bottom: 1px solid #359ed9;
}
ul, ol {
	margin: 0 0 0 20px;
	padding: 0;
}
li {
	margin: 0;
	padding: 0 0 0.5em 0;
	line-height: 1.4em;
	color: #555;
}
form { margin: 0; padding: 0; }
strong { font-weight: bold; }
img, a img { border: none; }
a:link img, a:visited img, a:hover img, a:active img { border-bottom: none; }
table, tr, th, td { margin: 0; padding: 0; border: none; font-size: 1em; }
table { border: 1px solid #ccc; }
th { font-size: 1.1em; }
th, td { padding: 0.2em; border: 1px solid #ccc; text-align: center; }
acronym, abbr { border-bottom: 1px dotted #333; }
sup { line-height: 0; } /* hacked in ie6 */
/* basic classes */
.clear { clear: both; }
.clearleft { clear: left; }
.clearright { clear: right; }
.left { float: left; }
.right { float: right; }
.imgleft {
	float: left;
	padding: 0 10px 10px 0;
}
.imgright {
	float: right;
	padding: 0 0 10px 10px;
}
.push0 { margin-bottom: 0; }
.push1 { margin-bottom: 1em; }
.push2 { margin-bottom: 2em; }
.push3 { margin-bottom: 3em; }
.top0 { margin-top: 0; }
.top1 { margin-top: 1em; }
.top2 { margin-top: 2em; }
.top3 { margin-top: 3em; }
.skip {
	position: absolute;
	left: -1000px;
	width: 990px;
	height: 20px;
	margin-bottom: -20px;
}
/* easy clearing */
/* float clearing for IE6 */
* html .clearfix,
* html .twocol,
* html div.news,
* html #footer, 
* html #inner
{
 height: 1%;
 overflow: visible;
}
/* float clearing for IE7 */
*+html .clearfix, 
*+html .twocol, 
*+html div.news, 
*+html #footer, 
*+html #inner
{
 min-height: 1%;
}
/* float clearing for everyone else */
.clearfix:after, 
.twocol:after, 
div.news:after, 
#footer:after, 
#inner:after
{
 clear: both;
 content: ".";
 display: block;
 height: 0;
 visibility: hidden;
}
/* Float Clearing - End */

/* layout */
#container {
	width: 940px;
	margin: 40px auto;
}
#top {
	background: transparent url(../i/bg_top.gif) no-repeat 0 0 scroll;
	padding: 21px 0 0 0;
}
#inner {
	/* easy cleared */
	padding: 0 21px;	
	background: transparent url(../i/bg_middle.gif) repeat-y 0 0 scroll;	
}
#content {
	width: 767px;
	float: left;
}
#nav {
	width: 101px;
	float: right;
}
#footer {
	/* easycleared */
	background: transparent url(../i/bg_bottom.gif) no-repeat 0 0 scroll;
	padding: 30px 0 0 0;
}
/* right nav */
#logo {
	width: 89px;
	height: 109px;
	margin: 0 auto 10px;
	background: transparent url(../i/logo.gif) no-repeat 0 0 scroll;
}
#phoneno {
	width: 85px;
	height: 10px;
	margin: 0 auto 20px;
	background: transparent url(../i/phoneno.gif) no-repeat 0 0 scroll;
	text-indent: -999em;
}
#nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#nav ul li {
	margin: 0 0 8px 0;
	padding: 0;
	text-indent: -999em;
	width: 101px;
/*	height: 13px;*/
	font-family: "VAG Rounded", VAGRounded, VAG, Helvetica, arial, sans-serif;
}
#nav ul li.snav {
	height: auto;
	margin: 0;
}
/* hack, odd bug on selected with subnav */
.ie7 #nav ul li.snav { margin-top: 12px; }
#nav ul li a {
	margin: 0;
	padding: 0;
	border: none;
	display: block;
	width: 101px;
/*	height: 13px;*/
}

/* nav images */
#nhom { background: transparent url(../i/n_home.gif) no-repeat 0 0 scroll;        }
#nabo { background: transparent url(../i/n_aboutus.gif) no-repeat 0 0 scroll;     }
#npeo { background: transparent url(../i/n_thepeople.gif) no-repeat 0 0 scroll;   }
#ncli { background: transparent url(../i/n_theclients.gif) no-repeat 0 0 scroll;  }
#nser { background: transparent url(../i/n_ourservices.gif) no-repeat 0 0 scroll; }
#nnew { background: transparent url(../i/n_ournews.gif) no-repeat 0 0 scroll;     }
#ncon { background: transparent url(../i/n_contact.gif) no-repeat 0 0 scroll;     }
/* selected nav images */
#nhom.selected { background-image: url(../i/n_home_sel.gif);        }
#nabo.selected { background-image: url(../i/n_aboutus_sel.gif);     }
#npeo.selected { background-image: url(../i/n_thepeople_sel.gif);   }
#ncli.selected { background-image: url(../i/n_theclients_sel.gif);  }
#nser.selected { background-image: url(../i/n_ourservices_sel.gif); }
#nnew.selected { background-image: url(../i/n_ournews_sel.gif);     }
#ncon.selected { background-image: url(../i/n_contact_sel.gif);     }

/* sub nav */
#nav ul li.snav ul {
	margin: 1ex 0;
	padding: 0;
	width: 84px;
}
#nav ul li.snav ul li {
	text-indent: 0;
}
#nav ul li.snav ul li a {
	color: #359ed9;
	width: 84px;
	padding: 0 0 0 17px;
}

/*ul.subnav {
	di
}
id="sncli" class="subnav">*/

/******** headings */
/* note: bottom padding done by adding 20px to height (assuming 248px height) */
h1 {
	width: 767px;
	height: 268px;
}
#homeh1 {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../i/header_people.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#abouth1    { background: transparent url(../i/header_about.jpg) no-repeat 0 0 scroll; }
#peopleh1   { background: transparent url(../i/header_people.jpg) no-repeat 0 0 scroll; }
#clienth1   { background: transparent url(../i/header_client.jpg) no-repeat 0 0 scroll; }
#servicesh1 { background: transparent url(../i/header_services.jpg) no-repeat 0 0 scroll; }
#newsh1     { background: transparent url(../i/header_news.jpg) no-repeat 0 0 scroll; }
#contacth1  { background: transparent url(../i/header_contact.jpg) no-repeat 0 0 scroll; }

#tomh1    	 { background: transparent url(../i/header_tom.jpg) no-repeat 0 0 scroll; }
#stuarth1    { background: transparent url(../i/header_stuart.jpg) no-repeat 0 0 scroll; }
#dannielleh1 { background: transparent url(../i/header_dannielle.jpg) no-repeat 0 0 scroll; }
#graemeh1    { background: transparent url(../i/header_graeme.jpg) no-repeat 0 0 scroll; }
#simonh1     { background: transparent url(../i/header_simon.jpg) no-repeat 0 0 scroll; }
#debh1       { background: transparent url(../i/header_deb.jpg) no-repeat 0 0 scroll; }







/********* content */
#clientimage {
	width: 340px;
	height: 262px;
	float: right;
	margin: 0 0 20px 20px;
}
div.twocol {
	/* easy cleared */
	background: transparent url(../i/bg_tc.gif) repeat-y 0 0 scroll;
}
/* note changed for contact */
div.tc-left {
	float: left;
	padding: 0 25px 0 8px;
	margin: 0 25px 0 0;
	width: 350px;
}
div.tc-right {
	float: right;
	width: 350px;
	padding-right: 8px;
}

#content ul { margin-bottom: 1em; }
/********* footer */
#footer p {
	padding: 10px 10px 10px 30px;
	color: #999;
	font-size: 9px;
	width: 150px;
	float: left;
}
#footer p.valid { float: right; text-align: right; }
#footer p.valid a { border: none; }
/********* home */
/*#intro    { width: 189px; height: 25px; text-indent: -999em; background: transparent url(../i/home/minxdesignintro.gif) no-repeat 0 0 scroll; }
#featured { width: 110px; height: 25px; text-indent: -999em; background: transparent url(../i/home/featuredclient.gif) no-repeat 0 0 scroll; }
#news     { width:  41px; height: 25px; text-indent: -999em; background: transparent url(../i/home/news.gif) no-repeat 0 0 scroll; }*/

/********* contact */
div.vcard div {
	color: #555;
	line-height: 1.4em;
}
div.vcard a.org {
	border: none;
	color: #555;
}
span.mobile { display: none; }

/********* news */
div.news {
	/* easycleared */
	margin: 0 0 1em 0;
}
div.article {
	width: 550px;
	float: left;
}
div.index {
	width: 200px;
	float: right;
}
#contact div.tc-left {
	margin: 0 14px 0 0;
}
#contact div.tc-right {
	float: left;
	width: 369px;
	padding-right: 0px;
}

/********* heading 2s, initially in alphabetical order, but will probably have new ones added to the bottom */

h2.aboutus              { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/aboutus.gif) no-repeat 0 0 scroll; }
h2.vrlknowledgebank     { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/vrlknowledgebank.gif) no-repeat 0 0 scroll; }
h2.alcobeldan           { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/alcobeldan.gif) no-repeat 0 0 scroll; }
h2.britax               { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/britax.gif) no-repeat 0 0 scroll; }
h2.contactus            { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/contactus.gif) no-repeat 0 0 scroll; }
h2.corgi                { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/corgi.gif) no-repeat 0 0 scroll; }
h2.danniellesoanes      { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/danniellesoanes.gif) no-repeat 0 0 scroll; }
h2.debspike             { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/debspike.gif) no-repeat 0 0 scroll; }
h2.designartwork        { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/designartwork.gif) no-repeat 0 0 scroll; }
h2.euromoney            { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/euromoney.gif) no-repeat 0 0 scroll; }
h2.featuredclient       { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/featuredclient.gif) no-repeat 0 0 scroll; }
h2.graemerobinson       { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/graemerobinson.gif) no-repeat 0 0 scroll; }
h2.grohe                { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/grohe.gif) no-repeat 0 0 scroll; }
h2.introduction         { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/introduction.gif) no-repeat 0 0 scroll; }
h2.kognitio             { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/kognitio.gif) no-repeat 0 0 scroll; }
h2.mailingandfulfilment { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/mailingandfulfilment.gif) no-repeat 0 0 scroll; }
h2.mergermarket         { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/mergermarket.gif) no-repeat 0 0 scroll; }
h2.metalbulletin        { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/metalbulletin.gif) no-repeat 0 0 scroll; }
h2.multimedia           { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/multimedia.gif) no-repeat 0 0 scroll; }
h2.news                 { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/news.gif) no-repeat 0 0 scroll; }
h2.on-linemedia         { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/on-linemedia.gif) no-repeat 0 0 scroll; }
h2.ournews              { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/ournews.gif) no-repeat 0 0 scroll; }
h2.ourservices          { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/ourservices.gif) no-repeat 0 0 scroll; }
h2.plumbcenter          { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/plumbcenter.gif) no-repeat 0 0 scroll; }
h2.printproduction      { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/printproduction.gif) no-repeat 0 0 scroll; }
h2.photography      { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/photography.gif) no-repeat 0 0 scroll; }
h2.events      { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/events.gif) no-repeat 0 0 scroll; }
h2.simonbarton          { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/simonbarton.gif) no-repeat 0 0 scroll; }
h2.stuartflemming       { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/stuartflemming.gif) no-repeat 0 0 scroll; }
h2.theclients           { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/theclients.gif) no-repeat 0 0 scroll; }
h2.thepeople            { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/thepeople.gif) no-repeat 0 0 scroll; }
h2.thomsonreuters       { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/thomsonreuters.gif) no-repeat 0 0 scroll; }
h2.tomphippen	       { text-indent: -9999em; height: 18px; background: transparent url(../i/h2s/tomphippen.gif) no-repeat 0 0 scroll; }
