@charset "utf-8";
/*this is a wildcard selector. Targets every element on the page. Here we are stripping every element on the page of its margin and padding.  Also removes default margins and paddings various browsers have */
* {
	margin: 0px;
	padding: 0px;
}
/*text-align center used here to fix IE display problem.  Wrapper will text-align left to bring us back to normal.*/
body {
	background-color: #000000;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}
a {
	outline: none;
}
/*wrapper has position attribute so that any other DIVs within the wrapper, using the absolute positioning, uses the wrapper as the parent*/
#wrapper {
	width: 990px;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	text-align: left;
	border: 1px solid #000000;
}
#header {
	background-color: #000000;
	height: 100px;
	padding-right: 30px;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
}
#date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #CCCCCC;
	width: 160px;
	float: right;
	position: relative;
	top: 38px;
	text-align: right;
}
#banner1 {
	height: 265px;
	background-image: url(images/bannerindex.jpg);
	background-repeat: no-repeat;
}
#banner2 {
	height: 265px;
	background-image: url(images/bannerabout.jpg);
	background-repeat: no-repeat;
}
#banner3 {
	height: 265px;
	background-image: url(images/bannerservices.jpg);
	background-repeat: no-repeat;
}

#banner4 {
	height: 265px;
	background-image: url(images/bannerportfolio.jpg);
	background-repeat: no-repeat;
}
#banner5 {
	height: 265px;
	background-image: url(images/bannerfaq.jpg);
	background-repeat: no-repeat;
}
#menu {
	height: 47px;
	padding-left: 30px;
	position: relative;
	top: 55px;
}
/*hides the text*/
#menu a span {
	display: none;
}
/*ID tag */
a#menuhome   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 88px;
	border: 0px;
	float: left;
}
a:hover#menuhome  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 88px;
	border: 0px;
	float: left;
	background-position: -930px;
}
a#menuabout   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 113px;
	border: 0px;
	float: left;
	background-position: -88px;
}
a:hover#menuabout  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 113px;
	border: 0px;
	float: left;
	background-position: -1018px;
}
a#menuservices   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 110px;
	border: 0px;
	float: left;
	background-position: -201px;
}
a:hover#menuservices  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 110px;
	border: 0px;
	float: left;
	background-position: -1131px;
}
a#menuportfolio   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 120px;
	border: 0px;
	float: left;
	background-position: -311px;
}
a:hover#menuportfolio  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 120px;
	border: 0px;
	float: left;
	background-position: -1241px;
}
a#menufaq   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 75px;
	border: 0px;
	float: left;
	background-position: -431px;
}
a:hover#menufaq  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 75px;
	border: 0px;
	float: left;
	background-position: -1361px;
}
a#menucontact   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 127px;
	border: 0px;
	float: left;
	background-position: -506px;
}
a:hover#menucontact  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 127px;
	border: 0px;
	float: left;
	background-position: -1436px;
}
a#menuquote   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 155px;
	border: 0px;
	float: left;
	background-position: -633px;
}
a:hover#menuquote  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 155px;
	border: 0px;
	float: left;
	background-position: -1563px;
}
a#menulogin   {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 142px;
	border: 0px;
	float: left;
	background-position: -788px;
}
a:hover#menulogin  {
	background-image: url(images/CSSmenu.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 47px;
	width: 142px;
	border: 0px;
	float: left;
	background-position: -1718px;
}
#content {
	float: left;
	width: 890px;
	padding-right: 50px;
	padding-left: 50px;
}
#content li {
	margin-left: 5px;
	background-image: url(images/tri-bullet.gif);
	background-repeat: no-repeat;
	padding-left: 15px;
	list-style-type: none;
	background-position: left 5px;
}
#content1 {
	float: left;
	width: 240px;
	background-image: url(images/titleweb.jpg);
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-left: 45px;
	margin-right: 20px;
	text-align: left;
}
#content1a {
	float: left;
	width: 20px;
	background-image: url(images/Vline.jpg);
}
#content2 {
	float: left;
	width: 235px;
	background-image: url(images/titlegraphic.jpg);
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-left: 45px;
	margin-right: 20px;
	text-align: left;
}
#content3 {
	float: left;
	width: 240px;
	background-image: url(images/titlehost.jpg);
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-left: 45px;
	text-align: left;
}
#Hline  {
	clear: both;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
