* {
	box-sizing:border-box;
	
}

body  {
	margin: 0; /* 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;
}
.twoColFixRtHdr #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColFixRtHdr #header {
	padding: 0;  /* 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. */
	display: block;
} 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
}
.twoColFixRtHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 0;
} 
.twoColFixRtHdr #footer {
	padding: 0;
	background-color: #CCCCCC;
	background-image: url(../media/greyBg.gif);
} 
.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;
}
#sidebar1 #marginHeader {
	background-image: url(../images/rounded_box_css/rounded_box_r1_c1.gif);
	background-repeat: no-repeat;
	height: 11px;
}
#sidebar1 #marginFooter {
	background-image: url(../images/rounded_box_css/rounded_box_r4_c1.gif);
	background-repeat: no-repeat;
	height: 11px;
}
#sidebar1 #marginBody {
	background-image: url(../images/rounded_box_css/rounded_box_r2_c1.gif);
	background-repeat: repeat-y;
	padding-right: 10px;
	padding-left: 10px;
}
#searchform {
	margin: 0px;
	padding-top: 4px;
}

nav {
	background:rgb(113,0,0);
	border-radius:10px;
}

nav ul, nav ul li {
	list-style:none;
	padding:0;
	margin:0;
}

nav ul li a {
	color:rgba(255,255,255,1) !important;
	display:block;
	
}

nav ul li a span {display:block;
	padding:5px 0 0 0;
	text-align:center;
	font-size:14px;
	font-weight:bold;
}
