/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	border: 0;
	outline: 0;
	font-size: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
	text-align: center;
	vertical-align: top;
	color: #999933;
	line-height: 16px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	background-color: #999933;
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	font-weight: bold;
	font-size: 12px;
	font-variant: normal;
	font-style: normal;
	line-height: 16px;
	color: #330066;
	font-family: "Trebuchet MS";
	text-transform: uppercase;
}
/* Sets the style for visited links. */
a:visited {
	color: #330066;
	font-weight: bold;
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	font-variant: normal;
	text-transform: uppercase;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #999933;
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #330066;
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-style: normal;
	line-height: 12px;
	font-weight: bold;
	font-variant: normal;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #330066;
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
	font-family: "Trebuchet MS";
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 970px;
	margin-top: -10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: thin none #CCCCCC;
	padding: 0px;
	height: auto;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 100px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	border-bottom-width: 0px;
	border-bottom-style: none;
	border-bottom-color: #fff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: -1px;
	margin-left: 6px;
}
#outerWrapper #topNavigation {
	background-color: #999933; /* Sets the bottom border properties for an element using shorthand notation */
	height: 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-left: 5px;
	margin-right: 0px;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-bottom: 0px;
	margin-top: 1px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}
#topNavigation2 {
	background-color: #330066; /* Sets the bottom border properties for an element using shorthand notation */
	height: 44px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-left: 8px;
	margin-right: 0px;
	padding-top: -3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 3px;
	margin-bottom: 0px;
	margin-top: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
	width: 970px;
}
#deskNavigation {
	background-color: #ebebeb; /* Sets the bottom border properties for an element using shorthand notation */
	height: 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-left: 50px;
	margin-right: 0px;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-bottom: 0px;
	margin-top: 1px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	border: thin none #CCCCCC;
	margin-left: 5px;
	margin-top: 0px;
	background-color: #FFFFFF;
	height: auto;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 146px;
	padding-top: 5px;
	padding-right: 7px;
	padding-bottom: 10px;
	padding-left: 0px;
	height: auto;
	background-color: #FFFFFF;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: #666;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #ebebeb;
  border-left: solid 1px #666; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 162px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #E0DFE3;
	border-left-color: #666666;
	padding-top: 10px;
	padding-right: 8px;
	padding-bottom: 15px;
	padding-left: 24px;
	text-align: left;
}


#outerWrapper #contentWrapper #contentphp {
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 162px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #E0DFE3;
	border-left-color: #666666;
	padding-top: 10px;
	padding-right: 8px;
	padding-bottom: 15px;
	padding-left: 24px;
	text-align: left;
	height: 1350px;
}
#outerWrapper #contentWrapper #compare {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 163px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #E0DFE3;
	border-left-color: #666666;
	padding-top: 10px;
	padding-right: 4px;
	padding-bottom: 15px;
	padding-left: 8px;
	text-align: left;
}

#outerWrapper #contentWrapper #contenthome {
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 162px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #E0DFE3;
	border-left-color: #666666;
	padding-top: 10px;
	padding-right: 4px;
	padding-bottom: 15px;
	padding-left: 0px;
	text-align: left;
	background-color: #FFFFFF;
	height: 1800px;
}
#outerWrapper #contentWrapper #contentbottom {
	margin-top: 15px;
	margin-bottom: 0px;
	text-align: left;
	border: medium dotted #999933;
	height: 445px;
	background-repeat: repeat;
	background-position: left bottom;
	width: 724px;
	margin-left: 0px;
	background-color: #ebebeb;
	padding-top: 12px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
	float: none;
	clear: right;
	margin-right: 0px;
}

#outerWrapper #contentWrapper #comparebottom {
	margin-top: 15px;
	margin-bottom: 0px;
	text-align: left;
	border: medium dotted #999933;
	height: 400px;
	background-repeat: repeat;
	background-position: left bottom;
	width: 735px;
	margin-left: 28px;
	background-color: #ebebeb;
	padding-top: 12px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
	background-image: url(images/green.jpg);
	float: none;
	clear: right;
	margin-right: 0px;
}

#outerWrapper #contentWrapper #comparebottom {
	margin-top: 15px;
	margin-bottom: 0px;
	text-align: left;
	border: medium dotted #999933;
	height: 400px;
	background-repeat: repeat;
	background-position: left bottom;
	width: 735px;
	margin-left: 28px;
	background-color: #ebebeb;
	padding-top: 12px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
	background-image: url(images/green.jpg);
	float: none;
	clear: right;
	margin-right: 0px;
}
#outerWrapper #contentWrapper #contentontact {
	margin-top: 0;
	margin-bottom: 0px;
	text-align: left;
	border: medium dotted #999933;
	height: 400px;
	background-repeat: repeat;
	background-position: left bottom;
	width: 680px;
	margin-left: 30px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 20px;
	background-image: url(images/green.jpg);
}

