@import "css/typography.css";
@import "css/footer.css";
@import "css/header.css";
@import "css/menu.css";
@import "css/sidebars.css";
@import "css/converter.css";
@import "css/chat.css";


#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 981px;
	background-image:url(images/midd-strip.png);
	background-repeat:repeat-y;
/*	background-color:#e5f1f5;
*/	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:0;
	background-position: 0 0;
	border:0px #fff solid;

} 


#applet{
	margin-left:auto;
	margin-right:auto;
	width:710px;
	margin-top:20px;
	margin-bottom:50px;
	border:1px solid #ffffff;
}


#logo{
	position:absolute;
	top:55px;
	left:15px;
	}

body  {
	background-image:url(images/bg-pattern3.jpg);
	background-repeat:repeat-x;
	background-attachment:fixed;
	background-position:-20px -200px;
	font-family:Helvetica, Arial,  sans-serif;
	font-size:.8em;
	line-height:1.5em;
	background-color:#295f70;
	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:#23505e;
}

.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;
	margin-right: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-left: 8px;
	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;
}
