/* ==========================================================================
	Product & Spec Table Styles
   ========================================================================== */
/* --------------------------------------------------
	Pretty Table Styling
	http://wptheming.com/2011/01/simple-table-css3/
 * ----------------------------------------------- */
.product-data {
	width:100%; margin:0 0 20px 0;
	overflow:hidden;
	border:1px solid #d3d3d3;
	background:#fefefe;
	border-radius:5px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.product-data th, .product-data td {
	padding:5px 10px;
	text-align:center;
}
.product-data th { text-shadow: 1px 1px 1px #fff; border-right:1px solid #d9d9d9; background:#e8eaeb;}
.product-data td { vertical-align:top; border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0; }
.product-data tr.odd td {background:#f6f6f6;}
.product-data td.first, .product-data th.first {text-align:left}
.product-data th.last, .product-data td.last {border-right:none;}


/* Background gradients */
.product-data th {
	background: -moz-linear-gradient(100% 20% 90deg, #d9d9d9, #ededed);
	background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
}
.product-data td {
	background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
	background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
}
.product-data tr.odd td {
	background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
	background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
}

/*
I know this is annoying, but we need additional styling so webkit will recognize rounded corners on background elements.
Nice write up of this issue: http://www.onenaught.com/posts/266/css-inner-elements-breaking-border-radius
And, since we've applied the background colors to td/th element because of IE, Gecko browsers also need it.
*/
.product-data tr:first-child th.first {
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px; /* Saf3-4 */
}
.product-data tr:first-child th.last {
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px; /* Saf3-4 */
}
.product-data tr:last-child td.first {
	-moz-border-radius-bottomleft:5px;
	-webkit-border-bottom-left-radius:5px; /* Saf3-4 */
}
.product-data tr:last-child td.last {
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-right-radius:5px; /* Saf3-4 */
}

/* ------------------------------
	Specific Table Columns
 * --------------------------- */
.product-data td.name { width:100px; line-height:24px; text-align:left; font-weight:bold; } 
.product-data td.diag { width:200px; padding:0; text-align:center; }
.product-data td.spec { width:100px; line-height:24px; text-align:left; } 
.product-data td.tool { width:110px; text-align:left; } 

.product-data td.diag a.thumb img { margin:0 auto; height:auto; max-width:200px; border-radius:5px; box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75); border:1px solid #A5A5A5}
.product-data td.diag a.thumb:hover img { border:1px solid black;}


/* TOOL Schematics Table */
#content .tools {
	list-style-type: none;
	margin: 0; padding: 0;
	border: 1px solid #CCCCCC;
}
#content .tools li {
	display: block;
	width: 422px; height:202px;
	margin:0; padding:0;
	border-bottom: 1px solid #CCCCCC;
	 position:relative;
}
#content .tools .item .thumb {
	display:block;
	width:300px; height:200px;
}
#content .tools .name {
	position:absolute;
	top:15px; right:15px;
	color:#990000; font-weight:bold; font-size:18px;
}
#content .tools  .type {
	position:absolute;
	bottom:15px; right:15px;
	color:#383838; font-weight:normal; font-size:16px;
}

.schema-link { top:65px; right:10px; text-align:right; color:#000 !important; text-transform:uppercase; position:absolute; font-size:14px !important;}
.instruct-link { top:100px; font-size:14px !important; right:10px; text-align:right; color:#000 !important; text-transform:uppercase; position:absolute; }
.schema-link:hover, .instruct-link:hover { color:#990000 !important; text-decoration:underline !important;}

#content .tools .discon { height:140px; padding-top:60px; text-align:center; }
#content .tools .discon h3 { margin-bottom:15px; font-size:24px; letter-spacing:2px; }
#content .tools .discon hr { margin:0 60px 15px 60px; }


/* Species of Wood - Densities Table */
table.species-wood { min-width:300px; border:1px solid #999;}
table.species-wood tr { border-bottom:1px dotted #ccc; }
table.species-wood th,
table.species-wood td { padding:5px; border-right:1px dotted #ccc; }
table.species-wood th:last-child,
table.species-wood td:last-child { border-right:0 none; }
 
#content table.species-wood th h3 { margin:0; color:#B11116; }
table.species-wood th h3 span { color:#333; font-size:12px; text-transform:none; }
#content table.species-wood th h4 { color:#000; font-family:Cambria, Times, "Times New Roman", serif; text-transform:none; }
table.species-wood .group   { width:100px; text-align:center; vertical-align:text-top; }
table.species-wood .species { width:200px; text-align:center; }
table.species-wood .gravity { width:200px; text-align:center; }
table.species-wood td dl { margin:0 0 10px 0; padding:5px 0; }
table.species-wood td dt { display:inline-block; width:200px; padding-right:5px; text-align:center; border-right:1px dotted #ccc; }
table.species-wood td dd { display:inline-block; width:200px; margin:0; text-align:center; }

/* Species of Wood - Recommended Lenths Table */
table.rec_lens { margin:0 auto; border-collapse:collapse; font:normal 9pt/12pt Calibri,Arial,sans-serif; }

table.rec_lens th, table.rec_lens td { height:26px; min-width:30px; padding:0 4px; text-align:center; border:1px solid #777; }
table.rec_lens td.tleft { text-align:left; }

table.rec_lens tr.level_1 th, table.rec_lens th.col_left { border:2px solid #777; }
table.rec_lens tr.level_1 th { height:18px; border-right:thick double #777; }
table.rec_lens tr.level_1 th:last-child { border-right:2px solid #777; }

table.rec_lens th.col_left { width:190px; padding-left:10px; text-align:left; }
table.rec_lens th.col_left span { font-size:12pt; }

table.rec_lens tr.level_1 th.clear, table.rec_lens th.clear { border:0 none; }
table.rec_lens th.dlr, table.rec_lens td.dlr { border-right:thick double #777; }
table.rec_lens tr.level_2 th, table.rec_lens th.dlb, table.rec_lens td.dlb { border-bottom:thick double #777; }
table.rec_lens th:last-child, table.rec_lens td:last-child { border-right:2px solid #777; }

table.rec_lens tr.odd { background-color:#C1C1C1; }
table.rec_lens td.t { background:url(../img/technical/bullet-red.gif) no-repeat center center; }
table.rec_lens td.f { content:" "; }


/* Technical Page Tables */
ul.technical { width:605px; float:left; margin:20px 29px 0px 0px; padding:0; list-style:none;}

.technicaldata img { border:1px solid #999; border-radius: 5px; }
.technicaldata td { text-align:center; }
.techbgr { 
	background: url(../img/technical/techbg1.jpg) top left no-repeat,
				url(../img/technical/techbg1.jpg) bottom left no-repeat;
	background-color:#E6E6E5;
	min-height:100px;
	padding:15px;
	margin-bottom:15px;
}
.techbgl {
	min-height:100px; width:255px;
	margin-bottom:15px;
	padding:15px 10px 15px 10px;
	background: url(../img/technical/techbg2.jpg) top left no-repeat,
				url(../img/technical/techbg2.jpg) bottom left no-repeat;
	background-color:#E6E6E5;
}
.row > .techbgr { background-repeat:repeat-x; }
.column.techbgl li { margin-bottom:15px; }

#content .technicaldata h3, 
#content .technicaldata h4 { text-align:center; text-transform:uppercase; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); }
#content .technicaldata h3 { color:#b11116; font-size:18px; letter-spacing:1px; }
#content .technicaldata h4 { color:#000; }
#content .technicaldata p.small { font-size:11px; }
#content .technicaldata li h4 { text-align:left; }