#outerWrapper #contentWrapper #contentontactphp {
	margin-top: 0;
	margin-bottom: 0px;
	text-align: left;
	border: medium dotted #999933;
	height: 400px;
	background-repeat: repeat;
	background-position: left bottom;
	width: 680px;
	margin-left: 30px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 20px;
	background-image: url(images/green.jpg);
}
#outerWrapper #footer {
	background-color: #333366;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

 
<style type="text/css" media="print">

/* It is common to set printer friendly styles such as a white background with black text. */
body {
	background-color:#CC9966;
	background-image: none;
	border-color: #000; /* Sets the border color properties for an element using shorthand notation */
	color: #fff;
}

outerWrapper #contentWrapper #leftColumn1 {
  width: 170px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  width: 170px;
}
</style>

<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper, #outerWrapper #contentWrapper #content {
  zoom: 1;
}
 
 > 

 
 

#centering {
	width: 990px;
	margin: 0 auto;
	border: thin solid #333;
	background-color: #fff;
  }
  
.oneColFixCtrHdr #header {
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-left: 0px;
	margin-right: 0px;
	width: 990px;
	
}
.oneColFixCtrHdr #login {
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 75px;
	width: 260px;
	margin-left: 550px;
}

.oneColFixCtrHdr #nav {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color:#ccc;
	
}
.oneColFixCtrHdr #container {
	width: 990px; /* the auto margins (in conjunction with a width) center the page */
 	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: auto;
 
 
}
#topcontainer {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	
}
#hosting {
	width: 800px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 10px;
	
}


#hometable {
	width: 285px;
	border: thin none #CCCCCC;
	float: left;
	height: auto;
	margin-top: 12px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 8px;
}

#bin1 {
	width: 180px;
	border: thin none #CCCCCC;
	float: left;
	height: auto;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
}
#bin1liner {
	width: 180px;
	vertical-align: top;
	text-align: center;
	background-image: url(images/binbackground.png);
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: 0px;
	height: 410px;
}
#bin2 {
	width: 180px;
	border: thin none #CCCCCC;
	float: left;
	padding: 1px;
	height: auto;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 4px;
}

 #bin2liner {
	width: 180px;
	vertical-align: top;
	text-align: center;
	background-image: url(images/binbackground.png);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: 0px;
	height: 410px;
	margin: 0px;
}
#bin2home {240190px;
	border: thin none #CCCCCC;
	float: left;
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
	height: auto;
	text-align: left;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 8px;
	width: 250px;
	background-color: #999900;
}
#bin3 {
	width: 180px;
	border: thin none #CCCCCC;
	float: left;
	padding: 1px;
	vertical-align: top;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 4px;
}

#bin3home {
	width: 250px;
	border: thin none #CCCCCC;
	float: left;
	background-color:#999900;
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
	text-align: left;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 8px;
}
#bin3liner {
	width: 180px;
	vertical-align: top;
	text-align: center;
	background-image: url(images/binbackground.png);
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: 0px;
	height: 410px;
}
#bin4 {
	width: 180px;
	border: thin none #CCCCCC;
	float: left;
	padding: 1px;
	vertical-align: top;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 2px;
}

#bin4liner {
	width: 185px;
	vertical-align: top;
	text-align: center;
	background-image: url(images/binbackground.png);
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: 0px;
	height: 410px;
	margin: 0px;
}
#bin5 {
	width: 150px;
	margin-left:0px;
	border: thin none #CCCCCC;
	float: none;
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	text-align: center;
}

#bin5liner {
	width: 140px;
	margin-left: 4px;
	padding-top: 3px;
	padding-right: 0px;
	padding-left: 5px;
	padding-bottom: 5px;
	
}

#bin55 {
	width: 150px;
	margin-left:0px;
	border: thin none #CCCCCC;
	float: none;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	background-color: #FFFFFF;
}

#bin55liner {
	width: 140px;
	margin-left: 4px;
	padding-top: 3px;
	padding-right: 4px;
	padding-left: 8px;
	padding-bottom: 5px;
	
}



#bin6 {
	width: 150px;
	margin-left:0px;
	border: thin none #CCCCCC;
	float: left;
	background-repeat: no-repeat;
	background-position: top;
	padding: 2px;
	height: auto;
}

#bin6liner {
	width: 140px;
	margin-left: 4px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 5px;
	padding-bottom: 5px;
	vertical-align: top;
	margin-top: 0px;
	text-align: center;
	
}
#right {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 15px;
	background-color:#FFFFFF;
	float: right;
	width: 300px;
	margin-right: 20px;
	margin-bottom: 0px;
}

