/*

----- Vector screen stylesheet -----
----- Simon Kitson 2008 -----

----- enjoy. -----

----- Background Colours -----

	Main Background: #000
	Footer Background: #4d4d4d

----- Text Colours -----

	Main Heading: #428f9c (Turquoise)
	Sub-Heading: #fff
	Main Body: #aaa
	Link: #428f9c (Turquoise)

----- Dimensions -----

	Site Width: 960px
	Column Width: 240px
	Gutter Width: 12px
	Sidebar width: 200px

*/

* {
	padding: 0; /* global margin and padding reset */
	margin: 0;
	outline: none;
}

/* ----- Tags ----- */
/* ------------------------------------------------------------ */
body {
	background: #4d4d4d;
	text-align: center; /* centre in IE */
	font: 12px Arial, Helvetica, sans-serif;
	color: #fff;
	padding-bottom: 24px;
}
a {
	color: #428f9c;
}
a:hover {
	color: #fff;
}
a img {
	border: none;
}
em {
	color: #ff0202;
}
ul {
	list-style: none;
}

/* ----- Universal styles ----- */
/* ------------------------------------------------------------ */
.hide {
	display: none;
}
.clear {
	clear: both;
}

/* ----- Containers ----- */
/* ------------------------------------------------------------ */
.frame {
	margin: 0 auto; /* centre in proper browsers */
	width: 960px;
	text-align: left;
}
#masthead, #content, #strapline, #footer {
	clear: both;
	float: left;
	width: 100%;
}

/* ----- Masthead ----- */
/* ------------------------------------------------------------ */
#masthead {
	height: 150px;
	background: #fff;
	color: #221e1f;
	background-position: 100% 0;
	background-repeat: no-repeat;
}
#masthead .frame {
	height: 150px;
	position: relative;
	z-index: 20;
}
#masthead p {
	position: absolute;
	z-index: 10;
	left: 0;
	top: 33px;
}
#masthead p a {
	display: block;
	width: 180px;
	height: 57px;
	background: url(../images/vector_logo.png) 0 0 no-repeat !important;
	background-image: url(../images/vector_logo.gif);
}
#home #masthead {
	height: 360px;
	background: url(../images/heroes/main.jpg) 50% 0 no-repeat;
}
#home #masthead .frame {
	height: 360px;
}

/* ----- Masthead Hero Images ----- */
/* ------------------------------------------------------------ */
#masthead .heroes {
	position: absolute;
	z-index: 1;
	right: 0;
	top: -150px;
	width: 100%;
	height: 150px;
}
#masthead .heroes li {
	position: absolute;
	right: 0;
	top: 0;
	width: 728px;
	height: 150px;
	
}

/* ----- Global Nav ----- */
/* ------------------------------------------------------------ */
#masthead ul#global-nav {
	position: absolute;
	z-index: 20;
	left: 0;
	bottom: 0;
	border-right: 1px solid #7f7f7f;
}
#masthead #global-nav li {
	float: left;
}
#masthead #global-nav li a {
	display: block;
	height: 26px;
	border-top: 1px solid #7f7f7f;
	border-left: 1px solid #7f7f7f;
	text-indent: -1000em;
	background: url(../images/global_nav.gif) 0 0 no-repeat;
}
#masthead #global-nav li a#nav1 {
	width: 60px;
	background-position: 0 0;	
}
#masthead #global-nav li a#nav1:hover {
	background-position: 0 -26px;	
}
#masthead #global-nav li.current a#nav1 {
	background-position: 0 -52px;	
}
#masthead #global-nav li a#nav2 {
	width: 72px;
	background-position: -167px 0;	
}
#masthead #global-nav li a#nav2:hover {
	background-position: -167px -26px;	
}
#masthead #global-nav li.current a#nav2 {
	background-position: -167px -52px;	
}
#masthead #global-nav li a#nav3 {
	width: 65px;
	background-position: -240px 0;	
}
#masthead #global-nav li a#nav3:hover {
	background-position: -240px -26px;	
}
#masthead #global-nav li.current a#nav3 {
	background-position: -240px -52px;	
}
#masthead #global-nav li a#nav4 {
	width: 71px;
	background-position: -306px 0;	
}
#masthead #global-nav li a#nav4:hover {
	background-position: -306px -26px;	
}
#masthead #global-nav li.current a#nav4 {
	background-position: -306px -52px;	
}
#masthead #global-nav li a#nav5 {
	width: 105px;
	background-position: -61px 0;	
}
#masthead #global-nav li a#nav5:hover {
	background-position: -61px -26px;	
}
#masthead #global-nav li.current a#nav5 {
	background-position: -61px -52px;
}
#masthead #global-nav li a#nav6 {
	width: 89px;
	background-position: -378px 0;	
}
#masthead #global-nav li a#nav6:hover {
	background-position: -378px -26px;	
}
#masthead #global-nav li.current a#nav6 {
	background-position: -378px -52px;	
}

