@charset "utf-8";
body  {
	font: 110% Times New Roman, Arial, Helvetica, serif;
	background: #fcfbe3;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	width: 1004px;  /* using 20px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	background:  #fcfbe3;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #fcfbe3;
	background-image:url(imagini/header.jpg);
	width: auto;
	height: 200px;
	padding: opx;  /* 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. */
} 
#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 */
}

/* Begin Top Menu (navbar) */

#navcontainer {background-image:url(navbar1004.jpg);
		height: 64px;
		background-repeat:no-repeat;
		background-color:#755c3b;
}

#navbar
        {
/*        font-size: small; */
        font-family: "Times New Roman", Garamond, serif;
		font-weight: bold;
        float:right;
        margin:0em;
        margin-top: 0em;
		margin-left: 200px;
		
		
		/* background-image:url(navbar1004.png);
		height:65px; */
        }
                
#navbar a
        {
        text-align: center;
        display:block;
        border: 0px;
        white-space:nowrap;
        margin:0;
        padding: 0.4em;
		height: 15px;
        }
        
#navbar a:link, #navbar a:visited, #navbar a:active        /* menu at rest */
        {
        color: #fcfbe3;
        background-color: #a47f59;
        text-decoration:none;
		padding-right: 10px;
		padding-left: 10px;
		
        }
        
#navbar a:hover                                          /* menu on mouse-over  */
        {
        color: #fcfbe3;
        background-color: #a47f59;
        text-decoration:underline;
        }       
        
#navbar ul
        {
        list-style:none;
        margin:0;
        padding:0;
        float:left;
        width: 160px;    /* width of all menu boxes */ 
        /* NOTE: For adjustable menu boxes you can comment out the above width rule.
        However, you will have to add padding in the "#navbar a" rule so that the menu boxes
        will have space on either side of the text -- try it */
        }

#navbar li
        {
        position:relative;
        min-height: 1px;                /* Sophie Dennis contribution for IE7 */
        vertical-align: bottom;         /* Sophie Dennis contribution for IE7 */
        }



div#navbar li:hover
        {
        cursor:pointer;
        z-index:100;
        }


/* End Top Menu (navbar) */

/* Where to place navbar */

#navbar-container
        {
        font-size: 2em;
        position: relative;
        /* top:200px; */
        width: 100%;
        margin: 0px;
        border: 0;
        }


/* End Where to place navbar */


/* Begin Sidebar */
#sidebar {float: left;
    height: 470px;
	position:relative;
	text-decoration: none;
	float: left; /* since this element is floated, a width must be given */
	width: 228px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-image: url(sidebarleft01.jpg); /* the background color will be displayed for the length of the content in the column, but no further */
	background-repeat: no-repeat;
	background-color: #cdbb99;
	padding: 15px 10px 15px 20px;
}

.menutitle{
cursor:pointer;
text-decoration: none;
color:#fcfbe3;
font-variant: small-caps;
font-weight: bold;
width:140px;
text-align:left;
font-weight:bold;
margin-bottom: 15px;
margin-top: 15px;
letter-spacing: 2px;
padding: 5px;
/*/*/ border:0;/* */
}

.menutitle a:hover  {text-decoration: underline;
}

.submenu a{
margin-left: 20px;
margin-bottom: 15px;
margin-top: 15px;
line-height: 1.5;
text-decoration: none;
color:#fcfbe3;
font-variant: small-caps;
letter-spacing:0;
padding: 10px;
}

.submenu a:hover  {text-decoration: underline;
}




/* End Sidebar */


/* Begin Content */

#mainContent { 
	margin: 0 0 0 280px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1 {font-family:  Garamond, "Times New Roman", Times, serif;
				font-size: 36px;
				color: #755c3b;
}
#mainContent h2 {font-family: "Times New Roman", Times, serif;
				font-size: 18px;
}
#mainContent p {font-family: "Georgia", "Times New Roman", serif;
}

#mainContent ul
{
list-style-type: none;
padding: 0;
margin: 0;
}


#mainContent a {
font-weight:bold;
text-decoration: none;
color: #755c3b;
}

#mainContent a:hover {
text-decoration: underline;
}

#boardlist a {
font-weight:bold;
text-decoration: none;
color: #000000;
}

#boardlist a:hover {
text-decoration: none;
color: #755c3b; 
}



/* End Content */


#footer { 
	padding: 0px 0px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	 
	text-align: right ;
	color: #755c3b;

} 




#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 10px 10px 80px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	font-family:  Georgia, "Times New Roman", Times, serif;
	text-align: right;
}
.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;
}