/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Nuno Coelho

*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 11px;
	line-height: 14px;
	font-family: Helvetica, Verdana, Sans; /* choose overall font - go to www.typetester.org to test sizes and see the list of safe fonts - If the user doesnt have the first one, it try the second, and goes along the list until it finds a font that the computer has installed */
	background-color: #ffffff; /* sets the overall background color */
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

/* LINKS */
	
	
	/* colors for all links */

a:link { text-decoration: none; color: #555555; }
a:active { text-decoration: none; color: #111111; }
a:visited { text-decoration: none; color: #a1a7a8; }
a:hover { text-decoration: none; background-color:#DBD0E9; color:#555555 }
li.active a:visited { text-decoration: none; color: #555555; background-color:#DBD0E9; }

a img { border: none; }

/* MENU */

#menu {
    width: 220px; /* sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 0;
    position: fixed; /* this make the menu stay in place while the content section scrolls*/
    height: 100%;
	background-color: #fff;
}

/* This section controls each section made */ 

#menu ul {
	font-family: Helvetica, Verdana, Sans; 
	list-style: none;
	margin: 0 0 12px 0;
}

/* The following sets the style for the section heading */

#menu ul li.section-title {
	font-size: 14px;
	line-height: 17px;
	font-family: "liberation-serif-1","liberation-serif-2", "Times New Roman", Times, serif;
	font-style: italic;
	display: inline;
	color: black;
	font-weight: bold;
}

div.captioning > div.title {
	font-size: 12px;
	font-family: "liberation-serif-1","liberation-serif-2", "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: bold;
}

span#titular {
    /* meter aqui estilo de titular*/
	font-size: 14px;
	font-family: "liberation-serif-1","liberation-serif-2", "Times New Roman", Times, serif;
	font-style: italic;
	display: inline;
	color: black;
	font-weight: bold;
}

#content {
    height: 100%;
    margin: 6px 0 0 220px;
    top: 0;
}

.container {

    padding: 10px 5px 25px 10px;
}

#content p { width: 400px; margin-bottom: 9px; }

p {
    margin: 0 0 9px 0;
}

/* HEADINGS */
	
	/*
	when typing your text/descriptions follow this format to use these heading types
	
	<h1>This is the text i want to be a heading which</h1>
	
	start with h1 as your largest most important heading. you may not need all 4 but they are here if you do.
	*/

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{ margin: 0; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }

#once { clear: left; }
