#body{
	height: 100%;
	/*border:2px solid red;*/
}
#contenedor{
	position:relative;
	height:100%;
	max-width: 100%;
	margin:2px;
	display:table;
	border-spacing:2px;
}
#elemento{
	position:relative;
	height:100%;
	width:10%;
	/*border: 1px solid black;*/
	display:table-cell;
}

header > hgroup h1 
{
  margin: 0 0 3px 0;
  padding: 0;
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
  text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

header > hgroup h2 
{
  margin: 0 0 10px 0;
  padding: 0;
  text-align: center;
  font-style: Helvetica;
  font-size: 18pt;
  text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

header p 
{
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
  font-size: 12px;  
}

fieldset 
{
  /*font-size: 0.8em;*/
  font-size: 8pt;
  padding: 0 20px 20px;
  margin: 0 0 30px ;
  border: 2px solid #ffffff;
  background: #b8b8b8 ;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
}

legend 
{
  color: #ffffff;
  background: #990033;
  /*font-size: 0.9em;*/
  font-size: 8pt;
  font-weight: bold;
  text-align: left;
  padding: 5px;
  margin: 0;
  width: 10em;
  border: 2px solid #660033;
  border-radius: 5px;
}

/*botones de comando*/
.button {
    margin: 10px;
    text-decoration: none;
    font: bold 1.0em 'Trebuchet MS',Arial, Helvetica; /*Change the em value to scale the button*/
    display: inline-block;
    text-align: center;
    color: #fff;    
    border: 1px solid #9c9c9c; /* Fallback style */
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);    
    box-shadow: 0 0 .05em rgba(0,0,0,0.4);
}

.button, 
.button span {
    -moz-border-radius: .9em;
    border-radius: .9em;
}

.button span {
    border-top: 1px solid #fff; /* Fallback style */
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    padding: 0.5em 1.5em;    
    /* The background pattern */
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent),
                      linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent),
                      linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
                      linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);

    /* Pattern settings */
    background-size: 3px 3px;            
}

.button:hover {
    box-shadow: 0 0 .1em rgba(0,0,0,0.4);
}

.button:active {
    /* When pressed, move it down 1px */
    position: relative;
    top: 1px;
}

.button-blue {
    background: #4477a1; /*oscuro*/
    background: -webkit-gradient(linear, left top, left bottom, from(#81a8cb), to(#4477a1) );
    background: -moz-linear-gradient(-90deg, #81a8cb, #4477a1);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1');
}

.button-blue:hover {
    background: #81a8cb; /*claro*/
    background: -webkit-gradient(linear, left top, left bottom, from(#4477a1), to(#81a8cb) );
    background: -moz-linear-gradient(-90deg, #4477a1, #81a8cb);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4477a1', endColorstr='#81a8cb');            
}

.button-blue:active {
    background: #4477a1;
}

/*boton naranja*/
.button-orange {
    background: #FA832E; /*oscuro*/
    background: -webkit-gradient(linear, left top, left bottom, from(#FFAD73), to(#FA832E) );
    background: -moz-linear-gradient(-90deg, #FFAD73, #FA832E);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FFAD73', endColorstr='#FA832E');
}

.button-orange:hover {
    background: #FFAD73; /*claro*/
    background: -webkit-gradient(linear, left top, left bottom, from(#FA832E), to(#FFAD73) );
    background: -moz-linear-gradient(-90deg, #FA832E, #FFAD73);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FA832E', endColorstr='#FFAD73');            
}

.button-orange:active {
    background: #FA832E;
}