#newhomeimages {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 15px;
	background-color:#FFFFFF;
	float: right;
	width: 300px;
	margin-right: 20px;
	margin-bottom: 0px;
}
#newhomecms {
	background-color:#FFFFFF;
	float: right;
	width: 395px;
	margin-bottom: 0px;
	margin-left: 0;
	height: 1380px;
	text-align: left;
	display: inline;
	white-space: normal;
	border: medium dotted #993;
	margin-right: 5px;
	padding: 5px;
}
#login {
	padding-top: 10px;
	padding-right: 70px;
	padding-bottom: 0;
	padding-left: 0px;
	float: right;
	width: auto;
	margin-right: 5px;
	margin-top:1px;
	text-align: left;
}
#WUsignup{
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-right: 0px;
	margin-top:5px;
	text-align: center;
	margin-left: 3px;
	margin-bottom: 0px;
}


#WUsignup3{
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-right: 0px;
	margin-top:3px;
	text-align: center;
	margin-left: 3px;
	margin-bottom: 0px;
}
#WUsignup4{
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-right: 0px;
	margin-top:5px;
	text-align: center;
	margin-left: 3px;
	margin-bottom: 0px;
}
#compare_button {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	float: left;
	margin-right: 20px;
	margin-top:5px;
	text-align: left;
	margin-left: 20px;
}

#window {
	float: left;
	width: auto;
	margin-right: 5px;
	margin-top:0px;
	margin-left: 25px;
	padding: 0px;

}
#unix {
	float: none;
	width: 300px;
    padding: 0px;
	background-position: bottom;
	height: 53px;
	vertical-align: bottom;
	margin: 0px;
}
.oneColFixCtrHdr #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 */
	background-image: url(%20);
}
.oneColFixCtrHdr #mainContent {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-image: url(images/net.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.oneColFixCtrHdr #footer {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color:#330066;
	margin-left: 0px;
	margin-right: 0px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


#lowerbin1 {
	width: 245px;
	border: thin none #CCCCCC;
	float: left;
	background-repeat: no-repeat;
	background-position: top;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 10px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
}

#lowerbin2 {
	width: 245px;
	border: thin none #CCCCCC;
	float: left;
	background-repeat: no-repeat;
	background-position: top;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
}


#services {
	width:auto;
	border: thin none #999900;
	margin-top: 8px;
	margin-right: 1px;
	margin-bottom: 8px;
	margin-left: 185px;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 0px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
}

#company {
	width:auto;
	border: thin none #999900;
	margin-top: 8px;
	margin-right: 1px;
	margin-bottom: 8px;
	margin-left: 125px;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 0px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
}

#offers {
	width: 338px;
	border: thin none #999900;
	float: left;
	margin-top: 8px;
	margin-right: 1px;
	margin-bottom: 2px;
	margin-left: 0px;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
}
#HSoffers {
	width: 800px;
	border: thin none #999900;
	float: left;
	margin-top: 8px;
	margin-right: 1px;
	margin-bottom: 8px;
	margin-left: 1px;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 8px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
}

#students {
	width: 680px;
	border: medium dotted #999900;
	float: none;
	clear: right;
	text-align: left;
	vertical-align: top;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 20px;
	padding: 15px;
	position: absolute;
}

#compare_plans {
	width: auto;
	border: medium dotted #999900;
	float: none;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 4px;
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
}

#rightswish {
	width: 422px;
	border: thin none #999900;
	float: right;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	clear: none;
	text-align: center;
	vertical-align: top;
	background-position: top;
	padding: 5px;
}


#lowerbin4 {
	width: 200px;
	border: thin none #999900;
	float: left;
	clear: none;
	text-align: center;
	vertical-align: top;
	padding-top: 8px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
	height: 300px;
	margin: 4px;
}

#lowerbin5 {
	width: 225px;
	border: thin none #999900;
	float: left;
	clear: none;
	text-align: center;
	vertical-align: top;
	padding-top: 8px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 20px;
	height: 300px;
	margin: 4px;
}


#lowerbin6 {
	width: 185px;
	border: thin none #999900;
	float: right;
	clear: none;
	text-align: left;
	vertical-align: top;
	padding-top: 8px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
	height: 300px;
	margin: 4px;
}

#helpdesksm {
	width: 715px;
	border: medium dotted #999900;
	float: left;
	clear: none;
	text-align: left;
	vertical-align: top;
	height: 85px;
	margin-top: 15px;
	margin-right: 4px;
	margin-bottom: 10px;
	margin-left: 4px;
	padding: 8px;
}

#helpdesk2 {
	width: 715px;
	border: medium dotted #999900;
	float: left;
	clear: none;
	text-align: left;
	vertical-align: top;
	height: 20px;
	margin-top: 8px;
	margin-right: 4px;
	margin-bottom: 20px;
	margin-left: 4px;
	padding-top: 15px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
}

