/**
 * vanilla2.css
 *
 * Copyright (c) 2000-2008 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Vanilla theme.
 *
 * $Id: vanilla.css,v 1.4 2008/04/04 17:06:52 asmecher Exp $
 */


/*background-color: #ffffff; */

body {
	background-color: #F7F7F7; 
	/*background-color: #F1F1E5; colore originale*/ 
	color: #000000;
}

a:link {
	color: #000000;
}

a:active {
	color: #000000;
}

a:visited {
	color: #808080;
}

a:hover {
	color: #000000;
	text-decoration: underline;
/*	background: #ffffff; */
}

input.textField, select.selectMenu, textarea.textArea, input.uploadField {
	background-color: #eeeeee;
}

input.defaultButton {
	background-color: #000000;
	color: #ffffff;
}

#header {
	background-color: #E5E5E5;
	/*background-color: #CDCDB5; colore originale */
	border-bottom: 1px solid black;
	/*Added by DCAB*/
	/*padding-top: 15px;*/
	padding-top: 15px;
	/*height: 123px; originale */
	height: 150px; 
}

#main {
	background-color: #ffffff;
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;	
}

#main h2 {
	padding-left: 10px;
}

#navbar {
	padding-left: 10px;
	border-bottom: 1px solid black;
}

#breadcrumb {
	padding-left: 10px;
	padding-bottom: 10px;
/*	border-bottom: 1px solid black;	
*/}

#content {
	padding-left: 10px;
	border-top: 0px dotted #000;
}

/**
 * sidebar.css
 *
 * Copyright (c) 2000-2008 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Site-wide shared elements for pages including sidebar(s).
 *
 * $Id: sidebar.css,v 1.2 2008/04/23 00:02:45 asmecher Exp $
 */

/**
 * Sidebar
 */

#developedBy {
	text-transform: uppercase;
	font-size: 0.95em;
}

#sidebar div.block {
	font-size: 1em;
	padding-bottom: 1.5em;
}

#sidebar div.block span.blockTitle {
	display: block;
	padding: 0.5em 0 0.5em 0;
	font-size: 1em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

#sidebar div.block span.blockSubtitle {
	display: block;
	padding: 0;
}

#sidebar input.textField, #sidebar select.selectMenu, #sidebar input.button {
	font-size: 1em;
}

/**
 * rightSidebar.css
 *
 * Copyright (c) 2000-2008 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Site-wide shared elements for pages including a right-hand sidebar.
 *
 * $Id: rightSidebar.css,v 1.4 2008/05/21 20:59:58 asmecher Exp $
 */

/**
 * Common HTML elements
 */


#headerTitle {
	text-align: center;
	width: 100%;
}

#body {
	width: 100%;
}

#rightSidebar {
	float: right;
	width: 14%;
	padding: 1em 0em 1em 0em;
	font-size: 0.65em;
	height: 100%;
	margin-right: 10%;
	margin-left: 2%;
	overflow: hidden;
}

#main {
	float: left;
	width: 53%;
	margin-left: 10%;
	display: inline;
	overflow: hidden;
}

/* hack to set width for non-IE browsers to to a percentage 
   width of container (like it should be), not the window */
html>body #main {
	width: 63%;
}