﻿/*Extraido y modificado de This is a free web template by ZyPOP (http://www.zypopwebtemplates.com)*/
@import url(http://fonts.googleapis.com/css?family=Oxygen:400,700);
/* global */
body {
	margin:0px auto;
	padding:0;
	background: #222; 
	font-family: 'Oxygen', 'sans-serif';
	font-size: 0.8em;
	color:#555; 
}
/*texto suelto*/
p { font-size: 1.1em; }
h2 {
	color:rgb(248, 140, 0); 
	font-size:1.5em; 
    padding-top: -3px
}
/*bordes de labels*/
input 
 {
	color:#333333;
	font-size:13px;
	font-family:Oxygen, Arial, Helvetica, sans-serif;
	border:1px solid #ddd;
}
input[type=text] 
{
    width:160px;
}
label {
	float:left;
	font-family:Oxygen, Arial, Helvetica, sans-serif;
}
textarea {
	color:#333333;
     width: 250px;
     height: 82px;
	font-size:13px;
	font-family:Oxygen, Arial, Helvetica, sans-serif;
	border:1px solid #ddd;
}
/*formulario de botones*/
.btnBoton {
    height:25px;/*tamaño estandar de boton  ...*/
    width:85px !important;/*tamaño estandar de boton...*/
    border:none;
    background-color: rgb(248, 140, 0);
    border-radius: 5px;
    color: #FFFFFF;
    display: inline-block;
    font-weight: bold;
    padding: 6px 10px; /*padding: 8px 20px;*/
    font-size: 0.9em;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}
/*dropdown*/
select {
	background: rgb(255, 255, 255); 
    border: 1px solid rgb(204, 204, 204); 
    border-image: none; 
    font-size: inherit;
    padding: 2px;
}
legend {
	font-weight:bold;
	font-size:14px;
	padding-right:10px;
	color:#222;
}
blockquote {
	display:block;
	border-left:5px solid #ddd;
	padding:10px;
	margin-bottom:20px;
}
/**fuentes propias*/
/**** GRID VIEW  *****/
.grid {
	border:none;
}
.grid-header {
     margin: 15px 1px 15px 1px;
    background: rgb(45, 45, 45);
	color: white;
	height: 30px;
}
.grid-row {
	background-color: White;
}
.grid-alternate-row {
	background-color: rgba(0,0,0,0.03); 
}
.grid td {
    border:none; 
     /*padding abajo ,izquierda,arriba, derecha*/
    padding:0px 15px;  
}
.grid-selected, .grid-edit {
	background-color:#CCCCCC;
}
.grid-pager {
	background-color: rgb(221, 221, 221);
}
.grid-pager a{
    color:rgb(248, 140, 0);
}
.grid-header  a{
    color:#fff;
}
.grid-footer {
}
/*modal extraido de la web paulrhayes.*/
/* Container */
.modal {
    /* Overlay page content */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    /* Transition opacity on open */
    -webkit-transition: opacity 500ms ease-in;
    -moz-transition: opacity 500ms ease-in;
    transition: opacity 500ms ease-in;
    /* Hide for now */
    opacity: 0;
    pointer-events: none;
}
/* Show modal */
.modal:target {
    opacity: 1;
    pointer-events: auto;
    /* at time of writing (Feb 2012), pointer-events not supported by Opera or IE */
}
/* Content */
.modal  div {
    /*aqui estoy cambiando*/
    width: 280px;
     background: #fff;
    position: relative;
    margin: 10% auto;
    /* Default minimise animation */
    -webkit-animation: minimise 500ms linear;
    -moz-animation: minimise 500ms linear;
    animation: minimise 500ms linear;
    /* Prettify */
    padding: 30px;
    border-radius: 7px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
    background: #fff;
    background: -moz-linear-gradient(#fff, #ccc);
    background: -webkit-linear-gradient(#fff, #ccc);
    background: -o-linear-gradient(#fff, #ccc);
    background: linear-gradient(#fff, #ccc);
    text-shadow: 0 1px 0 #fff;
}
/* Override animation on modal open */
.modal:target  div {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    animation-name: bounce;
}
.modal h4{
	color:rgb(248, 140, 0); 
	font-size:1.2em; 
    padding-top: -2px
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale3d(0.1,0.1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
  55% {
    -webkit-transform: scale3d(1.08,1.08,1);
    box-shadow: 0 10px 20px rgba(0,0,0,0);
  }
  75% {
    -webkit-transform: scale3d(0.95,0.95,1);
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
  }
  100% {
    -webkit-transform: scale3d(1,1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
}

@-webkit-keyframes minimise {
  0% {
    -webkit-transform: scale3d(1,1,1);
  }
  100% {
    -webkit-transform: scale3d(0.1,0.1,1);
  }
}
@-moz-keyframes bounce {
  0% {
    -moz-transform: scale3d(0.1,0.1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
  55% {
    -moz-transform: scale3d(1.08,1.08,1);
    box-shadow: 0 10px 20px rgba(0,0,0,0);
  }
  75% {
    -moz-transform: scale3d(0.95,0.95,1);
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
  }
  100% {
    -moz-transform: scale3d(1,1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
}
@-moz-keyframes minimise {
  0% {
    -moz-transform: scale3d(1,1,1);
  }
  100% {
    -moz-transform: scale3d(0.1,0.1,1);
  }
}
@keyframes bounce {
  0% {
    transform: scale3d(0.1,0.1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
  55% {
    transform: scale3d(1.08,1.08,1);
    box-shadow: 0 10px 20px rgba(0,0,0,0);
  }
  75% {
    transform: scale3d(0.95,0.95,1);
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
  }
  100% {
    transform: scale3d(1,1,1);
    box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
}
@keyframes minimise {
  0% {
    transform: scale3d(1,1,1);
  }
  100% {
    transform: scale3d(0.1,0.1,1);
  }
}
/* Modal close link */
.modal a[href="#close"] {
    position: absolute;
    right: 0;
    top: 0;
    color: transparent;
}
/* Reset native styles */
.modal a[href="#close"]:focus {
    outline: none;
}
/* Create close button */
.modal a[href="#close"]:after {
    content: 'X';
    display: block;
    /* Position */
    position: absolute;
    right: -10px;
    top: -10px;
    width: 1.5em;
    padding: 1px 1px 1px 2px;
    /* Style */
    text-decoration: none;
    text-shadow: none;
    text-align: center;
    font-weight: bold;
    background: #000;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.modal a[href="#close"]:focus:after,
.modal a[href="#close"]:hover:after {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}