#contactform {
	width: 715px;
	border: medium dotted #999900;
	float: left;
	clear: none;
	text-align: left;
	vertical-align: top;
	height: auto;
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 20px;
	margin-left: 4px;
	padding: 10px;
}
 /*fonts*/

.boldpurple {
	font-size: 12px;
	color:#330066;
	line-height: normal;
	font-style:normal;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	font-variant: normal;
	text-align: left;
}



.style22 {
	font-size: 16px;
	font-family: "Trebuchet MS";
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	color:#333300;
	font-variant: normal;
	text-transform: none;
	text-align: left;
	text-indent: 20px;
}

.text {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 14px;
	color:#330066;
	font-variant: normal;
	text-transform: none;
	font-weight: normal;
	text-align: left;
	text-indent: 0px;
	white-space: normal;
	letter-spacing: normal;
	word-spacing: normal;
}
.text2 {
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 20px;
	color:#330066;
	font-variant: normal;
	text-transform: none;
	font-weight: normal;
	text-align: center;
	text-indent: 0px;
	white-space: normal;
	letter-spacing: 0.0125em;
	word-spacing: normal;
}
.textkern {
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 12px;
	color:#3c1b5c;
	font-variant: normal;
	text-transform: none;
	font-weight: normal;
	text-align: center;
	text-indent: 0px;
	white-space: normal;
	letter-spacing: 0.0125em;
	word-spacing: normal;
}
.boldtext {
	font-size: 14px;
	font-family: "Trebuchet MS";
	font-style: normal;
	line-height: 16px;
	color:#330066;
	font-variant: small-caps;
	text-transform: none;
	font-weight:bold;
}
.blueheader {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 18px;
	color:#000033;
	font-variant: small-caps;
	text-transform: none;
	font-weight:normal;
}

.know {
	font-size: 14px;
	font-family: "Trebuchet MS";
	font-style: normal;
	line-height: 16px;
	font-weight: normal;
	color:#000000;
	font-variant: normal;
	text-transform: none;
	text-align: left;
}
.small {
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 10px;
	font-weight: 200;
	color:#666666;
	font-variant: normal;
	text-transform: none;
}

.white {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: 200;
	color:#CCCCCC;
	font-variant: normal;
	text-transform: none;
}

.black {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: 200;
	color:#000;
	font-variant: normal;
	text-transform: none;
	text-align: left;
	text-indent: 0px;
}
.green {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: 200;
	color:#666600;
	font-variant: normal;
	text-transform: none;
	text-align: center;
}

.whitefooter {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 16px;
	font-weight: 200;
	color:#FFFFFF;
	font-variant: normal;
	text-transform: none;
	text-align: center;
}

.whiteknow {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 24px;
	font-weight: 200;
	color:#CCCCCC;
	font-variant: normal;
	text-transform: none;
}
.whitebold{
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#FFFFFF;
	font-variant: normal;
	text-transform: uppercase;
}

.heading{
	font-size: medium;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#999933;
	font-variant:normal;
	text-transform: uppercase;
}
.indentheading{
	font-size: medium;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#999933;
	font-variant:normal;
	text-transform: uppercase;
	text-indent: 15px;
}
.headingx {
	font-size: small;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#999933;
	font-variant:normal;
	text-transform: uppercase;
}

.smgreenheading {
	font-size:16px;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 18px;
	font-weight: bold;
	color:#999933;
	font-variant:normal;
	text-transform: none;
	text-indent: 20px;
}

.blueheading {
	font-size: 16px;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#330066;
	font-variant:normal;
	text-transform: uppercase;
	text-indent: 0px;
	text-align: left;
}
.blueheading2 {
	font-size: 16px;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#330066;
	font-variant:normal;
	text-transform: uppercase;
}

.blueheadingflush {
	font-size: 16px;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: normal;
	font-weight: bold;
	color:#330066;
	font-variant:normal;
	text-transform: uppercase;
	text-indent: 0px;
}
.smheading {
	font-size: 14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: normal;
	font-weight: bold;
	color:#330066;
	font-variant:small-caps;
	text-transform: none;
}

.getting {
	font-size: 14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#CC6600;
	font-variant:normal;
	text-transform: none;
}
.navheading {
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#666666;
	font-variant:normal;
	text-transform: none;
	position: static;
	height: 16px;
	width: auto;
}

.planheading {
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height: 16px;
	font-weight: bold;
	color:#666666;
	font-variant:normal;
	text-transform: none;
	position: static;
	height: 16px;
	width: auto;
}
.pageheading {
	font-size: 14px;
	font-family:"Trebuchet MS";
	font-style:normal;
	line-height: 14px;
	font-weight: bold;
	color:330066;
	font-variant:normal;
	text-transform: uppercase;
	vertical-align: top;
}

