/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

body {line-height: 1;}

ol, ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {text-decoration: none;}
del {text-decoration: line-through;}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* =============================================================================
   HTML5 element display
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

audio[controls], canvas, video {
    display: inline-block;
    *display:inline;
    * zoom: 1;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body { margin: 0;  }

body, button, input, select, textarea { }

/* 
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */

::-moz-selection { background: #000; color: #fff; text-shadow: none; }
::selection { background: #000; color: #fff; text-shadow: none; }


/* =============================================================================
   Links
   ========================================================================== */



/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img { border: 0; -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9 
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend { border: 0; *margin-left: -7px; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; *overflow: visible; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }

/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea { overflow: auto; vertical-align: top; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #ff0000; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }


/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */









/* =============================================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}


/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* GENERALES */
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/

body{
	background: url(images/dark-stone.jpg);
	font-family: Arial, Helvetica, sans-serif;
	color: #506D7C;
	font-size: 0.8em;
}

h1, h2, h3, h4, h5, h6, nav{
	font-weight: normal;
	font-family: 'Gudea', sans-serif;
}
a{
	color: #000;
	text-decoration: none;
}
a:hover{
	color: #666;
}
a img{
	opacity:0.8;
	filter:alpha(opacity=80);
}
a:hover img{
	opacity:1.0;
	filter:alpha(opacity=100);
}
p{
	line-height: 160%;
}

.Wrapper{
	width: 960px;
	margin: 0 auto;
}




/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* 		HEADER	  */
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/

header{
	width: 880px;
	padding: 0 40px 40px;
	float: left;
}
.Inner header{
	padding: 70px 40px 15px;
}
h1.Logo{
	width: 120px;
	float: left;
	margin-top: -70px;
}
.Logo a{
	width: 120px;
	height: 180px;
	display: block;
	text-indent: -9000px;
	background: url(images/logo-sindsa.png) top center no-repeat;
}
.Logo a:hover{
	background-position: bottom center;
}

nav{
	height: 50px;
	background: url(images/nav-lines.png) top left repeat-x;
	width: 380px;
	float: left;
	text-transform: uppercase;
}
nav ul{
	text-align: center;
}
nav ul li{
	display: inline;
	font-size: 1.2em;
	display: inline;
	float: left;
	padding: 16px 0 ;
	width: 180px;
	text-align: center;
}
nav ul li a{
	color: #660000;
	padding: 7px 10px;
}
nav ul li a:hover{
	color: #fff;
	background: #003366;
}

.TopContact{
	text-align: right;
	color: #666;
}
.TopContact a{
	color: #666;
}
.TopContact a:hover{
	color: #506D7C;
}

/*
.HomeBoxes li a{
	width: 320px;
	height: 320px;
	display: block;
	color: #fff;
}
.HomeBoxes li a.box01{
	background: url(images/home-box-01.jpg) no-repeat;
}
.HomeBoxes li a.box01:hover{
	background-position: 0 -320px;
} 
*/

ul#menu {
		width: 960px;
		height: 320px;
		float: left;
		-moz-box-shadow:    0 0 3px 1px #888;
	 	-webkit-box-shadow: 0 0 3px 1px #888;
		box-shadow: 0 0 3px 1px #888;
}

/* Float LI Elements - horizontal display */
ul#menu li {
	float:left;
}

/* Link - common attributes */
ul#menu li a {
	display:block;
	height: 320px;
	position:relative;
	width: 320px;
}

ul#menu li a.box01{
	background:url(images/home-box-04.jpg) no-repeat scroll 0 -320px;
}
ul#menu li a.box02{
	background:url(images/home-box-02.jpg) no-repeat scroll 0 -320px;
}
ul#menu li a.box03{
	background:url(images/home-box-03.jpg) no-repeat scroll 0 -320px;
}


/* Span (on hover) - common attributes */
ul#menu li a span {
	background:url(images/home-box-04.jpg) no-repeat scroll bottom center;
	display:block;
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:100;
}

ul#menu li a.box02 span {
	background:url(images/home-box-02.jpg) no-repeat scroll bottom center;
}
ul#menu li a.box03 span {
	background:url(images/home-box-03.jpg) no-repeat scroll bottom center;;
}

/* Span (on hover) - display pointer */
ul#menu li a span:hover {
	cursor:pointer;
}


/* Shift background position on hover for the class: "portfolio" */
ul#menu li a.box01 span, ul#menu li a.box02 span, ul#menu li a.box03 span {
	background-position: 0 0;
}


