@charset "utf-8";

/* ---------------------------------

ATM Public Web Site Stylesheet

Version:  1.1
website:  http://www.ATM.org/
Author:   Jim Handley
email:    jimh@linetex.co.uk

------------------------------------ */

/* Global Settings
==================================== */

* {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

img {
	border:none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	font-size: 62.5%;
	text-align: left;
	background-color:#FFFFFF;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* Typography - Fonts and Colours
==================================== */
h1 {
	font-size: 2.4em;
	font-weight: bold;
	color: #184E82;
}
h2 {
	font-size: 1.8em;
	font-weight: bold;
	color: #184E82;
	margin-top: 10px;
	background-color: #E1EBF4;
/*	width: 500px;*/
	padding-left:10px;
}
h3 {
	font-size: 1.4em;
	font-weight: bold;
	color: #184E82;
	margin-top:10px;
}
p, li {
  font-size: 1em;
}
strong {
	font-weight: bold;
	color: #184E82;
}

/* Main Sections
=================================== */

/* These sections are in the same order as the web pages themselves */
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border:none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#branding {
/*	float:left;*/
	height:95px;
	width:1000px;
}
	#brandLeft {
	width:165px;
	height:75px;
	float:left;
	background: url(images/logo-sirvis-it.gif) no-repeat left top;
	margin-top: 10px;
	margin-bottom: 10px;
	}

	#brandRight {
	width:220px;
	height:69px;
	margin:10px;
	float:right;
	background: url(images/phone_no_new.gif) no-repeat right top;
	}
#header { 
	background: url(images/bgd_Sirvis_IT_top.jpg) no-repeat left top;
	height:6.6em;
	font-weight:bold;
	color:#182E84;
	text-align:left;
	font-size:1.2em;
	padding: 0 10px 0 20px;
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
	#txtBreadcrumb {
	float: left;
	margin-top: 1.6em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}
	#imgRemote {
		width:175px;
		height:32px;
		float:right;
		margin-right: 15px;
		border: none;
	}
	#header h1 {
		margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
		padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	}
	#header a {
		color:#182E84;
		text-decoration:none;
	}
	#header a:hover {
		color:#990000;
	}
#sectionMiddle {
	width:1000px;
	position: relative;
	background-image: url(images/bgd_Sirvis_IT_mid.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}
	#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 174px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	display:inline;
	}
		#areaNav {
			width:164px;
			float: right;
		}
			#areaNav ul {
			  list-style-type: none;
			  text-align: left;
			}
			#areaNav li {
			  display: inline; /* :KLUDGE: Removes large gaps in IE/Win */
			}
			#areaNav a {
				display: block;
				width: 164px;
				height: 42px;
				line-height: 42px;
				color: #336699;
				text-decoration: none;
				background: url(images/nav_med_blue.jpg) no-repeat left bottom;
				text-indent: 15px;
				font-weight: bold;
				font-size: 1.2em;
			}
			#areaNav a:hover {
			  color: #fff;
			  background: url(images/nav_dark_blue.jpg) no-repeat left bottom;
			}
			#areaNav .selected a {
			  color: #fff;
			  background: url(images/nav_light_blue.jpg) no-repeat left bottom;
			}
			#areaNav .first a {
	line-height: 40px;
	height: 40px;
			}
	 #sidebar2 {
		float: right; /* since this element is floated, a width must be given */
		width: 175px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
		margin-right:25px;
		display:inline;
	}
	
		/* rounded corner box
		================================== */
		
		.box {
	width: 175px;
	background: url(images/box_blue_bottom.jpg) no-repeat  left bottom;
	margin-bottom:10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
		}
		
		.box h2 {
	background: url(images/box_dkblue_top.jpg) no-repeat left top;
	/*			padding: 10px 20px 6px 20px;*/
			text-align:center;
	/*	color: #184E82;*/
			color: #FFFFFF;
	font-size: 1.8em;
		}
		
		.box p {
		  padding: 10px 10px 10px 10px;
		}
		.box ul {
			padding: 10px 10px 10px 10px;
			margin-left:15px;
			/*			text-indent:20px;*/
			list-style-image: url(images/bullet_blue.gif);
		}
		.box a {
			color: #000099;
		}
		.box a:hover {
			color: #990000;
		}

		.box2 {
		  width: 175px;
		  background: url(images/box_blue_bottom.jpg) no-repeat  left bottom;
		  margin-bottom:10px;
		}
		
		.box2 h4 {
			background: url(images/box_blue_top.jpg) no-repeat left top;
			padding: 10px 20px 6px 20px;
			text-align:center;
			color: #184E82;
		}
		
		.box2 p {
		  padding: 10px 10px 10px 10px;
		}
		.box2 ul {
			padding: 10px 10px 10px 10px;
			margin-left:15px;
			/*			text-indent:20px;*/
			list-style-image: url(images/bullet_blue.gif);
		}
		.box2 a {
			color: #000099;
		}
		.box2 a:hover {
			color: #990000;
		}

	#mainContent { 
		margin: 0 205px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
		padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	} 



		#mainContent li {
		  font-size: 1em;
		  margin-left: 20px;
		}
		#mainContent li ul li {
		  font-size: 0.9em;
		  margin-left: 20px;
		}
		#mainContent p, #mainContent ul, #mainContent ol {
			font-size: 1.2em;
			padding-top: 5px;
			padding-bottom: 5px;
		}
		#mainContent a, #sidebar2 a {
			color: #000099;
		}
		#mainContent a:hover, #sidebar2 a:hover {
			color: #990000;
		}
		#mainContent a:hover strong, #mainContent strong a:hover {
		  color: #990000;
		}
		#mainContent ul {
			padding-top: 10px;
			padding-bottom: 10px;
			list-style-image: url(images/bullet_blue.gif);
		}
