/*CSS 01 - GISELA FERRARI */
charset "UTF-8";

/************************************************************* PARA TODO*/
* {
	margin: 0;
	padding: 0;
	outline: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
	font-size: 100%;
	height: auto !important;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	  -ms-text-size-adjust: 100%;
}

.clear {
	display: block;	
}
	
	.clear:after {
		clear: both;
		content: ".";
		display: block;
		height: 1px;
		visibility: hidden;
	}

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

body { 
	background: #fff;
	color: #222;
	-webkit-font-smoothing: antialiased;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.05em;
	font-weight: 400;
	height: auto !important;
	height: 100%;
	line-height: 1.6em;
	min-height: 100%;
}

.wrapper {
	display: block;
	margin: 0 auto;
	width: 1100px;	
}

header {
	background: linear-gradient(to right,#ff3131 0,#db3568 100%);
	border-bottom: 1px solid rgba(0,0,0,.1);
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
	display: block;
	height: 50px;
	line-height: 40px;
	overflow: hidden;
	position: fixed;
	text-transform: uppercase;
	width: 100%;
	z-index: 1000;
  margin-top: -8px;
}

footer {
	border-top: 1px solid #eee;
	color: rgba(0,0,0,.4);
	font-size: .75em;
	letter-spacing: 1px;
	padding: 24px 0;
	text-transform: uppercase;	
}

/************************************************************* NAV*/
nav > ul {
	list-style-type: none;
	margin: -1px 0 0 0;
}

	nav > ul > li {
		display: inline-block;
		transition: all 0.1s linear;
		vertical-align: middle;
	}
	
		nav > ul > li > a {
			color: rgba(255,255,255,.75);
			display: block;
			font-size: .8em;
			font-weight: 600;
			letter-spacing: 1px;
			padding: 0 24px;
			text-decoration: none;
			text-shadow: 0 1px 1px rgba(0,0,0,.1);
		}
		
			nav > ul > li.active > a,
			nav > ul > li.logo > a {
				color: rgba(255,255,255,1);	
			}
		
			nav > ul > li:not([class="active"]):hover {
				background-color: rgba(0,0,0,.1);	
			}
		
			nav > ul > li.logo > a {
				font-size: 1.15em;
				font-style: italic;
				letter-spacing: normal;
				text-transform: none;
			}

img.logo {
  padding-top: 10px;
}

nav.wrapper {
  margin-top: -7px;
}

/************************************************************* BODY*/
section#content-main {
	padding: 90px 0;	
}

section#content-main .aside {
	color: rgb(153,153,153);
	font-size: .9em;
}

	section#content-main .aside ul {
		list-style-type: none;	
	}
	
		section#content-main .aside ul > li {
			display: block;	
		}
		
			section#content-main .aside ul li a {
				color: rgba(153,153,153,.75);
				display: block;
				padding: 6px 24px;
				text-shadow: none;
			}
			
				section#content-main .aside ul li.active a {
					color: rgba(62,188,207,0.96);
				}

img.cv {
	width: 100%;
}

/************************************************************* GRILLA*/

[class*="col-"] {
	display: block;
	float:left;
	margin: 0;
}

[class*="col-"]:first-of-type {
	margin: 0;
}

	.col-1 {
		width: 100%;	
	}
	
	.col-2-3 {
  width: 59.1%;
}
	
	.col-1-3 {
		width: 32.2%;	
	}

/************************************************************* TIPOGRAFIA*/

h1 {
  border-bottom: 1px solid #eee;
  font-weight: 700;
  padding: 58px 0 12px;
  margin: 0 24px 94px;
  font-size: 13em;
}

h3 {
	margin: 0 0 12px;
	padding: 24px 24px 0;
}

p {
	padding: 0 24px 0px;	
}

	p > a {
		color: #33ffcc;
		font-weight: bold;	
	}

p.bold {
font-weight: bold;
}
 
/************************************************************* RESPONSIVE*/	
@media only screen and (max-width: 480px) {
	.wrapper {
		width: 480px;	
	}
	
	header {
		height: auto;
		position: relative;
		width: 480px;
	}
	
	nav > ul > li {
		display: block;	
	}
	
	[class*="col-"] {
		margin: 0;
		width: 100%;	
	}
	
	section#content-main > .aside {
		border-radius: 0;
		border-left: 0;
		border-right: 0;	
	}
}

			