.HomeBoxes li h3, .HomeBoxes li p{
	position: relative;
	top: 0;
	color: #fff;
	z-index: 150;
}

.HomeBoxes li h3{
	width: 300px;
	padding: 15px 10px;
	text-transform: uppercase;
	font-size: 1.5em;
}
.HomeBoxes li p{
	width: 240px;
	height: 40px;
	padding: 12px;
	top: 210px;
	color: #506D7C;
	font-size: 0.9em;
	line-height: 140%;
}

.Tagline{
	padding: 30px 0;
	text-align: center;
}

.Tagline h2{
	text-transform: uppercase;
	color: #777;
	font-size: 2em;
	text-align: center;
	text-shadow: 1px 1px 1px #fff;
}
.Tagline h4{
	color: #506D7C;
	font-size: 1.4em;
	margin-top: 10px;
}

.FourBoxes{
	margin: 0 0 60px 0;
}
.FourBoxes li{
	display: inline;
	float: left;
	width: 220px;
	margin: 0 10px;
	text-align: justify;
	background: url(images/yellowlines.jpg) top center no-repeat;
	padding: 25px 0 0 0;
}
.FourBoxes h3{
	color: #777;
	font-size: 1.3em;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px #fff;
	margin-bottom: 20px;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* 		INTERNAS	  */
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.Title{
	height: 35px;
	background: url(images/Top-Herramientas.png) center top no-repeat;
	padding: 35px 20px 15px 20px;
	float: left;
	width: 920px;
	
}
.Title h2, .Title h3{
	float: left;
	line-height: 36px;
}
.Title h2{
	font-size: 2.2em;
	color: #666;
	border-right: 1px dotted #aaa;
	padding: 0 10px 0 0;
	text-transform: uppercase;
	
}
.Title h3{
	color: #336699;
	padding: 0 0 0 10px;
	font-size: 1.3em;
	line-height: 2.2em;
}
.Herramientas{
	background: url(images/Top-Herramientas.png);
}
.Taladro{
	background: url(images/Top-Taladro.png);
}
.Sierra{
	background: url(images/Top-Sierra.png);
}
.Rodillo{
	background: url(images/Top-Rodillo.png);
}


.ArticleBody{
	background: url(images/stone.jpg) top left repeat;
	width: 900px;
	padding: 30px 30px 40px;
	float: left;
	height: auto!important; /* para los browsers buenos */
    height: 500px; /* para IE5+ */
    min-height: 500px; /* para los browsers buenos */
}

.ArticleBody img.BigPic {
	-moz-box-shadow: 0 0 3px 1px #aaa;
 	-webkit-box-shadow: 0 0 3px 1px #aaa;
	box-shadow: 0 0 3px 1px #aaa;
	background: url(images/stripes-yellow.jpg) bottom center repeat-x;
	padding: 0 0 5px 0;
}

.ArticleBody h4{
	color: #666;
	font-size: 1.6em;
	text-transform: uppercase;
	margin: 0 0 15px 0;
	
}

.ArticleBody p, .ArticleBody ul{
	margin: 0 0 25px 0;
	text-align: justify;
	
}
.ArticleBody ul{
	line-height: 160%;
}
.ArticleBody ul.Services li:before{
	content: "●";
	color: #888;
	font-size: 0.8em;
	padding: 0 5px 0 0;
	
}
.BicPic{
	float: left;
}
.Info{
	width: 490px;
	float: right;
	padding: 15px 0 0 0;
}


.dropdown{
	/* The expandable lists */
	display:none;
}

h4.button a{
	color: #666;

}
.ArticleBody ul.Services{
	
}





.TheGallery{
	
}

#example {
	width: 664px;
	margin: 0 auto;
}

#ribbon {
	position:absolute;
	top:-3px;
	left:-15px;
	z-index:500;
}

#frame {
	position:absolute;
	z-index:0;
	width:739px;
	height:341px;
	top:-3px;
	left:-80px;
}

/*
	Slideshow
*/

#slides {
	float: left;
	background: #fff;
	padding: 20px 5px;
	-moz-box-shadow: 0 0 3px 1px #aaa;
 	-webkit-box-shadow: 0 0 3px 1px #aaa;
	box-shadow: 0 0 3px 1px #aaa;
	width: 648px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width: 600px;
	overflow:hidden;
	position:relative;
	display:none;
	float: left;
	height: 400px;
	background: url(images/stripes-yellow.jpg) bottom center repeat-x;
	padding: 0 0 5px 0;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width: 600px;
	height: 400px;
	display:block;
	
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	/*
position:absolute;
	top:107px;
	left:-39px;
*/
	width: 24px;
	height: 400px;
	display:block;
	float: left;
}