.boxBlue {
	background-color: #E1EBF4;
	border: 1px solid #184E82;
	width: 555px;
	height:inherit;
	margin-top:10px;
	padding:10px;
}
#listLeft {
	float:left;
	margin-top: 10px;
	width: 270px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	border: none;
}

#listRight {
	float:left;
	margin-left: 23px;
	width: 270px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	border: none;
}
#footer {
	width: 1000px;
	height:72px;
	color: #99CCFF;
	border: none;
	margin-top:0;
	margin-left:0;
	margin-right:0;
	background: url(images/bgd_Sirvis_IT_bottom.jpg) no-repeat left bottom;
	font-family: Verdana, Arial, Helvetica, sans-serif;
} 
#footer a {
		color: #182E84;
	}
#footer a:hover {
		color: #990000;
	}
#navCopy {
		float:left;
		color:#182E84;
		margin-left:15px;
		margin-top:30px;
	}
#navFooter {
		float:right;
		margin-right:25px;
		margin-top:30px;
	}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:1px;
    font-size: 1px;
    line-height: 0px;
}
.clear {
	clear:both;
	margin-top: 0px;
}
#mainContent table {
	font-size: 0.9em;
}

/* Forms
==================================== */

fieldset {
	padding-bottom:1em;
	padding-right:1em;
	border:none;
}
.fltRight {
	float: right;
}
#boxGrey {
	width: 565px;
	border: 1px solid #999999;
	margin-top: 10px;
	padding-left: 10px;
	height: 28em;
}


legend {
	font-weight: bold;
	font-size:1.4em;
	color:#000099;
	padding-bottom: 1em;
	padding-left:5px;
	padding-right:5px;
}

form {
	margin-top:1.5em;
}

form p {
  position: relative;
	width: 100%;
}

label {
	float: left;
	width: 9em;
	text-indent:1em;
}

input {
  width: 200px;
}

