@charset "UTF-8";
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;
	font-family: Calibri, Arial, sans-serif;
	font-size: 100%;
	background-color: #000;
}
#container {
	width: 960px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	margin-top: 30px;
	color: #E4D8B2;
} 
#header {
	padding-top: 0;
	padding-bottom: 0;
} 
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	padding-top: 40px;
	padding-bottom: 15px;
	color: #FFF2CA;
}
#sidebar1 ul  {
	list-style-type: none;
	margin-top: 0px;
	padding-top: 0px;
	margin-left: 35px;
	padding-left: 0px;
}
#mainContent {
	width: 700px;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 20;
	padding-bottom: 0;
	float: right;
	font-size: 80%;
	line-height: 18px;
	text-align: justify;
} 
.index {
	background-image: url(image/index-pic.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}
#leftcolumn {
	width: 179px;
	line-height: 22px;
}
#footer {
	font-size: 90%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 20;
	padding-left: 0;
	height: 60px;
} 
#contact {
	float: right;
	width: 700px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #987F5E;
	text-align: center;
	color: #A08661;
}
#contact a {
	color: #A08661;
	text-decoration: none;
}
#sidebar1 a {
	color: #E4D8B2;
	text-decoration: none;
}
.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;
}
#middlecolumn {
	width: 179px;
	float: left;
	margin-right: 44px;
	line-height: 22px;
}
#leftcolumn {
	width: 179px;
	float: left;
	margin-right: 44px;
}
#mainContent h4 {
	font-size: 110%;
	font-weight: bold;
	padding-top: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
	margin-bottom: 10px;
	color: #A08661;
}
h1 {
	font-size: 130%;
	color: #A08661;
	margin-top: 20px;
}
#mainContent a {
	color: #A08661;
	text-decoration: none;
}
#rightcolumn {
	width: 179px;
	float: left;
	line-height: 22px;
}
#middlecolumn ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}
#sidebar1 li {
	background-image: url(image/button-bg.png);
	background-repeat: no-repeat;
	list-style-type: none;
	height: 40px;
	padding-top: 12px;
	padding-left: 10px;
}
#sidebar1 a:hover {
	color: #000;
	text-decoration: none;
}
h3 {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	padding-bottom: 4px;
	border-bottom-color: #A08661;
	color: #A08661;
}
#mainContent ul {
	line-height: 22px;
	color: #E4D8B2;
	list-style-image: url(image/bul.png);
}
#contact-left {
	width: 45%;
	float: left;
}
#contact-right {
	width: 45%;
	float: right;
}
#mainContent a:hover {
	color: #E4D8B2;
	text-decoration: none;
}
.about {
	background-image: url(image/about-pic.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}
.background {
	background-image: url(image/background-pic.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}
.concepts {
	background-image: url(image/concepts-pic.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}
.projects {
	background-image: url(image/projects.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}
.contact {
	background-image: url(image/contact-pic.jpg);
	background-repeat: no-repeat;
	background-position: 260px top;
}

.floating-menu {
	position:fixed;
	z-index:100;
}
