/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						RESET							  /////////
///////// 														    /////////
//////////////////////////////////////////////// */

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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	
}


tbody{
	margin: 5;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	
	} 


body { line-height: 1; color: #CCC; background: #1C1C1C; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; font-size: 130%; padding: 5;}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }









/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						GRID							  /////////
///////// 														    /////////
//////////////////////////////////////////////// */

/* -------------------------------------------------------------- 
  
   Grid.css
   * Creates an easy to use grid of 14 columns.
   
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]
   
   By default, the grid is 960px wide, with columns 
   spanning 50px, and a 20px margin between columns.
   
   If you need fewer or more columns, use this 
   formula to find the new total width: 
   
   Total width = (columns * 70) - 20
  
-------------------------------------------------------------- */

body { 
  text-align: center; /* IE Fix */
  margin:36px 0;
}

/* A container should group all your columns. */
.container {
  text-align: left;
  position: relative;
  padding: 0;
  margin: 0 auto;   /* Centers layout */
  width: 990px;     /* Total width */
}


/* Columns
-------------------------------------------------------------- */

/* Use this class together with the .span-x classes
   to create any compsition of columns in a layout.
   Nesting columns works like a charm (remember .first and .last). */
   
.column {
  float: left;
  margin: 0 10px;
  padding: 0;
}
* html .column { overflow-x: hidden; } /* IE6 fix */


/* Add this class to a column if you want a border on its 
   right hand side. This should be customized to fit your needs. */

.border {
  padding-right: 9px;
  margin-right: 0;
  border-right: 1px solid #ddd;
}


/* The first and last elements in a multi-column 
   block needs one of these classes each. */

.first  { margin-left: 0; }
.last   { margin-right: 0; }


/* Use these classes to set how wide a column should be. */
.span-1   { width: 50px; }
.span-2   { width: 120px; }
.span-3   {
	width: 190px;
	font-size: 150%;
}
.span-4   { width: 260px; }
.span-4-5   { width: 285px; }
.span-4-8 { width: 300px; }
.span-5   { width: 330px; }
.span-6   { width: 400px; }
.span-450 { width: 450px; }
.span-6-5   { width: 420px; }
.span-7   { width: 470px; }
.span-8   {
	width: 550px;
}
.span-9   { width: 610px; }
.span-10  { width: 680px; }
.span-11  { width: 750px; }
.span-12  { width: 820px; }
.span-13  { width: 890px; }
.span-14  { width: 960px; margin: 0; }
.span-15  { width: 920px; }

/* Add these to a column to append empty cols. */
.append-1   { padding-right: 70px; }  
.append-2   { padding-right: 140px; } 
.append-3   { padding-right: 210px; } 
.append-4   { padding-right: 280px; } 
.append-5   { padding-right: 350px; } 
.append-6   { padding-right: 420px; } 
.append-7   { padding-right: 490px; } 
.append-8   { padding-right: 560px; } 
.append-9   { padding-right: 630px; } 
.append-10  { padding-right: 700px; }
.append-11  { padding-right: 770px; }
.append-12  { padding-right: 840px; }
.append-13  { padding-right: 910px; }

/* Add these to a column to prepend empty cols. */
.prepend-1   { padding-left: 70px; }  
.prepend-2   { padding-left: 140px; } 
.prepend-3   { padding-left: 210px; } 
.prepend-4   { padding-left: 280px; } 
.prepend-5   { padding-left: 350px; } 
.prepend-6   { padding-left: 420px; } 
.prepend-7   { padding-left: 490px; } 
.prepend-8   { padding-left: 560px; } 
.prepend-9   { padding-left: 630px; } 
.prepend-10  { padding-left: 700px; }
.prepend-11  { padding-left: 770px; }
.prepend-12  { padding-left: 840px; }
.prepend-13  { padding-left: 910px; }


/* Use a .box to create a padded box inside a column. 
   Sticking to the the baseline. */ 
   
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
 }


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