/* ----- Strapline ----- */
/* ------------------------------------------------------------ */
#strapline {
	background: #fff;
	color: #000;
}
#strapline .frame {
	text-align: center;
}
#strapline p {
	width: 100%;
	height: 40px;
	text-indent: -1000em;
	background: url(../images/strapline.gif) 50% 50% no-repeat;
}

/* ----- Footer ----- */
/* ------------------------------------------------------------ */
#footer {
	padding: 12px 0 24px 0;
	font-size: 0.917em; /* 12*0.917=11 */
}
#footer p {
	float: left;
}
#footer ul {
	float: right;
}
#footer li {
	float: left;
	margin-right: 6px;
}
#footer li.final {
	margin-right: 0;
}
#footer li a {
	padding-right: 6px;
	color: #fff;
	text-decoration: none;
	background: url(../images/divs/v_11pt_list.gif) 100% 50% no-repeat;
}
#footer li.final a {
	padding-right: 0;
	background: none;
}
#footer li a:hover {
	text-decoration: underline;
}

/* ----- Content Containers, Rows & Columns ----- */
/* ------------------------------------------------------------ */
#content {
	padding-bottom: 24px;
	background: #000;
	color: #aaa;
}
#main {
	float: left;
	width: 960px;
	margin-bottom: 24px;
	background: url(../images/divs/v_1px_4d4d4d.gif) 199px 0 repeat-y;
	border-top: 1px solid #4d4d4d;
	border-bottom: 1px solid #4d4d4d;
}
#clientele #main, #site-map #main {
	padding: 18px 0 12px 0;
	background: none;
}
#wrapper {
	float: left;
	width: 960px;
	background: url(../images/sidebar_bg.gif) 0 0 no-repeat;
}
#sidebar {
	float: left;
	width: 200px;
}
#col-720 {
	float: right;
	width: 720px;
	padding: 18px 0 12px 0;
}
.row-3col {
	clear: both;
	float: left;
	width: 720px;
	margin-bottom: 12px;
}
.row-4col {
	clear: both;
	float: left;
	width: 960px;
}
.row-4panel {
	clear: both;
	float: left;
	width: 972px;
	margin: 0 0 12px -12px;
	display: inline;
}
.col-240 {
	float: left;
	width: 216px;
	padding: 0 12px;
}
.col-228 {
	float: left;
	width: 228px;
	margin-right: 12px;
}
.col-348 {
	float: left;
	width: 348px;
	margin-right: 12px;
}
.col-243 {
	float: left;
	width: 243px;
}

/* ----- Typography ----- */
/* ------------------------------------------------------------ */
h1 {
	margin-bottom: 12px;
	font-size: 1.67em; /* 12*1.67=20 */
	font-weight: normal;
	color: #428f9c;
}
h2 {
	margin-bottom: 12px;
	font-size: 1.08em; /* 12*1.08=13 */
	color: #428f9c;
}
h2 a {
	color: #428f9c;
	text-decoration: none;
}
h2.alt {
	margin: 0;
}
h2 strong {
	font-size: 0.846em; /* 13*0.846=11 */
	color: #fff;
}
p {
	font-size: 1em;
	line-height: 16px;
}
#col-720 p {
	margin-bottom: 12px;
}
p.intro {
	font-weight: bold;
	color: #ddd;
}
#home p.intro {
	margin: 24px 0;
	padding: 12px 0;
	border-top: 1px solid #4d4d4d;
	border-bottom: 1px solid #4d4d4d;
	color: #ddd;
	font: 1.67em Georgia, Arial, sans-serif; /* 12*1.67=20 */
}
p.success {
	color: #3c3;
}
p.error {
	color: #ee1800;
}
p.img {
	margin-bottom: 3px;
}
a.lnk {
	background: url(../images/icons/arrow_right_428f9c.gif) 100% 4px no-repeat;
	padding-right: 12px;
}
a.lnk:hover {
	background-position: 100% -96px;
}
#home p.intro a.lnk {
	font: 0.6em Arial, Helvetica, sans-serif; /* 20*0.6=12 */
}
#home p.intro strong {
	font: 0.6em Arial, Helvetica, sans-serif; /* 20*0.6=12 */
	color: #428f9c;
}
#col-720 ul {
	margin-bottom: 12px;
}
#col-720 ul li {
	margin-bottom: 6px;
	padding-left: 18px;
	background: url(../images/icons/arrow_right_428f9c_solo.gif) 0 4px no-repeat;
	line-height: 16px;
}
#col-720 ol {
	margin: 0 0 12px 24px;
}
#col-720 ol li {
	margin-bottom: 6px;
	line-height: 16px;
}
#col-720 ul li strong, #col-720 ol li strong {
	color: #fff;
}
#col-720 blockquote {
	margin-bottom: 12px;
	padding: 24px;
	background: #1b1b1b;
}
#col-720 blockquote p {
	font-size: 1.08em; /* 12*1.08=13 */
	color: #fff;
}
#col-720 blockquote cite {
	display: block;
	width: 100%;
	text-align: right;
}
#col-720 blockquote.alt {
	width: 483px;
}

