/* 	Screen CSS for under.ground - created By Andrew Bramley of http://www.visual-aid.co.uk 	*/


/*	General layout styles to set up the type, colours and remove unwanted margins and paddings	*/
body {
	margin:	0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #000000;
	//background-image: url(../images/bg2.gif);
}
	img {
		padding: 0;
		margin: 0;
		border:	none;
	}
	h1, h2, h3, p, ul, li, ol, blockquote {
		padding: 0;
		margin:	0;
	}
	a {
		color: #1E82B9;
	}
	a:hover {
		color: #EA581A
	}

/* 	The image style is not used in the layout but if you add any images this will allow them to 	*/
/*	float in the content; the margins and border can all be changed as necessary 					*/
img {
	float: center;
	//margin-right: 25px;
	
	margin-top:	5px;
	margin-bottom: 0px;
	/*margin-left: 5px;
	border: 2px dashed #333333;*/
}


/* 	The header styles the header text and image at the top of the layout */
#header {
	min-width:920px;
	height:108px;
	margin:0 0pt;
	background-attachment: scroll;
	background-color: #000000;
    /*background-color: #333333;*/
}

#header #text_container{
    float:left;
    text-align:center;
    width:20%;
    
}
	#header #testo {
		font-size:10px;
    margin-left:0%;
    margin-right:4%;
    display:block;
		float:right;
		clear:right;
		color:#FFFFFF;
		max-width:180px;
		height:95px;
		padding-top:7px;
		/*background-image: url(../images/barra.png);*/
	}


	#header img{
		margin-top:0px;
	}
	#heading {
		font-size:2.5em;
		font-weight:bold;
		color:#FFFFFF;
		padding-left:5%;
		padding-top:.5em;
		padding-bottom:2px;
		/*background-image: url(../images/barra.png);*/
	}
	.sub_heading {
		color:#73C342;
		font-size:.5em;
		font-variant:small-caps;
	}
	#header #header_image {
		width:700px;
		height:108px;
		text-align: left;
    //		margin: auto;
		float: left;
		clear: left;
		/*background-attachment: scroll;
		background-image: url(../images/barra.png);
		background-repeat: no-repeat;
		background-position: center bottom;*/
	}

	
/*	The content wrapper holds the faded underground map image and sets the width of the content */
#content_wrapper {
	min-width:900px;
	margin:0 auto;
	background-attachment: scroll;
	background-color: #000000;
}

#user_bar{
    background-color: #000000;
    width: 30%;
    float: left;
    color: #FFFFFF;
    padding:2px;
    padding-left:5px;
}
	#user_bar a {
		color: #006600;
	}

#bar_buttons{
    float:right;
    margin-right:10%;
    padding:2px;
    color: #FFFFFF;
}

#bar_buttons a{
    text-decoration:none;
    color:#FFFFFF;
}
	#bar_buttons a:hover{
		color: #006600;
		cursor: pointer;
	}

/* The content div sets up the main content of the page, paragraphs, headings etc... */
#content {
	float:left;
	clear:right;
	margin:5px;
        padding:5px;
	min-width:500px;
	width: 73%;
	height:500px;
	background-color: #ffffff;
}
	#content p {
		margin-left:15px;
		margin-right: 20px;
		text-align: justify;
		color: #333333;
		font-size: 1em;
		line-height: 1.3em;
	}
	#content h1, h2, h3 {
		margin-top:1.5em;
	}
	#content ul {
		margin-top:1.5em;
		margin-left: 40px;
		list-style-type: disc;
		list-style-image: url(../images/list_10x10.gif);
	}
	#content ol {
		margin-top:1.5em;
		margin-left: 40px;
	}
	#content li {
		line-height:1em;
	}
	/* 	The blockquote styling is here, this includes a class called readmore, this allows a link to be placed
		at the bottom right of the blockquote */
	#content blockquote {
		float:left;
		//width:650px;
		background-color: #CCCCCC;
		border-left-width: 4px;
		border-left-style: solid;
		border-left-color: #1E81B9;
		padding-bottom: 2px;
		padding-top: 2px;
		margin-left:20px;
		margin-top:1em;
		margin-bottom:1em;
	}
		#content blockquote .readmore {
			float:right;
			font-size:.8em;
			text-transform:uppercase;
			padding-top:1em;
			padding-right:10px;
		}
	
	/* 	The clases below controls the 2 column layout within the main content. */
	.column {
		width:280px;
		float:left;
	}
	.right {
		margin-left:20px;
		/* Use this space to individually style the right column */
	}
	.left {
		/* Use this space to individually style the left column */
	}


	/* The navigation is styled here */
#navigation {
	float:left;
        margin: 5px;
	padding: 5px;
	clear:left;
	min-width:200px;
	width:20%;
	background-color:#FFFFFF;
	min-height:440px; /* Minimum height is set to stop the shadow being cut off if not enough content is entered */
}

	#navigation #istruz {
		color:#363636;
		font-size:14px;
		font-weight:bold;
		font-family:Verdana,Helvetica;
	}

	#navigation b {
		color:#363636;
		font-size:14px;
		font-weight:bold;
		font-family:Verdana,Helvetica;
	}

	#navigation p {
		color:#000000;
		font-size:10px;
		font-weight:bold;
		font-family:Verdana,Helvetica;
	}
			
			
	/* The menu is styled using an unordered list */
	#navigation ul {
		float:left;
		margin-bottom:0;
		width:20%px;
	}
	#navigation li {
		font-weight: bold;
		font-variant: normal;
		font-size:10px;
		list-style-type: none;
		text-align: left;
		
		padding-left:5px;
		
	}
	#navigation li a {
		text-decoration:none;
		color: #363636;
	}
		/* 	The active class is to allow the 'current' link to be distinguished from other links
			This is set in the HTML by adding 'class="active"' to the link */
		#navigation li a:hover, #navigation li .active {
			text-decoration:underline;
			color: #EA581A;
			cursor: pointer;
		}
			
	/* Extra content boxes that can be placed in the navigation column can be styled here */
	#navigation .extra_content {
		background-color: #CCCCCC;
		border-left-width: 4px;
		border-left-style: solid;
		border-left-color: #1E81B9;
		margin-bottom:1em;
		margin-left:20px;
		padding-top:3px;
		padding-bottom:3px;
		font-size:1em;
		width:165px;
		clear:both;
	}
		#navigation .extra_content h1 {
			display:block;
			text-align:center;
			text-transform:uppercase;
			font-size:1.2em;
			margin:0;
		}
		#navigation .extra_content p {
			padding:0;
			margin-top:1.2em;
			margin-left:5px;
			margin-right:5px;
			margin-bottom:.2em;
			text-align:justify;
		}

#login{
    float:left;
    display:block;
    background-color:#FFFFFF;
    margin-top:5px;
    padding:5px;
    //padding-top:20px;
    width:98%;
}

#search {
    float:left;
    display:block;
    background-color:#FFFFFF;
    margin:5px;
    padding:5px;
    //padding-top:20px;
    width:95%;
}

/* The footer is styled here */
#footer {
	clear:both;
	float:center;
        padding:3px;
//	width:894px;
	background-color:#000000;
}
	#footer p {
		//line-height:2em;
		font-size:10px;
		padding:0;
		margin:0;
		text-align:center;
		color:#FFFFFF;
	}

/* End - Visit http://www.visual-aid.co.uk for more free templates */