#slides .next {
	left:585px;
}

#slides .next img, #slides .prev img{
	margin-top: 170px;
}

/*
	Pagination
*/

.ArticleBody ul.pagination {
	margin: 20px 0 0 0;
	text-align: center;
	width: 600px;
	padding: 0 24px;
	float: left;
}

.pagination li {
	margin: 0 1px;
	list-style:none;
	display: inline;
	float: left;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(images/gallery-bullets.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -14px;
}

/*
	Caption
*/

.caption {
	z-index: 500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	width: 560px;
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
}





.Clients{
	padding: 20px 0;
	margin-top: 30px;
}

.ClientsList{
}
.ClientItem{
	width: 48%;
	padding: 1% 2% 1% 0;
	height: 120px;
	float: left;
}
.ClientItem img{
	float: left;
	-moz-box-shadow: 0 0 3px 1px #aaa;
 	-webkit-box-shadow: 0 0 3px 1px #aaa;
	box-shadow: 0 0 3px 1px #aaa;
	/*
	background: url(images/stripes-yellow.jpg) bottom center repeat-x;
	padding: 0 0 5px 0;
	*/
}
.ClientInfo{
	width: 290px;
	float: right;
}
.ClientInfo h5{
	color: #666666;
    font-size: 1.3em;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
.ClientInfo a{
	color: #660000;
}
.ClientInfo a:hover{
	color: #666;
}


.TheForm{
}
.TheForm input, .TheForm textarea{
	background: #fff;	
	border: none;
	-moz-box-shadow: 0 0 2px 1px #ccc;
 	-webkit-box-shadow: 0 0 2px 1px #ccc;
	box-shadow: 0 0 2px 1px #ccc;
	padding: 9px 15px;
	color: #506D7C;
} 

.Field, .FullField{
	width: 48%;
	padding: 1%;
	float: left;
	margin-bottom: 10px;
}
.FullField{
	width: 96%;
}
.TheForm label{
	text-transform: uppercase;
	font-family: 'Puritan',sans-serif;
	color: #666;
	font-size: 0.9em;
	margin-bottom: 3px;
}

.Field input{
	width: 80%;
}

.FullField textarea{
	width: 92%;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1.05em;
	height: 100px;
}

.Field input.Send{
	float: right;
	background: #003366;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Puritan',sans-serif;
	padding: 5px 20px;
	width: auto;
	display: inline;
	margin: 0 40px 0 0;
	border-radius: 3px;
}

.Field input.Send:hover{
	background: #660000;
}

.ArticleBody p.Warning{
	color: #660000;
	font-size: 0.8em;
	margin: 5px 0;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* 		FOOTER	  */
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/

footer .Wrapper{
	background: url(images/bg-footer.jpg) top center repeat-x #003366;
	padding: 25px 0;
	height: 22px;
	-moz-box-shadow: 0 0 5px 2px #777;
 	-webkit-box-shadow: 0 0 5px 2px #777;
	box-shadow: 0 0 5px 2px #777;
	margin-bottom: 30px;
}

footer p, footer a{
	color: #bbb	;
}
footer p{
	font-size: 0.8em;
	width: 44%;
	float: left;
	padding: 0 3%;
}
footer p.Credits{
	float: right;
	text-align: right;
}
a.Factoria:hover{
	color: #ff0066;
}
a.Gardugno:hover{
	color: #ff0000;
}

.FootNav{
	width: 94%;
	float: left;
	padding: 3%;
	padding-top: 0;
	padding-bottom: 5px;
	font-size: 0.8em
}
.FootNav li{
	display: inline;
	padding: 0 5px;
	border-right: 1px solid #666;
}
.FootNav li:first-child{
	padding-left: 0;
}
.FootNav li:last-child{
	border-right: none;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* 		FULL FLOATING	  */
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.TopContact, .Tagline, .FourBoxes, .ArticleBody h4, .TheGallery, 
h4.button a, .ArticleBody ul.Services, .Clients, .ClientsList, .TheForm label, footer, .TheForm
{
	width: 100%;
	float: left;
}

.Right{
	float: right;
}
.Left{
	float: left;
}