input[type="text"], textarea {
	border-top: 1px solid #7EA9D3;
	border-left: 1px solid #7EA9D3;
	border-bottom: 1px solid #369;
	border-right: 1px solid #369;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

input.radio, input.checkbox {
  width: auto;
}

input:focus, textarea:focus {
	background: #ffc;
}

input.radio {
  float: left;
	margin-right: 1em;
}

input[type="submit"] {
	width:6em;
}

textarea {
	width: 300px;
	height: 100px;
}
.center {
	text-align:center;
}
td.red {
	background-color: #FFCCFF;
	padding: 5px;
	text-align:center;
}
td.yellow {
	background-color: #FFFFCC;
	padding: 5px;
	text-align:center;
}
td.green {
	background-color: #CCFFCC;
	padding: 5px;
	text-align:center;
}
td.left {
	text-align:left;
}
.even {
	background-color: #FFFFFF;
}
#mainContent blockquote {
	margin-left: 20px;
	margin-top: 10px;
}
#menuKbd {
	background-image: url(images/computer-services1.jpg);
	background-repeat: no-repeat;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 200px;
	width: 575px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
}
#rowTop {
	padding-top: 33px;
	margin-left: 20px;
	height: 55px;
	width: 480px;
}
#rowBottom {
	margin-top: 25px;
	margin-left: 59px;
	height: 55px;
	width: 480px;
}
#rowTop ul, #rowBottom ul {
	margin:0;
	padding:0;
	list-style:none;
}
#rowTop li, #rowBottom li {
	display: inline;
	float:left;
	line-height:1.3em;
}

#rowTop li em, #rowBottom li em {
	display: block;
	width:59px;
	text-align: center;
	text-decoration: none;
	font-style:normal;
}
#menuKbd #rowTop a, #menuKbd #rowBottom a {
	text-decoration: none;
	font-size:0.9em;
	color: #333333;
}

#menuKbd #rowTop a:hover, #menuKbd #rowBottom a:hover {
	color: #990000;
}
#frmContact {
	background-color: #E1EBF4;
	border: 1px solid #184E82;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 575px;
}

.blue1 {
	background-color: #99CCFF;
}
.blue2 {
	background-color: #AADDFF;
}
.blue3 {
	background-color: #CCEEFF;
}
.blue4 {
	background-color: #DDFFFF;
}
.blue5 {
	background-color: #EEFFFF;
}
#txtAddress {
	font-size: 0.9em;
	color: #184E82;
	background-color: #E1EBF4;
	width:150px;
	text-align: left;
	position: absolute;
	left: 16px;
	bottom: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#txtAddress strong, #txtAddress a {
	color: #184E82;
	background-image: none;
}
#txtAddress a:hover {
	color: #990000;
}
#txtDisclaimer {
	background-color: #FFEEEE;
	padding: 10px;
	margin-top:20px;
	margin-bottom:20px;
	border: 1px solid #990000;
}
#txtDisclaimer h2 {
	color: #990000;
	background-color: #FFEEEE;
	margin-top:0;
	padding-top:0;
}
#txtDisclaimer strong {
	color: #990000;
}
.txtFixedWidth1 {
	width: 4em;
	display: inline-block;
	border: none;

}
.txtFixedWidth2 {
	width: 16em;
	display: inline-block;
	border-style: none;
}
#txtTableBlue {
	background-color: #E1EBF4;
	padding: 10px;
	border: 1px solid #184E82;
	margin-top:10px;
	margin-bottom:10px;
}
#txtRequired {
	font-size: 1em;
	font-weight: bold;
	float: right;
	color: #990000;
}
#imgBanner1 {
	height: 88px;
	width: 570px;
	margin-top: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-bottom: -15px;
}
#imgAntiVirus {
	height: 100px;
	width: 400px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: none;

}
#imgAntiSpyware {
	float: right;
	height: 356px;
	width: 258px;
	margin-bottom: 20px;
	margin-left: 20px;
	border: none;

}
#imgAntiSpam {
	float: right;
	height: 384px;
	width: 239px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

	margin-top: 10px;
}
#imgAsset {
	float: right;
	height: 232px;
	width: 189px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#imgAudit {
	height: 200px;
	width: 200px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-top: 10px;
	border: none;
	float: right;
}
#imgAudits {
	float: right;
	height: 147px;
	width: 193px;
	margin-bottom: 20px;
	margin-left: 20px;
	border: none;

}
#imgBackups {
	height: 134px;
	width: 531px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: none;

}
#imgBBH1 {
	height: 225px;
	width: 300px;
	margin-bottom: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: right;
	margin-left: 10px;
}
#imgBHH3 {
	float: right;
	height: 213px;
	width: 300px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#imgBob {
	float: right;
	height: 250px;
	width: 171px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgBob2 {
	float: right;
	height: 150px;
	width: 129px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;
}
#imgCalltoAction {
	height:147px;
	width:147px;
	margin-right:auto;
	margin-left:auto;
	position:absolute;
	right:28px;
	bottom:0px;
	border:none;
}
#imgContact {
	height: 148px;
	width: 575px;
	border: none;

	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#imgConsult {
	height: 200px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgConsultancy {
	height: 105px;
	width: 510px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: none;

}
#imgCustQuotes {
	height:347px;
	width:175px;
	margin-right:auto;
	margin-left:auto;