#content4 {
	float: left;
	width: 605px;
	background-image: url(images/titleclients.jpg);
	background-repeat: no-repeat;
	padding-left: 40px;
	padding-top: 50px;
}
#content5 {
	width: 225px;
	float: left;
	padding-top: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-align: justify;
}
#footer {
	background-color: #000000;
	height: 30px;
	width: 940px;
	clear: both;
	padding-left: 50px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #1D68CE;
	padding-top: 8px;
	text-align: center;
}
#footer a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
#footer a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
#footer a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #1D68CE;
	text-decoration: none;
}
#content6 {
	float: left;
	width: 535px;
	margin-right: 40px;
	text-align: left;
}
#content6a {
	float: left;
	background-image: url(images/titleaboutus.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6services {
	float: left;
	background-image: url(images/titleservices.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6faq {
	float: left;
	background-image: url(images/titlefaq.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6website {
	float: left;
	background-image: url(images/titleweb.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6hosting {
	float: left;
	background-image: url(images/titlehost.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6hosting img {
	float: left;
	padding-right: 20px;
}
#content6commerce {
	float: left;
	background-image: url(images/titlecommerce.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6commerce img {
	float: left;
	border: 1px solid #000000;
}
#content6animation {
	float: left;
	background-image: url(images/titleanimation.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6video {
	float: left;
	background-image: url(images/titlevideo.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6graphic {
	float: left;
	background-image: url(images/titlegraphic.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6graphic img {
	float: left;
	padding-right: 20px;
	padding-bottom: 20px;
}
#content6imaging {
	float: left;
	background-image: url(images/titleimaging.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6login {
	float: left;
	background-image: url(images/titlelogin.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6contact {
	float: left;
	background-image: url(images/titlecontact.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6quote {
	float: left;
	background-image: url(images/titlequote.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6thanks {
	float: left;
	background-image: url(images/titlethanks.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6sitemap {
	float: left;
	background-image: url(images/titlesitemap.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6404 {
	float: left;
	background-image: url(images/title404.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6gube {
	float: left;
	background-image: url(images/gubeheader.gif);
	background-repeat: no-repeat;
	padding-left: 150px;
	padding-top: 200px;
	width: 585px;
}
#sitemap {
	margin-left: 50px;
}
.listtitle {
	color: #FFFFFF;
	background-color: #FF6600;
	font-weight: bold;
	text-align: center;
}
#content6seo {
	float: left;
	background-image: url(images/titleseo.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content6seo img {
	float: left;
	padding-right: 20px;
	padding-bottom: 20px;
}
#content6   a:link {
	color: #FF6600;
	text-decoration: none;
}
#content6   a:visited {
	color: #FF6600;
	text-decoration: none;
}
#content6   a:hover {
	color: #0063BD;
	text-decoration: none;
}
#content6b {
	background-image: url(images/titlepartners.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	float: left;
	padding-top: 45px;
	width: 490px;
}
.content6img {
	float: left;
	padding-right: 10px;
	padding-bottom: 20px;
}
#content7 {
	float: left;
	width: 300px;
	text-align: left;
}
#content7a {
	float: left;
	background-image: url(images/titlefeatured.jpg);
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-left: 45px;
}
#content7b {
	float: left;
	background-image: url(images/titlequestion.jpg);
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-left: 50px;
}
.formfields {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FF6600;
	border: 1px solid #0063BD;
	margin-bottom: 10px;
}
#content8 {
	float: left;
	width: 750px;
	margin-right: 10px;
	text-align: left;
}
#content8a {
	background-image: url(images/titleportfolio.jpg);
	background-repeat: no-repeat;
	padding-left: 45px;
	padding-top: 45px;
}
#content8a a:link  {
	color: #FF6600;
	text-decoration: none;
}
#content8a a:visited {
	color: #FF6600;
	text-decoration: none;
}

#content8a a:hover {
	color: #0063BD;
	text-decoration: none;
}
.bluebold {
	font-weight: bold;
	color: #0063BD;
}
.sidebox {
	padding-bottom: 20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#content9 {
	float: left;
	width: 150px;
	text-align: left;
}
#content9a {
	padding-top: 45px;
	color: #999999;
}
#content9a a:link {
	color: #FF9933;
	text-decoration: none;
}
#content8a td {
	text-align: center;
}
#contentportfolio {
	float: left;
	width: 910px;
	padding-right: 20px;
	padding-left: 50px;
}
#content9a a:visited {
	color: #FF9933;
	text-decoration: none;
}
#content9a a:hover {
	color: #0063BD;
	text-decoration: none;
}
#dropupmenu {
	background-color: #000000;
	height: 110px;
	width: 200px;
	float: none;
	position: relative;
	top: 59px;
	left: 230px;
	visibility: hidden;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	padding-top: 5px;
	padding-left: 5px;
}
#dropupmenu a:link {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
#dropupmenu a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
#dropupmenu a:hover {
	font-weight: bold;
	color: #FF6600;
	text-decoration: none;
}
#content a:link {
	color: #FF6600;
	text-decoration: none;
}
#content a:visited {
	color: #FF6600;
	text-decoration: none;
}
#content a:hover {
	color: #0063BD;
	text-decoration: none;
}
