/*
 * CSS Crush(ed) on 2025-11-21 09:41:30 +0100
http://github.com/peteboere/css-crush
 */
/****************************************************
 * VARIABLES GLOBALES
 ****************************************************/

/****************************************************
 * RESET CSS STYLES
 ****************************************************
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
 ****************************************************/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/****************************************************
 * END RESET CSS STYLES
 ****************************************************/

/****************************************************
 * CLASES ÚTILES
 ****************************************************/

.relative {
	position: relative;
}

.none,.hidden {
	display: none;
}

.clear,.both {
	clear: both;
	width: 100%;
	height: 1px;
}

.radius {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.hidden {
	display: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

.bold {
	font-weight: bold;
}

/****************************************************
 * ENCABEZADOS
 ****************************************************/

h1 {
	font-size: 18px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #2583AD;
}

/****************************************************
 * FUENTES
 ****************************************************/

/****************************************************
 * INPUTS
 ****************************************************/

input[type=text],input[type=password] {
	outline: none;
	border: 1px solid #C6D9E9;
	height: 30px;
	font: 14px/30px Arial;
	padding: 0 5px;
	color: #2583AD;
	line-height: 30px;
	width: 350px;
}

textarea {
	border: 1px solid #C6D9E9;
	height: 200px;
	font: 14px/18px Arial;
	padding: 5px;
	color: #2583AD;
	width: 350px;
	resize: none;
}

select {
	outline: none;
	border: 1px solid #C6D9E9;
	font: 14px Arial;
	color: #2583AD;
	padding: 7px 5px;
	height: 33px;
	width: 362px;
}

select option {
	height: 23px;
	padding: 7px 5px 0;
}

input.button {
	display: inline;
}

/****************************************************
 * ICONOS
 ****************************************************/

.icon {
	display: block;
	cursor: pointer;
	background: url('/img/iconset.png') no-repeat top left transparent;
}

/****************************************************
 * BOTONES
 ****************************************************/

.button {
	padding: 0 20px;
	font: bold 16px/30px Arial;
	color: #2583AD;
	height: 30px;
	display: block;
	cursor: pointer;
	text-align: center;
	border: 1px solid #2583AD;
	text-decoration: none;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #ffffff;
	background: -moz-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(37%,#eaeaea),color-stop(100%,#cecece));
	background: -webkit-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -o-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -ms-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	zoom: 1;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#cecece',GradientType=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#cecece',GradientType=0)";
	background: -webkit-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -moz-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -ms-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: -o-linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
	background: linear-gradient(top,#ffffff 0%,#eaeaea 37%,#cecece 100%);
}

.button:hover {
	color: #2583AD;
	background: #cecece;
}

.button:active {
	color: #2583AD;
	background: #FFF;
}

.small-button {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: bold 12px/20px Arial;
	height: 20px;
	padding: 0 10px;
}

input.small-button {
	height: 25px;
	line-height: 25px;
}

/****************************************************
 * MENSAJES
 ****************************************************/

.alert {
	background: #FFF6BF;
	border-bottom: 2px solid #FFD324;
	border-top: 2px solid #FFD324;
	padding: 5px 20px 5px 45px;
}

label.error {
	display: block;
	font-size: 10px;
	color: #f00;
}

input.error {
	border: 1px solid #f00;
}

p.error {
	padding: 20px;
	margin: 10px 0px;
	font-weight: bold;
	color: #c00;
}

p.success {
	padding: 20px;
	margin: 10px 0px;
	font-weight: bold;
	color: #23AF46;
}

table.form th,table.form td {
	text-align: left;
	vertical-align: top;
	padding: 5px;
	font-size: 12px;
}

table.form th {
	font-weight: bold;
	padding-top: 13px;
}

table.form td.submit {
	text-align: right;
}

table.form td.th {
	padding-top: 13px;
}

/* add.css -------------------------------------------------------------------*/

#add-newsletter p.error {
	margin-top: 0px;
	margin-bottom: 20px;
}

.small {
	font-size: 12px;
}

/****************************************************
 * GENERALES
 ****************************************************/

body {
	font: 14px/16px Arial;
	color: #333;
}

body.logged {
	background: #EAF3FA;
	padding: 25px 0px;
}

body.logged #container {
	background: #FFF;
	border: 2px solid #2583AD;
	width: 70%;
	min-width: 1050px;
	padding: 25px 25px 50px;
}

body.logged a {
	color: #2583AD;
	text-decoration: none;
	font-weight: bold;
}

body.logged a:hover {
	color: #D54E21;
}

#header {
	position: relative;
	width: 70%;
	margin: auto;
	padding: 75px 27px 0;
}

#header a.logo {
	position: absolute;
	bottom: 5px;
	left: 15px;
}

#header p.welcome {
	position: absolute;
	bottom: 10px;
	right: 25px;
}

#container {
	width: 650px;
	margin: auto;
	padding-top: 75px;
	position: relative;
}

#logout {
	position: absolute;
	top: 25px;
	right: 0px;
}

fieldset {
	border: 2px solid #C6D9E9;
	padding: 25px;
}

fieldset legend {
	color: #2583AD;
}

div.wrap {
	position: relative;
}

sub {
	vertical-align: sub;
	font-size: smaller;
}

/****************************************************
 * LOGIN
 ****************************************************/

#login {
	margin: auto;
	background: url('/img/logo.png') no-repeat 95% 5%;
	padding-top: 75px;
}

#login fieldset {
	padding-top: 25px;
}

#login legend {
	font: 28px Arial;
	padding: 0 10px;
}

#login p.error {
	width: 290px;
	padding: 10px;
	margin-bottom: 25px;
}

#login input[type=password],#login input[type=text] {
	width: 300px;
}

/****************************************************
 * MENU
 ****************************************************/

#menu {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 5px;
	background: #eaf3fa;
}

#menu li {
	float: left;
	margin-right: 5px;
}

#menu a {
	display: block;
	padding: 5px;
}

#menu a:hover {
	background: #fff;
}

#add-newsletter li.add a,#add-newsletter li.add a:hover,#list-newsletter li.list a,#list-newsletter li.list a:hover {
	background: #2583AD;
	color: #fff;
}

/****************************************************
 * GENERAL TABLAS Y LISTADOS
 ****************************************************/

div.tablenav {
	clear: both;
	margin: 20px 0;
	padding: 7px 10px;
	vertical-align: text-top;
	background: #EAF3FA;
}

.free-field-input {
	margin-top: 10px;
}