/*	position:absolute;
	right:18px;
	bottom:0px;*/
	border:none;
}
#imgDesktop {
	height: 200px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgDisposal {
	float: right;
	height: 172px;
	width: 156px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
.imgDirector {
	float: right;
	height: 170px;
	width: 227px;
	margin-bottom: 10px;
	margin-left: 10px;
}

#imgDriving {
	height: 81px;
	width: 88px;
	margin-top: 10px;
	margin-bottom: 20px;
	border: none;

}
#imgEmail {
	float: right;
	height: 195px;
	width: 195px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgEscalate {
/*	margin: 10px;*/
	float: right;
	height: 88px;
	width: 78px;
	border: none;

}
#imgFem1 {
	float: right;
	height: 148px;
	width: 148px;
	margin-bottom: 20px;
	margin-left: 20px;
	border: none;

}
#imgFem2 {
	float: right;
	height: 157px;
	width: 140px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgFem3 {
	float: right;
	height: 142px;
	width: 170px;
	margin-bottom: 10px;
	border: none;

}
#imgFirewall {
	height: 85px;
	width: 550px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: none;

}

#imgGroup {
	float: right;
	height: 600px;
	width: 330px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#imgHome1 {
	height: 220px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border: none;

}
.imgIconPDF {
	float: right;
	height: 32px;
	width: 32px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgImaging {
	float: right;
	height: 192px;
	width: 128px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgLinks1 {
	height: 102px;
	width: 175px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}

#imgLogistics {
	float: right;
	height: 190px;
	width: 135px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#imgLogoHorzSmall {
	padding: 0px;
	width: 575px;
	height:90px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	border: none;
	margin-bottom: 0px;

}
#imgLogoLA {
	height: 98px;
	width: 367px;
	margin-left: 112px;
}
#imgMain1 {
	height: 234px;
	width: 575px;
	margin-top: 10px;
	margin-bottom: 10px;
	border: none;

}
#imgMal1 {
	float: right;
	height: 148px;
	width: 148px;
	margin-bottom: 20px;
	margin-left: 20px;
	border: none;

}
#imgMap {
	height: 88px;
	width: 88px;
	margin-top: 10px;

	margin-bottom: 20px;
	border: none;

}
#imgMapUKLocs {
	height: 499px;
	width: 339px;
	border: none;

	margin-top: 10px;
	margin-bottom: 10px;
	float: left;
}
#imgMapUK {
	height: 38px;
	width: 32px;
	margin-left: 20px;
	border: none;
	float: right;
	margin-top: 10px;
}
.imgMarket {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;
}
#imgMarket200 {
	height: 200px;
	width: 575px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;
}
#imgMarket180 {
	height: 180px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: none;
}
#imgNetwork1 {
	float: right;
	height: 166px;
	width: 122px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgHelpdesk1 {
	float: right;
	height: 225px;
	width: 322px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 10px;
}