/* ----- Breadcrumbs ----- */
/* ------------------------------------------------------------ */
#breadcrumbs {
	float: left;
	padding: 12px 0;
}
#breadcrumbs li {
	float: left;
	margin-right: 0px;
	font-size: 0.917em; /* 12*0.917=11 */
	color: #aaa;
	font-weight: bold;
}
#breadcrumbs li a {
	margin-right: 6px;
	padding-right: 12px;
	color: #aaa;
	font-weight: normal;
	text-decoration: none;
	background: url(../images/icons/arrow_right_aaaaaa.gif) 100% 50% no-repeat;
}
#breadcrumbs li a:hover {
	color: #428f9c;
	text-decoration: underline;
}

/* ----- Sidebar Navigation ----- */
/* ------------------------------------------------------------ */
#sidebar ul {
	float: left;
	width: 200px;
	margin-bottom: 24px;
}
#sidebar ul li ul {
	border-top: 1px solid #4d4d4d;
}
#sidebar ul li {
	border-bottom: 1px solid #4d4d4d;
}
#sidebar ul li a {
	display: block;
	width: 176px;
	padding: 8px 12px;
	color: #fff;
	text-decoration: none;
}
#sidebar ul li a:hover, #sidebar ul li a.current:hover {
	color: #fff;
	background: #428f9c;
}
#sidebar ul li a.current {
	color: #428f9c;
}

/* ----- Panels ----- */
/* ------------------------------------------------------------ */
.panel-231 {
	float: left;
	width: 207px;
	margin-left: 12px;
	padding: 12px;
	background: #1b1b1b;
	display: inline;
}
.panel-231 p {
	margin-bottom: 0;
}
.panel-231 p.img {
	margin-bottom: 12px;
}
.panel-231 blockquote {
	display: none;
	padding-top: 12px;
}
.panel-231 blockquote p {
	margin-bottom: 12px;
	color: #fff;
}
.panel-231 blockquote cite {
}
p.panel-chart {
	padding: 24px;
	background: #1b1b1b;
}
p.panel-231-alt {
	float: right;
	width: 207px;
	margin: 0 0 12px 12px;
	padding: 12px;
	background: #1b1b1b;
	display: inline;
	font-size: 0.917em; /* 12*0.917=11 */
	font-style: italic;
}
p.panel-img {
	float: right;
	width: 150px;
	margin: 0 0 12px 12px;
	padding: 12px;
	background: #1b1b1b;
	display: inline;
	font-size: 0.917em; /* 12*0.917=11 */
	font-style: italic;
}
.panel-720 {
	float: left;
	width: 720px;
	padding-top: 12px;
	border-top: 1px dashed #4d4d4d;
}

/* ----- Site Map ----- */
/* ------------------------------------------------------------ */
#site-map .row-4panel ul {
	float: left;
	width: 231px;
	margin: 0 0 12px 12px;
	display: inline;
}
#site-map .row-4panel ul.alt {
	float: none;
}
#site-map .row-4panel ul li {
	clear: left;
	float: left;
	width: 213px;
	margin-bottom: 6px;
	padding-left: 18px;
	background: url(../images/icons/arrow_right_428f9c_solo.gif) 0 3px no-repeat;
}
#site-map .row-4panel ul li.alt {
	padding-left: 0;
	background: none;
}
#site-map .row-4panel ul li h2 {
	margin-bottom: 0;
}
#site-map .row-4panel ul li a {
	color: #aaa;
}
#site-map .row-4panel ul li h2 a {
	color: #428f9c;
}
#site-map .row-4panel ul li a:hover, #site-map .row-4panel ul li h2 a:hover {
	color: #fff;
}
#site-map .row-4panel ul li h3 {
	font-size: 1em;
	margin-bottom: 6px;
}
#site-map .row-4panel ul li h3 a {
	color: #428f9c;
	text-decoration: none;
}
#site-map .row-4panel ul li h3 a:hover {
	color: #fff;
}
#site-map .row-4panel ul li ul {
	width: 213px;
	margin: 0;
}
#site-map .row-4panel ul li ul li {
	width: 195px;
}

/* ----- Contact Form ----- */
/* ------------------------------------------------------------ */
#contact {
	width: 720px;
	margin: 12px 0 24px 0;
	border-top: 1px solid #2c2c2c;
}
#contact th, #contact td {
	border-bottom: 1px solid #2c2c2c;
	vertical-align: top;
}
#contact th {
	width: 160px;
	padding: 15px 0 12px 0;
}
#contact td {
	padding: 12px 0;
}
#contact label {
	font-weight: bold;
}
#contact input {
	float: left;
	width: 240px;
}
#contact textarea {
	float: left;
	width: 244px;
}
#contact input.checkbox {
	float: none;
	width: auto;
	margin-right: 6px;
}
#contact input.button {
	float: none;
	width: auto;
	padding: 6px 9px;
	border: none;
	background: #428f9c;
	color: #fff;
	font-weight: bold;
}
#contact .warning {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin: 2px 0 0 6px;
	background: url(../images/icons/warning.gif) 0 0 no-repeat;
}
