/*
	Name: Héctor Navas
	Date: March 2013
	Description: Héctor Navas
	Versión: 1.0
	Author: Héctor Navas
	Author URI: http://www.navas.ec	
*/


/* apply a natural box layout model to all elements */
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

.chromeframe {position: absolute; top: 0;}

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* new Linux- and Windows-friendly sans-serif font stack: http://mky.be/fontstack */
body {font: 13px Helmet, Freesans, sans-serif;}

/* using local fonts? make sure to read up on Paul Irish's 
	Bulletproof @font-face syntax: http://mky.be/font-face/bulletproof/ */

/* we like off-black for text */
body, select, input, textarea {color: #333;}

a {color: #03f;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #ff0000; color: #fff; text-shadow: none;}
::selection {background: #ff0000; color: #fff; text-shadow: none;} 

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;} 

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }


/* ==========================================================================
   Author's custom styles
   ========================================================================== */


#wrapper {
	display: table;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#content {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#logo {
	color: gray;
	font-family: 'Titillium Web', sans-serif;
	font-size: 5em;
	font-weight: 200;
	margin: 0 auto;
	line-height: 1em;
}

#logo span {
	color: red;
	font-weight: 400;
}

#mytitle {
	color: gray;
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.5em;
	font-weight: 200;
	text-transform: uppercase;
	margin: 0 auto;
}

#info-contact {
	color: gray;
	font-family: 'Titillium Web', sans-serif;
	font-size: 1.1em;
	font-weight: 200;
	margin: 20px auto 0;
}

#info-contact span {
	font-weight: 700;
}

footer {
	width: 100%;
	color: gray;
	font-family: 'Lucida Grande', sans-serif;
	text-align: center;
	display: block;
	position: absolute;
	bottom: 10px;
	left: 0;
}



/* Print styles!
-------------------------------------------------------------------------------*/
@media print {



}


/* Media queries!
-------------------------------------------------------------------------------*/

@media screen and (max-width: 480px) {
body {
	-webkit-text-size-adjust: 80%;
	-moz-text-size-adjust: 80%;
	-ms-text-size-adjust: 80%;
	text-size-adjust: 80%;
}
		
}