/**
 * Mailing-project : Registros en la Red
 * Copyright (c) Registros en la Red
 *
 * @copyright   Registros en la Red
 * @link        http://registros.net
 */
/* 
    Created on : 15-oct-2016, 1:55:09
    Author     : adrian
*/

/* Basic Grey */
form.decoration {

}
form.decoration h1 {
    /*font-size: 25px;*/
    padding: 0px 0px 0px 160px;
    display: block;
    margin: 10px -15px 30px 0px;
    /*color: #1D4D6B;*/
}
form.decoration h1>span {
    display: block;
    font-size: 11px;
}
form.decoration label {
    /*display: block;*/
    margin: 0px;
}
form.decoration label>span {
    float: left;
    width: 20%;
    text-align: right;
    padding-right: 10px;
    margin-top: 10px;
    color: #1D4D6B;
}
form.decoration input[type="text"], 
form.decoration input[type="email"], 
form.decoration input[type="password"], 
form.decoration input[type="url"], 
form.decoration textarea, form.decoration select {
    border: 1px solid #DADADA;
    color: #1D4D6B;
    height: 30px;
    margin-bottom: 5px;
    margin-right: 6px;
    margin-top: 2px;
    outline: 0 none;
    padding: 0px 5px 0px 5px;
    font-size: 12px;
    line-height:15px;
    box-shadow: inset 0px 1px 4px #ECECEC;
    -moz-box-shadow: inset 0px 1px 4px #ECECEC;
    -webkit-box-shadow: inset 0px 1px 4px #ECECEC;
}
form.decoration textarea{
    padding: 5px 3px 3px 5px;
}
form.decoration select {
    /*background: #FFF url('down-arrow.png') no-repeat right;*/
    background: #FFF url('/public/img/16x16/down-arrow.png') no-repeat right;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    height: 35px;
    line-height: 25px;
	padding-right: 15px;
}

form.decoration select:disabled {
    background: #eeeeee url('/public/img/16x16/down-arrow.png') no-repeat right;
	color: #aaaaaa;
}

form.decoration textarea{
    height:100px;
}




form.decoration input[type='submit'],
form.decoration input[type='button'] {

	border: none;
    padding: 10px 25px 10px 25px;
    color: #FFF;
    box-shadow: 2px 2px 5px #B6B6B6;
    border-radius: 3px;
    text-shadow: 1px 1px 1px #9E3F3F;
    cursor: pointer;
	margin-right: 5px;
	
}


form.decoration input[type='submit'] {
    background: #53A054;

}
form.decoration input[type='submit']:hover {
    background: #336034;
}
form.decoration input[type='submit']:active {
    box-shadow: none;
}


form.decoration input[type='button'] {
    background: #65686B;
}
form.decoration input[type='button']:hover {
    background: #3F454C;
}
form.decoration input[type='button']:active {
    box-shadow: none;
}



input[type='text']:-moz-read-only { /* For Firefox */
    background-color: #ECECEC;
}

input[type='text']:read-only {
    background-color: #ECECEC;
}