@charset "ISO-8859-1";
body {
	font: 0.8em/1.5 "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	background: #FFF url(../imagens/front/bg_line.png) repeat-x;
	margin: 0;
	padding: 0;
	color: #C4AF98;
}

.spacer { clear:both;}

.sep { background:url(../imagens/front/dot_1.png) repeat-x; height:1px; margin-top:20px; clear:both;}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h5, h6, p {
	margin-top: 10px 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
}
h2, h3 { color:#41200c}

h3 { text-transform:uppercase; font-weight:normal;}

h4 { font-weight:normal; color: #C4AF98; text-transform:uppercase; margin-top: 5px;}

#folio img { box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); }

	.thumb { width:225px; height:190px; float:left; margin:10px 22px 20px 0; }
		.thumb_img { width:225px; height:140px;  }
		.thumb_info { width:225px; height:50px; line-height:1.2em; color:#41200c }

.img_right_250 {
	display: block;
	float: right;
	height: 200px;
	width: 250px;
	margin-bottom: 8px;
	margin-left: 20px;
}

.img_left_250 {
	display: block;
	float: left;
	height: 200px;
	width: 250px;
	margin-bottom: 8px;
	margin-right: 20px;
}

.img_left_80 {
	display: block;
	float: left;
	height: 80px;
	width: 80px;
	margin-bottom: 8px;
	margin-right: 20px;
}

.img_right_80 {
	display: block;
	float: right;
	height: 80px;
	width: 80px;
	margin-bottom: 8px;
	margin-left: 20px;
}

a:link {
	color: #41200c;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #41200c;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}



#folio a:link {
	color: #41200c;
	font-weight:bold;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
#folio a:visited {
	color: #41200c;
	font-weight:bold;
	text-decoration: underline;
}
#folio a:hover, #submenu a:active, #submenu a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.container {
	width: 960px;
	margin: 40px 0 0 40px; /* the auto value on the sides, coupled with the width, centers the layout */
}

header {
	height:200px;
}

.sidebar1 {
	float: left;
	width: 140px;
	padding-bottom: 10px;
}
.content {
	width: 720px;
	float: right;
	margin:0 40px 40px 0;
}

.content_projects {
	width: 760px;
	float: right;
	margin:0 0 40px 0;
}

.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}


#submenu li {
	margin-bottom:10px;
}

#submenu li a{
    color: #C4AF98;
    text-transform: uppercase;
	font-size:0.8em;
}

#submenu li a:hover, #submenu li a.activo{
    color: #41200c;
    text-transform: uppercase;
    text-decoration: none;
}

nav ul {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}

nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 0;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 140px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	color: #C4AF98;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #41200c;
	background: url(../imagens/front/buttons/bg_bt.png) no-repeat;
}

/* ~~ The footer ~~ */
footer a:link {
	color: #C4AF98;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
footer a:visited {
	color: #C4AF98;
	text-decoration: none;
}
footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #FFF;
}

footer {
	font-size:0.8em;
	padding: 0.01em 10px 10px 10px;
	background:#41200c;
	margin-right:40px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}