/* Nudge your elements [subtraction.com/archives/2007/0606_nudge_your_e.php]:
   All block elements (not hr) inside a col should have a 5px padding on each side.
   (Not everyone wants this, but feel free to uncomment if you do.) 

p,ul,ol,dl,h1,h2,h3,h4,h5,h6,
caption,pre,blockquote,input,textarea {
  padding-left: 5px;
  padding-right: 5px;
}
div, table {
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
} */


/* Images
-------------------------------------------------------------- */

/* Remember the baseline (typography.css). */
img { margin: 0 0 1.5em 0; }


/* Use these classes to make an image flow into the column before 
   or after it. This techique can also be used on other objects. */

.pull-1  { margin-left: -70px; }
.pull-2  { margin-left: -140px; }
.pull-3  { margin-left: -210px; }

.push-0  { margin: 0 0 0 1.5em; float: right; } /* Right aligns the image. */
.push-1  { margin: 0 -88px 0 1.5em; float: right; }
.push-2  { margin: 0 -158px 0 1.5em; float: right; }
.push-3  { margin: 0 -228px 0 1.5em; float: right; }





/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						TYPE							  /////////
///////// 														    /////////
//////////////////////////////////////////////// */

/* -------------------------------------------------------------- 
   
   Typography.css
   * Sets some default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */   

body {
  font-family: Arial, Verdana, sans-serif;
  line-height: 1.5; /* Unitless for proper inheritance */
  
}
body          { font-size: 62.5%; }   /* IE */
html > body   { font-size: 11px; }  /* Other browsers */

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   



/* Headings
-------------------------------------------------------------- */


h1,h2,h3,h4,h5,h6 { 
  color:#555; 
  clear:both; 
}

h1 { 
  font-size: 30px; 
  line-height:36px; 
  padding:0 0 0 0;
  color:#ffb036;/*e9000a;*/
	text-transform: capitalize;
}
h2 { font-size: 20px; padding:0 0 18px 0;}
h3 { font-size: 16px; }
h4 { font-size: 14px; font-weight:bold; }
h5 { font-size: 12px; font-weight:bold; }
h6 { font-size: 12px; }

