/**
 * styles/sidebar.css
 *
 * Copyright (c) 2003-2012 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).
 *
 */

/**
 * Sidebar
 */

#developedBy {
	text-transform: uppercase;
	font-size: 0.95em;
}

#sidebar div.block { /*Bloques de la derecha*/
	padding-bottom: 0;	
	margin-bottom: 1.5em;
	margin-top: 5px;
	padding: 2px 10px 20px 2px;
	/*Bordes redondeados*/
	border: 1px solid #cecece;
	border-radius:5px; 
	-moz-border-radius:5px; /* Firefox 3.6 and earlier */
	/*Sombra*/
	box-shadow: 2px 2px 2px #888888; 
	/*Fondo*/
	background: #F5F5F5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#F5F5F5)); /* Saf4+, Chrome */
 	background-image: -webkit-linear-gradient(top, #ffffff, #F5F5F5); /* Chrome 10+, Saf5.1+, iOS 5+ */
  	background-image: -moz-linear-gradient(top, #ffffff, #F5F5F5); /* FF3.6+ */
  	background-image: -o-linear-gradient(top, #ffffff, #F5F5F5); /* Opera 11.10+ */
  	background-image: linear-gradient(to bottom, #ffffff, #F5F5F5);	
}


#sidebar div.block span.blockTitle {
	display: block;
	padding: 0.5em 0 0.5em 0;
	font-size: 1em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: #990000 /*#0C4B9E;  */;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 10px;
	/*Bordes redondeados*/
	border-radius:5px; 
	-moz-border-radius:5px; /* Firefox 3.6 and earlier */

	/*Sombra*/
	box-shadow: 2px 2px 2px #888888; 
}

#sidebar div.block span.blockSubtitle {
	display: block;
	padding-left: 5px;
	margin-bottom: 5px;
	background: #CC0000/*#B2DCFA*/;
	color: #ffffff;
	font-weight: bold;
	/*Bordes redondeados*/
	border-radius:5px; 
	-moz-border-radius:5px; /* Firefox 3.6 and earlier */

	/*Sombra*/
	box-shadow: 2px 2px 2px #888888; 
}

#sidebar input.textField, #sidebar select.selectMenu, #sidebar input.button {
	font-size: 1em;
}

