@charset "UTF-8";
/*
 *
 * Garra's Registration form layout CSS.
 * License: GNU General Public License
 * License URI: license.txt
 *
 * Author URL: http://www.iar.unlp.edu.ar/~gvila/
 *
 * $Id: meetings_form.css 1072 2014-05-26 21:23:58Z gvila $ 
 * $Rev: 1072 $ 
 * $Date: 2014-05-26 18:23:58 -0300 (Mon, 26 May 2014) $ 
 * $Author: gvila $ 
 *
*/

/* Gecko 13 (Firefox 13) removed support for -moz-box-shadow. Since then, only the unprefixed version is supported. */

/*---------------------------------------------------------------------------*/
/* Original CSS                                                              */
/*---------------------------------------------------------------------------*/

/* =Fonts
-------------------------------------------------------------- */
input{
	font-family: Georgia, "Bitstream Charter", serif;
}
input[type=submit] {
	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
}
textarea{
	font-family: Georgia, "Bitstream Charter", serif;
}
input{
	color: #666;
	font-size: 12px;
	line-height: 18px;
}
input[type="text"]{
	background: #f9f9f9;
	border: 1px solid #ccc;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 
	padding: 2px;
}

/* =Global Elements
-------------------------------------------------------------- */
textarea{
	color: #666;
	font-size: 12px;
	line-height: 18px;	
}

textarea {
	background: #f9f9f9;
	border: 1px solid #ccc;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 
	padding: 2px;
}

/* =Content
-------------------------------------------------------------- */
#content input{
	color: #333;
	font-size: 16px;
	line-height: 24px;
}
#content textarea {
	color: #333;
	font-size: 16px;
	line-height: 24px;
}
.entry-content fieldset {
	border: 1px solid #e7e7e7;
	margin: 0 0 24px 0;
	padding: 24px;
}
.entry-content fieldset legend {
	background: #fff;
	color: #000;
	font-weight: bold;
	padding: 0 24px;
}
.entry-content input {
	margin: 0 0 24px 0;
}
.entry-content input.file,
.entry-content input.button {
	margin-right: 24px;
}
.entry-content label {
	color: #888;
	font-size: 12px;
}
.entry-content select {
	margin: 0 0 24px 0;
	width:80%;
}
.entry-content textarea {
	margin: 0 0 24px 0;
}
/*---------------------------------------------------------------------------*/
/* New CSS                                                                   */
/*---------------------------------------------------------------------------*/

/* =Layout
-------------------------------------------------------------- */
div.left-col{
	width: 50%; 
	float:left;	
	clear:left;
}
div.right-col{
	width: 50%; 
	float:right;	
	clear:right;
}
div.center-col{
	width: 100%; 
	clear:both;
}
/* =Field Width
-------------------------------------------------------------- */
.left-col input[type=text], .right-col input[type=text]
{
	width: 80%;
}
.center-col input[type=text], .center-col  textarea
{
	width: 90%;
}