legend{font-size: 14px; font-weight:bold; margin-bottom:18px;}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 18px 0; text-align:justify; }
p.last      { margin-bottom:0; }
p img       { float: left; margin:10px 10px 10px 0; padding:0; border: 1px #000 solid }
p img.top   { margin-top:0; } /* Use this if the image is at the top of the <p>. */

a           { color: #c06b00; text-decoration: none; outline: none; }
a:hover     {  color: #ffb036; text-decoration: none; }

ul, ol      { margin: 0 0 18px 18px; }
ul          { list-style-type: circle; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 18px 0; }
dl dt       { font-weight: bold; }

blockquote  { margin: 0 0 18px 18px; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em          { font-style: italic; }
pre         { margin-bottom: 18px; background: #eee; border:1px solid #ddd; padding:16px; }

/* Use this to create a horizontal ruler across a column. */
hr {

  background: #000; 
  color: #000;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 0.1em;
  border: none; 
  
}

* html hr { margin: 0 0 1.2em 0; } /* IE6 fix */


/* Tables
-------------------------------------------------------------- */

/*table   { margin-bottom: 1.4em; border-top:0.1em solid #ddd; border-left:0.1em solid #ddd; }
th,td   { height: 1em; padding:0.2em 0.4em; border-bottom:0.1em solid #ddd; border-right:0.1em solid #ddd; }*/

th      { font-weight:bold; }


/* Forms
-------------------------------------------------------------- */

label     { font-weight: bold;  }
textarea  { height: 130px; width: 300px; }


/* Some default classes
-------------------------------------------------------------- */

p.small   { font-size: 0.8em; margin-bottom: 1.875em; line-height: 1.875em; }
p.large   { font-size: 1.2em; }
p.quiet   { color: #666; }
.hide     { display: none; }


/* Extra fancy typography
-------------------------------------------------------------- */

/* For great looking type, use this code instead of asdf: 
   <span class="alt">asdf</span>  
   Best used on prepositions and ampersands. */
  
.alt { 
  color: #666; 
  font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", serif; 
  font-size: 1.2em;
  line-height: 1%; /* Maintain correct baseline */
  font-style: italic;
}

/* For great looking quote marks in titles, replace "asdf" width:
   <span class="dquo">&#8220;</span>asdf&#8221;
   (That is, when the title starts with a quote mark). 
   (You may have to change this value depending on your font size). */  
   
.dquo { margin-left: -.7em; } 


/* Reduced size type with incremental leading
   (http://www.markboulton.co.uk/journal/comments/incremental_leading/)

   This could be used for side notes. For smaller type, you don't necessarily want to 
   follow the 1.5x vertical rhythm -- the line-height is too much. 
   
   Using this class, it reduces your font size and line-height so that for 
   every four lines of normal sized type, there is five lines of the sidenote. eg:

   New type size in em's:
     10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)

   New line-height value:
     12px x 1.5 = 18px (old line-height)
     18px x 4 = 72px 
     60px / 5 = 14.4px (new line height)
     14.4px / 10px = 1.44 (new line height in em's) */

p.incr, .incr p {
	font-size: 0.83333em; /* font size 10px */
	line-height: 1.44em;  
	margin-bottom: 1.8em; /* Still 1.5 x normal font size as baseline */
}




/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						MENU							  /////////
///////// 														    /////////
//////////////////////////////////////////////// */

#menu{
	font-size:12px;
	text-transform: uppercase;
	margin-left:10px;
	margin-bottom:-10px;
	font-weight: bold;
	color:#ffb036;

}

#menu li{
	display: inline;
	padding-right:40px;
}





/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						EXTRAS						  /////////
///////// 														    /////////
//////////////////////////////////////////////// */


#shell{
	z-index:10;
	position:relative;
	overflow: hidden;
}

#left_col{
	height:150px;
	background-image: url(http://212.67.202.201/~tektronic/ws2//content/site_pics/logo_2.gif);
	background-repeat: no-repeat;
	background-position: center top;
}

#content{
  margin-bottom:18px;
}

#bottom{
  margin: 0 0 0 10px;
}


#showcase{
    width:610px;
    height:330px; 
    margin:0 0 36px 0; 
    background-color: #000;
  
}

#showcase h2
{
  float:left;
	padding: 0;
	margin: 0;
	margin: -2px 10px;
	font-weight: light;
	color: #ffb036;
}

#showcase p
{
	float:right;
	text-align:right;
  padding: 0;
	margin: -2px 10px;
	color: #eee;
}


.main_box{
    width:590px;
    height:70px;
    padding: 200px 0 0 20px;    
}

#accordion{
  padding: 20px 0 0 0;
}



#right_col{

}

#flashContent{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	left: 0px;
	top: 0px;
	margin-top:-36px;
}


#footer{
  text-align: right;
}

.line{
	clear:both;
	width:100%;
	height:5px;
	background-image: url(http://212.67.202.201/~tektronic/ws2//content/site_pics/line.gif);
	background-repeat: repeat-x;
	margin:0 0 8px 0;
}

.line_gallery{
	clear:both;
	width:255px;
	height:5px;
	background-color:#000;
	margin-bottom:36px;
}





#gallery{
	width:250px;
	background-color:#000;
	padding:5px;
	overflow:auto;
	margin-bottom:10px;
	color:#ffb036;
}

#gallery br 
{
	clear: left;
}	
		
#gallery .coluna
{
	float: left;
	width: 80px;
}

#gallery h3{
	color:#ffb036;
	margin-top:0;
	font-size:10px;
}

#gallery a {
	color: #CCC;
	text-decoration: none;
}

#gallery a:hover {
	text-decoration: none;
	color: #fff;
}

#search_area{
/*	height:195px;*/

}

#search_area p{
	margin-bottom:10px;
	margin-top:0;
}

#search_area .contact{
	margin:28px 0 36px 0;
}

