/**
 * leftSidebar.css
 *
 * Copyright (c) 2003-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 left-hand sidebar.
 *
 * $Id: leftSidebar.css,v 1.7 2008/06/13 16:22:43 asmecher Exp $
 */

/**
 * Common HTML elements
 */

#headerTitle {
/*	width: 100%;   está redundante com commun*/
}

#body {
	vertical-align: top;
	height: 100%;
}

#leftSidebar {
	float: left;
	width: 166px;
	padding: 0em 0em 0em 0em;
	font-size: 0.65em;
	height: 100%;
	margin-right: 5px;
	}

#leftSidebar a {
	text-decoration: none;
}

#leftSidebar a:link {
	color: #F9f9f9;
}

#leftSidebar a:active {
	color: #F9f9f9;
}

#leftSidebar a:visited {
	color: #375;
}

#leftSidebar a:hover {
	color: #FFF ;
	background: #990000;
	text-decoration: underline;
}


// Set main on non-IE browsers to have a 10% margin
*html #main {
	margin-right: 1%;
	margin-left: 1%;
} 

