/*
 * 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.
 */
/* Font Face */

@font-face {
    font-family: 'BigNoodleTitlingRegular';
    src: url('big_noodle_titling-webfont.eot');
    src: url('big_noodle_titling-webfont.eot?#iefix') format('embedded-opentype'),
         url('big_noodle_titling-webfont.woff') format('woff'),
         url('big_noodle_titling-webfont.ttf') format('truetype'),
         url('big_noodle_titling-webfont.svg#BigNoodleTitlingRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* =============================================================================
   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 { font-size: 100%;  -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; height: 100%; font-family:'font_default'; }

body {
	min-height: 750px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	
	background-image: url(/css/imgs/bg.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-attachment:fixed;
	overflow-y: scroll;
}

body, button, input, select, textarea { font-family:Arial, Helvetica, sans-serif; color: #fff; }

/* 
 * 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
   ========================================================================== */

a { color: #00e; }
a:visited { color: #551a8b; }
a:focus { outline: thin dotted; }

/* 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 { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; margin: 0; padding: 0; }


/* =============================================================================
   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; color:#000; }

/*
 * 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: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }


/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */

#container{ width:1024px; margin: auto auto; display:block; background-color:#FFFFFF; background-position:top; background-repeat:no-repeat; margin-top:10px; }

#main{ position:absolute; margin-left:148px; width:728px; height:728px; display:block; background-color:#1f1a17; float:left; }

#mira{ position:absolute; width:293px; height:293px; background-image:url(imgs/mira.png); z-index:3; display:block; margin-left:218px; margin-top:218px; }

.quad{ width:364px; height:364px; display:block; background-color:#1f1a17; }

#q1{ position:absolute; margin-left:0px; margin-top:0px; }
#q2{ position:absolute; margin-left:364px; margin-top:0px; }
#q3{ position:absolute; margin-left:0px; margin-top:364px; }
#q4{ position:absolute; margin-left:364px; margin-top:364px; }

.bt{ position:absolute; height:21px; background-color:#1F1A17; display:block; font-size:16px; color:#fff; text-decoration:none; font-family: 'BigNoodleTitlingRegular'; letter-spacing:2px; }

#q1 .bt{ width:359px; bottom:0px; left:0px; z-index:2; padding-right:5px; text-align:right; padding-top:2px;}
#q2 .bt{ width:140px; bottom:0px; left:0px; z-index:2; padding-left:5px; text-align:left; padding-top:2px;}
#q3 .bt{ width:259px; top:0px; right:0px; z-index:2; padding-right:5px; text-align:right; padding-top:2px; }
#q4 .bt{ width:229px; top:0px; left:0px; z-index:2; padding-left:5px; text-align:left; padding-top:2px; }

#q3_1{ position:absolute; width:182px; height:182px; top:0px; left:0px; display:block; }
#q3_3{ position:absolute; width:182px; height:182px; bottom:0px; left:0px; display:block; }
#q3_4{ position:absolute; width:182px; height:182px; bottom:0px; right:0px; display:block; }

.texto { position:absolute; width:324px; height:302px; padding:20px; color:#000000; z-index:6; overflow:hidden; }

.texto a{
    color:#000;
    text-decoration:none;
}
.texto a:hover{
    text-decoration:underline;
}

#logo{ position:absolute; width:185px; height:150px; background-image:url(imgs/logo.png); display:block; margin-left:35px; margin-top:25px; }

#logo a{ width:185px; height:150px; display:block; }

#menu{ position:absolute; font-size:18px; line-height:22px; margin-left:35px; margin-top:200px;}

#menu a{ color:#FFFFFF; text-transform:uppercase; text-decoration:none; background-color:#1F1A17; display:block; letter-spacing:3px; margin-bottom:8px; padding-left:5px; padding-right:5px; font-family: 'BigNoodleTitlingRegular';  position: relative;}

#menu a:hover{ text-decoration:underline; }

#lateral{ position:absolute; margin-left:876px; width:138px; height:728px; padding-left:10px; font-size:10px; }

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

.bottom { position:absolute; bottom:0px; }

.gal_thumb{ width:50px; height:50px; display:block; }

div.sc_menu {
  /* Set it so we could calculate the offsetLeft */
  position: relative;
  height: 54px;
  width: 900px;
  /* Add scroll-bars */
  overflow: auto;
}
ul.sc_menu {
  display: block;
  height: 54px;
  /* Max width here, for users without Javascript */
  width: 10000px;
  padding: 0px;
  /* Remove default margin */
  margin: 0;
  list-style: none;
}
.sc_menu li {
  display: block;
  float: left;
  padding: 0 4px;
}
#titulo_actual{
	position:absolute;
	width:960px;
	top:123px;
	left:0px;
	text-align:center;
	color:#989696;
	text-transform:uppercase;
	font-size:16px;
}
#imagem_grande{
	position:absolute;
	width:960px;
	height:660px;
	top:0px;
	left:0px;
	display:none;
	z-index:2000;
	background:no-repeat center;
}
#imagem_grande a:hover {
	background:url(imgs/thumb_close.png) top right no-repeat;
}
#imagem_normal{
	position:absolute;
	width:400px;
	height:400px;
	top:165px;
	left:280px;
	display:block; 
}
#imagem_normal a:hover {
	background:url(imgs/thumb_open.png) top right no-repeat;
}
#img_prev{
	width:32px;
	height:62px;
	background-image:url(imgs/seta_prev.png);
	display:block;
	position:absolute;
	top:320px;
	left:215px;
	}
#img_next{
	width:32px;
	height:62px;
	background-image:url(imgs/seta_next.png);
	display:block;
	position:absolute;
	top:320px;
	left:715px;
	}
#escolher_foto a{
	color:#989696;
	text-decoration:none;
	}
#escolher_foto a:hover{
	color:#989696;
	text-decoration:underline;
	}
