/* 
========================
  GRIDINATOR CSS v0.4.1
  http://gridinator.com/
  
  GRIDINATOR CSS is a very basic framework to create
  grid-based layouts. The content of this file is 
  provided as-is, without support.
  
  If you would like to contact GRIDINATOR to suggest
  improvements, to ask for help or to file a bug report, 
  please feel free to email: gridinator@steff.me
  
  Your grid settings:
  	columns: 3
  	column width: 325px
  	column margin: 10px
  	container margin: 10px
    
=========================
*/
* { /* quick reset */
	margin: 0;	
	padding: 0;
}

a {
	text-decoration: none;
	color: white;
}

body { 
	font-size: 14px;
	margin: 0;
	padding: 0;
	text-align: center;
	background: #f5f5f5 url(../img/fondo_quantico.jpg) repeat top center;
}

ol, ul {
	list-style: none;
}


.wrapper {
	margin: 0 auto; /* This centers the grid. Remove this line to place the grid on the left of the page. */
	text-align: left;
	width: 970px;
	overflow: hidden;
	box-shadow: 0px 3px 473px #000000;
}

.inner-wrapper {
	background: url(gridinator.png) repeat-y 0 0; /* The file gridinator.png is a grid background; delete this line to remove it. If you did not generate a background image, you can still do so by going to http://gridinator.com/ and entering the details found at the top of this CSS file. You will then be given a grid image to match your original grid.  */
	clear: both;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	padding: 0 10px 0 10px;
	position: relative;
	width: 995px;
}


.container {
	clear: both;
	float: left;
	margin: 0;
	width: 100%;	
}

.one-col, .two-col, .three-col {
	clear: none;
	display: inline;/* IE double margin fix. Feel free to move this to your IE specific stylesheets. */
	float: left;
	margin: 0 10px 0 0;
	padding: 0;
	position: relative;
	/*background: #9fcdf6;  Delete this line to remove the blue colour on columns. */
}
.one-col {
	width: 325px;
}

.two-col {
	width: 660px;
}

.three-col {
	width: 995px;
	margin-right: 0;
}

.prefix-one {
	margin-left: 335px;
}

.prefix-two {
	margin-left: 670px;
}

.suffix-one {
	margin-right: 345px;
}

.suffix-two {
	margin-right: 680px;
}

.clear { /* Useful generic clearing class. */
	clear: both;
}
.last-col {
	margin-right: 0;
}

/*=====================================*/


.sombra {
	box-shadow: 0px 3px 473px #000000;
	margin-top: 10px;
}