@import "css/typography.css";
@import "css/footer.css";
@import "css/header.css";
@import "css/menu.css";
@import "css/sidebars.css";

.dots{
	width:100%;
	height:15px;
	margin-bottom:11px;
	border-bottom:2px #939598 dotted;
	overflow:hidden;
	line-height:12px;
	}

body  {
	font-family:Verdana;
	font-size:11px;
	background:#dedbce;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #666666;
}

.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: 4px;
	margin-right: 4px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-left: 4px;
	margin-right: 4px;
}
.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;
}