#escolher_foto .button{
	background-color:#1f1a17; border:none 0px; color:#989696; display:block; width:150px; height:20px; text-align:right; font-weight:bold; cursor:pointer;
	}
#escolher_foto .input{
	border:1px solid #1f1a17; color:#000000; width:25px;
	}
.invisible{
	display:none;
	}
#lista_titulo{
	position:absolute;
	top:120px;
	left:30px;
	font-size:12px;
	padding-bottom:10px;
	width:310px;
	margin-left:-10px;
	text-align:center;
	}
#lista_cart{
	position:absolute;
	top:180px;
	left:20px;
	width:320px;
	padding-left:10px;
	height:425px;
	overflow:auto;
	}
#lista_cart .button{
	background-color:#1f1a17; border:none 0px; color:#989696; display:block; width:90px; height:10px; text-align:right; font-weight:bold; cursor:pointer; margin-top:-10px;
	}
#lista_cart .input{
	border:1px solid #1f1a17; color:#000000; width:25px;
	}
.item_cart{
	background:no-repeat top;
	width:90px;
	display:block;
	padding-top:95px;
	font-size:9px;
	float:left;
	margin-right:10px;
	margin-bottom:10px;
	}
#voltar{
	position:absolute;
	bottom:20px;
	width:320px;
	text-align:center;
	left:20px;
	font-size:12px;
	}
#voltar a{
	color:#FFFFFF;
	text-decoration:none;
	}
#valor_f_cart{
	font-size:16px;
	color:#FFFFFF;
	position:absolute;
	bottom:35px;
	left:20px;
	width:320px;
	text-align:center;
}
#mensagem_cart{
	position:absolute;
	width:300px;
	margin-left:30px;
	text-align:center;
	top:163px;
	}
#area_compra{
	width:556px;
	position:absolute;
	top:120px;
	left:390px;
	}
#area_compra .titulo{
	width:556px;
	text-align:center;
	text-transform:uppercase;
	margin-bottom:20px;
	font-size:12px;
	}
#area_compra .form{
	background-color:#fff;
	color:#000;
	font-size:12px;
	padding:10px;
	}
#area_compra .input{
	border:1px solid #1f1a17; color:#000000;
	}
#area_compra .subtitulo{
	width:80px;
	float:left;
	margin-top:2px;
	margin-bottom:2px;
	}
#quadro_preco{
	width:536px;
	height:180px;
	margin-top:0px;
	background-color:#FFFFFF;
	padding:10px;
	color:#000000;
	font-size:12px;
	}
#quadro_preco .esquerda{
	width:150px;
	float:left;
	height:200px;
	display:block;
	text-align:right;
	}
#quadro_preco .direita{
	width:150px;
	height:200px;
	display:block;
	float:left;
	padding-left:5px;
	}
#quadro_preco .button{
	background:#ed9318;
	border: #211917 2px solid;
	color:#000;
	padding: 5px;
	font-size:14px;
	width:250px;
	text-align:center;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px; /* for old Konqueror browsers */
	margin-bottom:5px;
}
#quadro_preco .button:hover{
	text-decoration:underline;
}
#msg_obrigado{ 
	position:absolute;
	top:200px;
	left:100px;
	font-size:14px;
	}
#msg_obrigado a{
	color:#FFFFFF;
	text-decoration:underline;
	}
.paypal{
	background:url(imgs/paypal.jpg);
	width:128px;
	height:120px;
	position:absolute;
	left:370px;
	top:344px;
}
#fb { height:27px; width:100px; background:url(imgs/fb.png) right no-repeat; color:#FFFFFF; text-decoration:none; display:block; padding-right:35px; }
.pagination {
	position:absolute;
	margin:-26px -20px 0;
	width:100px;
	z-index:102;
	display:block;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
	z-index:102;
}

.pagination li a {
	display:block;
	width:12px;
	height:0px;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
	z-index:102;
}

.pagination li.current a {
	background-position:0 -12px;
}


.desaturate { filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: gray;
}

#accordion {
    list-style: none;
    padding: 0 0 0 0;
    width: 325px;
}
#accordion *{
    margin:0px;
}
#accordion div {
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #1F1A17;
	display: block;
	letter-spacing: 3px;
	margin-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
	font-family: 'BigNoodleTitlingRegular';
	font-size: 18px;
	line-height: 22px;
}
#accordion ul {
    list-style: none;
    padding: 0 0 0 0;
	padding-top:10px;
	padding-bottom:10px;
}
#accordion ul{
    display: none;
}
#accordion ul li {
    font-weight: normal;
    cursor: auto;
    background-color: #fff;
    padding: 0 0 0 7px;
}
#accordion a {
    text-decoration: none;
}
#accordion a:hover {
    text-decoration: underline;
}
.placeholder {
  color: #aaa !important;
}
#mute{
	/*display:none;*/
}
/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.media{
    width: 900px;
    height: 74px;
    margin-left: 30px;
    bottom: 10px;
    float: left;
    display: inline-block;
    overflow-x: auto;
    -ms-overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-y: hidden;
    white-space: nowrap;
    position: absolute;
}
.media .imageContainer{
    float:left;
}
.media .imageContainer a{
    float: left;
    height: 50px;
    width: 50px;
    margin: 0;
    text-align:center;
    border: 0px solid white;
}




/* =============================================================================
   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; }
}
