@charset "utf-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.vpnProxy #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.vpnProxy #header {
	background-color: #CC9900;
	text-align: center;
}
.vpnProxy #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 */
}

.vpnProxy #header table {
	margin: 1;
	height: auto;
	width: 95%;
	font-weight: bold;
}
.vpnProxy #header a {
	text-decoration: none;
	display: block;
	color: #000000;
}

.vpnProxy #header td {
	text-align: center;

}
.vpnProxy #header td:hover {
	background-color: #FFFFFF;
}
.vpnProxy #footer {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #CC9900;
}
.vpnProxy #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: small;
	padding-right: 10px;
}
.vpnProxy  #TopCorner {
	background:#FFFFFF;
	padding-left: 0px;
	text-align: left;
	background-image: url(images/topcorner.png);
	height: 24px;
	background-repeat: no-repeat;
	border-right: 10px solid;
	border-right-color: #CC9900;
}
.vpnProxy #BottomCorner {
	background:#FFFFFF;
	padding-left: 0px;
	text-align: left;
	background-image: url(images/bottomcorner.png);
	height: 24px;
	background-repeat: no-repeat;
	border-right: 10px solid;
	border-right-color: #CC9900;
}

.vpnProxy #mainContent {
	background: #FFFFFF;
	border-left: 10px solid;
	;
	border-left-color: #CC9900;
	padding: 0 20px;
	border-right: 10px solid;
	border-right-color: #CC9900;
}

.vpnProxy #mainContent ul {
	background: #FFFFFF;
	;
	list-style-image: url(images/bullet.gif);
	padding-left: 20px;
	margin-left: 0px;
}
.vpnProxy #mainContent li {
	margin: 10px;

}