#imgOpSys {
	float: right;
	height: 166px;
	width: 156px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgPassword {
	height: 210px;
	width: 224px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;
	float: right;

}
#imgPDFReader {
	float: none;
	height: 31px;
	width: 88px;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

	margin-top: 10px;
	margin-right: auto;
}
#imgPrinter {
	height: 180px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgReady {
	margin-top: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	position: absolute;
	bottom: 0px;
	left:805px;
}
#imgRemote1 {
	height: 186px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgRemote2 {
	height: 113px;
	width: 575px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgSatNav {
	margin-top: 10px;
	margin-bottom: 20px;
	border: none;

	height: 68px;
	width: 88px;
}
.imgSatNav2 {
	margin-top: 10px;
	margin-bottom: 20px;
	border: none;

	height: 56px;
	width: 175px;
}
#imgSatNav2 {
	float: right;
	height: 136px;
	width: 175px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;
}
#imgSoftware1 {
	height: 394px;
	width: 401px;
	border: none;

}
#imgSupply {
	float: right;
	height: 189px;
	width: 203px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	border: none;

}
#imgTivoli {
	height: 31px;
	width: 139px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: none;

}
#imgTracking {
	height: 186px;
	width: 199px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#imgValidBlue {
	float: none;
	margin-left: auto;
	width:88px;
	height:127px;
	text-align: center;
	margin-top: 20px;
	margin-right: auto;
}
#imgUKService {
	margin-bottom: 10px;
	border: none;
}
#sidebar2 h2 {
	font-size: 1.4em;
}
#tblBackup {
	width: 100%;
	border: 1px solid #184E82;
	margin-top: 10px;
	margin-bottom: 10px;
}
#tblBackup th {
	font-size: 1.2em;
	color: #FFFFFF;
	background-color: #184E82;
	text-align: center;
	padding: 3px;
}
#tblBackup td {
	padding: 3px;
	width: 20%;
	vertical-align: top;
	background-color:#E1EBF4;
}
#tblComparison {
	width: 100%;
	border: 1px solid #184E82;
}
#tblComparison th {
	color: #FFFFFF;
	background-color: #184E82;
	padding: 5px;
	text-align:center;
	font-size:1.2em;
}
#tblComparison td {
	font-size:1.2em;
}
#tblContact1 {
	background-color: #E1EBF4;
	border: 1px solid #184E82;
}
#tblContact1 th {
	background-color: #184E82;
	color: #ffffff;
	padding:3px;
}
#tblContact1 td {
	padding-top:3px;
	padding-left:3px;
	padding-right:3px;
	padding-bottom:15px;
}
#tblGroup {
	width: 575px;
	border: none;
}
#tblGroup td {
	vertical-align: top;
}
.tblLocations {
	background-color: #E1EBF4;
	border: 1px solid #184E82;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 100%;
}
.tblLocations th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #184E82;
	padding: 5px;
}

.tblLocations td {
	padding: 5px;
}

#tblMarkets {
	background:url(images/bgd_markets.jpg) no-repeat left top;
	width:529px;
	height:807px;
	margin-top:10px;
}

#tblMarkets p {
	font-weight:normal;
	font-size:2em;
	text-indent:20px;
	padding-top:20px;
	padding-bottom:29px;
}

#tblMarkets p {
	color: #184E82;
}


#tblMarkets a {
	text-decoration:none;
	color:#336699;
}

#tblMarkets a:hover {
	color:#990000;
}
#tblServers {
	background-color: #E1EBF4;
	width: 100%;
	border: 1px solid #184E82;
	margin-top: 10px;
	margin-bottom: 10px;
}
#tblServers td {
	vertical-align: top;
	font-size: 0.8em;
	padding: 5px;
}
#tblServers th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #184E82;
	padding: 5px;
	text-align:center;
}
#tblServices {
	width: 500px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: 3px outset #99CCFF;
	border-right: 3px outset #184E82;
	border-bottom: 3px outset #184E82;
	border-left: 3px outset #99CCFF;
}
#tblServices th {
	font-size: 1em;
	color: #FFFFFF;
	background-color: #184E82;
	text-align: center;
	padding: 3px;
}
#tblServices td {
	padding: 3px;
	width: 20%;
	vertical-align: top;
	text-align: center;
	font-size: 0.9em;
}
#tblDirectors td {
	font-size: 1.2em;
}