.search_box{
	background-color:#333;
	width:255px;	
	color:#EEE;
	border: 1px #000 solid;
}

.input_box{
	background-color:#333;	
	color:#EEE;
	border: 1px #000 solid;
	font-size: 11px;
}

.search_button{
	background-color:#000;
	color:#c06b00;
	font-size:10px;
	border: 1px #000 solid;
}

.title{
	font-size:18px;
	font-weight: lighter;
}


.feature_title{
	font-size:24px;
	font-weight: lighter;
	text-align: center;
}




#about_category{
  margin-top:54px;
  margin-bottom:122px;
}

.preview_category{
	float:left;
	margin-right:20px;
	background-color:#f5f5f5;
	height:80px;
	width:140px;
	margin-bottom:20px;


}

#pages{
	clear:both;
	text-align:center;
	margin-bottom:50px;
  font-size:12px;
  font-weight:bold;
}
.topSpace-1{   margin-top:18px;}
.topSpace-1-2{   margin-top:9px;}
.topSpace-2{   margin-top:36px;}

.bottomSpace-1{  margin-bottom:18px;}
.bottomSpace-2{  margin-bottom:36px;}






.toggler {
  font-size: 2em;

}


.mainImage{
  background-color:#CCC;
  width:610px ;
  height:270px;
  margin-bottom:36px;
  border: 1px #000 solid;

}

#admin_bar{
  margin: -36px 0 36px 0;
}

#admin_bar li{

	display: inline;
	padding: 5px 40px 5px 40px;
  border-left: 1px #555 solid;
}

#admin_bar ul{
  margin:0;
  padding:0;
}

h3 {
color:#c06b00;
}

#related_articles img{
  margin: 0 10px 0 0;
}


/* //////////////////////////////////////////////// */


.feature_text {
    font-family: Arial, Helvetica, sans-serif; 
	font-size: 16px;
	color: #CCC;
	text-align: left;
	padding-right: 18px;
}

.pic_right {
	overflow: hidden;
	margin-top:10px;
	margin-bottom:10px;
	float :right;
	position: relative;
	
}

.pic_left {
	overflow: hidden;
	margin-bottom:10px;
	margin-top:10px;
	
	position: relative;
	float: left;
	
}

.pic_right_pad {
  margin-right:20px;	
}

.feature_container {
	text-align: left;
	position: relative;
	padding: 0;
	margin: 0 auto;   /* Centers layout */
	width: 940px;     /* Total width */
}

#clear-1 {clear:both;}


.left_justify {
	text-align: left;
}

.text-float-right{
	float:
	margin: 10px 10px;
	padding-left: 10px;
}
/* //////////////////////////////////////////////// */











/* ////////////////////////////////////////////////
///////// 														    /////////
///////// 						COLORS						  /////////
///////// 														    /////////
//////////////////////////////////////////////// */

.white{ color:#fff;}
.black{ color:#000;}
.blue{ color:#68e2ff; }
.darkBlue{ color:#002558; }
.darkRed{ color:#5a0004; }
.red{ color:#e9000a; }
.orange{ color:#ffb036; }
.green{ color:#c2e709; }
.lightGreen{  color:#d5ff00;}
.pink{ color:#ed1a73; }
.darkGrey{ color:#333; }
.grey{ color:#555; }
.lightGrey{ color:#CCC; }
.brown{color:#c06b00; }

.bk_white{ background-color:#fff;}
.bk_black{ background-color:#000;}
.bk_blue{ background-color:#68e2ff; }
.bk_darkBlue{ background-color:#002558; }
.bk_darkRed{ background-color:#5a0004; }
.bk_red{ background-color:#e9000a; }
.bk_orange{ background-color:#ffb036; }
.bk_green{ background-color:#c2e709; }
.bk_pink{ background-color:#ed1a73; }
.bk_darkGrey{ background-color:#333; }
.bk_grey{ background-color:#ccc; }
.bk_lightGrey{ background-color:#f5f5f5; }
.bk_brown{ background-color:#883000; }
