@charset "utf-8";
/* CSS Document */
 
body  {
	padding: 0;
	text-align: center;
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFFFFF;
	background-image: url(../gifs/grid.gif);
	background-repeat: repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.thrColFixHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
} 
.cssvalidation {
	background-color: #FFFFFF;
	text-align: center;
	clear: both;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
	margin-top: 14px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #DD401D;
	border-bottom-color: #666666;
}
.cssvalidation #inner {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 800px;
}

.thrColFixHdr #header {
	height: 160px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #FFFFFF;
	margin: 0px;
} 
.thrColFixHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	top: 160px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 140px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.thrColFixHdr #container #sidebar2 h3 {
	color: #FFFFFF;
	background-color: #333333;
	padding: 2px;
	font-size: 0.9em;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 150px;
	margin-bottom: 0;
	margin-left: 150px;
	background-color: #F9F9F9;
	padding: 0;
} 
#mainContent li {
	margin-bottom: 8px;
}

.thrColFixHdr #container #mainContent blockquote {
	font-size: 13px;
	line-height: 18px;
}


.thrColFixHdr #container #mainContent #examples {
	width: 570px;
	margin-left: 12px;
}
.thrColFixHdr #container #mainContent #examples p {
	margin-left: 270px;
}
.thrColFixHdr #container #mainContent #examples img {
}


.thrColFixHdr #container #mainContent h4 {
	font-size: 1.3em;
	font-weight: normal;
	color: #0D67A5;
	padding-right: 10px;
	padding-left: 10px;
}
.thrColFixHdr #container #mainContent h3 {
	font-size: 16px;
	padding-left: 10px;
	font-weight: normal;
	color: #2766AD;
}
.thrColFixHdr #container #mainContent p {
	padding-right: 10px;
	padding-left: 10px;
	line-height: 125%;
	margin-right: 15px;
	margin-left: 15px;
}
.thrColFixHdr #container #mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: normal;
	color: #1A60B6;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 6px;
	margin-left: 15px;
}

.thrColFixHdr #container #mainContent2 h3 {
	font-size: 15px;
	font-weight: bold;
	color: #1C73D0;
	margin-left: 15px;
}

.thrColFixHdr #container #mainContent h1 {
	font-size: 1.5em;
	color: #FFFFFF;
	font-family: Tahoma, Arial, Verdana;
	font-weight: normal;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 10px;
	margin: 0px;
	letter-spacing: 1px;
	background-color: #666666;
}
.thrColFixHdr #footer {
	text-align: center;
	background-color: #F0F0F0;
	background-image: url(../web_design_sussex/footer_Bgd.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	height: 80px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	clear: both;
} 
.thrColFixHdr #container #footer a {
	color: #333333;
	text-decoration: none;
}
.thrColFixHdr #container #footer a:hover {
	color: #CC3300;
	text-decoration: underline;
}
.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	padding-top: 42px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	line-height: 20px;
}
.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:0;
    font-size: 1px;
    line-height: 0px;
}
.menubar {
	background-color: #333333;
	height: auto;
}
.infobox {
	width: 130px;
	border: 1px solid #DADEE9;
	background-color: #F3F3F3;
	padding: 5px;
	margin-bottom: 12px;
}
.thrColFixHdr #container #sidebar2 .infobox h3 {
	font-size: 1em;
	color: #333333;
	background-color: #70B7EF;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
}
.thrColFixHdr #container #sidebar2 .infobox p {
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.infoheader {
	color: #FFFFFF;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-size: 1.4em;
	font-weight: normal;
	background-color: #999999;
}
.infobox2 {
	border: 1px solid #DADEE9;
	background-color: #F3F3F3;
	padding: 0px;
	margin-bottom: 12px;
}
.infobox2 p {
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.box1 {
	height: 350px;
	width: 174px;
	float: left;
	margin-bottom: 10px;
	margin-right: 5px;
	margin-top: 0px;
	margin-left: 5px;
	background-image: url(../gifs/boxbgd.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 7px;
	border-bottom-style: solid;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-color: #3C86D9;
}
.boxheadingWhite {
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}


.box1 #text {
	padding: 10px;
}
.box2 {
	height: 350px;
	width: 174px;
	float: left;
	margin-bottom: 10px;
	margin-right: 5px;
	margin-top: 0px;
	margin-left: 5px;
	background-image: url(../gifs/box2bgd.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 7px;
	border-bottom-style: solid;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-color: #3C86D9;
}
#sidebar1 img {
	margin-bottom: 10px;
}
.blacklink {
	color: #333333;
	text-decoration: none;
}
.moredetails {
	color: #CC3300;
	text-decoration: none;
}
.moredetails:hover {
	color: #FFFFFF;
	background-color: #CC3300;
}
.ltblubold {
	font-weight: bold;
	color: #336699;
}
.thrColFixHdr #mainContent2 {
	margin-top: 0;
	margin-right: 150px;
	margin-bottom: 0;
	margin-left: 150px;
	background-color: #FFFFFF;
	padding: 0;
}

#mainContent2 h2 {
	font-size: 18px;
	font-weight: normal;
	color: #1C73D0;
	margin-left: 25px;
}

.thrColFixHdr #container #mainContent2 p {
	padding-right: 10px;
	padding-left: 10px;
	line-height: 125%;
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
}
.thrColFixHdr #container #mainContent2 h1 {
	font-size: 1.6em;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	background-color: #666666;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	margin: 0px;
}
.websites {
	padding: 5px;
	margin-right: 10px;
	margin-bottom: 12px;
	margin-left: 10px;
	border: 1px solid #CCCCCC;
	display: block;
	float: left;
	width: 562px;
}
.websites a {
	color: #1A71CE;
}
.websites a:hover {
	color: #FF6600;
}

.websites strong {
	color: #1B63B5;
	font-size: 14px;
}

.websites img {
	float: left;
	margin-right: 10px;
	border: 1px solid #999999;
}
.clear {
	clear: both;
}


.websites #text {
	margin-left: 210px;
}
.box3 {
	height: 350px;
	width: 174px;
	float: left;
	margin-bottom: 10px;
	margin-right: 5px;
	margin-top: 0px;
	margin-left: 5px;
	background-image: url(../gifs/box3bgd.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
	padding-right: 7px;
	padding-bottom: 5px;
	padding-left: 7px;
	border-bottom-style: solid;
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-color: #3C86D9;
}
/* always visible */
#outer .holder {
	padding:1em;
	border:1px solid #ddd;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 0;
}.bubble1 {
	background-image: url(../gifs/bubble1.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding: 5px;
}
.bubble1 a {
}
.bubble1 a:hover {
	color: #333333;
	text-decoration: none;
}

.bubble2 {
	margin-bottom: 12px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(../gifs/bubble1.gif);
	background-repeat: no-repeat;
	background-position: center top;
}
.offerBluetext {
	font-size: 20px;
	color: #2B6BB3;
}
a {
	color: #E4382A;
	text-decoration: none;
}
a:hover {
	color: #333333;
	text-decoration: underline;
}
a.smallgrey {
	font-size: 8px;
	color: #F8F8F8;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}
a.smallgrey:hover {
	color: #F9F9F9;
	text-decoration: none;
}
.shopexamples {
	float: left;
	width: 260px;
	margin-left: 30px;
}
.shopexamples img {
	border: 1px solid #1C73D0;
}

.quotegrey {
	background-color: #F3F3F3;
	padding: 10px;
	margin-right: 25px;
	margin-left: 25px;
}
