/* 
 *  CSS Reset (Enhanced)
 * 	by Eric Meyer [http://meyerweb.com/eric/tools/css/reset]
 * 
 *	CSS tm (Template)
 * 	by Arwin Ortiz [http://arwinclicks.com/tm]
 *
 *  CSS Reset (Enhanced) + CSS tm (Template)
 *  [http://arwinclicks.com/tm/reset-tm.css]
 *  @2.110312
 */

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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    /*font-size: 100%;*/
    font-size: medium;
    font-family: inherit;
    vertical-align: baseline;
}
b, strong { font-weight:bold; }
i, em { font-style:italic; }
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    /*vertical-align: baseline;*/
}

/** remember to define focus styles! **/
:focus { outline: 0; }
body {
    line-height: 1;
    color: black;
    background: white;
}
ol, ul { list-style: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/** tables still need 'cellspacing="0"' in the markup **/
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}

/*
 *  CSS tm (Template)
 *  @2.110312 
 */

/** default font-family and font color **/
body { 
    font:normal 12px/18px Arial, Helvetica, sans-serif;
    /*color: #000000;*/
    color: #333333;
} 

/** default color on text-links and text-decoration **/
a { 
    color:#0088cc;
    text-decoration:none;
}
a:hover {
    color: #005580;
    text-decoration: underline;	
}

/** some standards **/
p { 
    margin:0; 
    margin-bottom:18px; 
}
p.last { margin-bottom:0; }
img { vertical-align:top; }
a img { 
    border:none; 
    vertical-align:top; 
} 

/** headings **/
h1 { 
    margin:8px 0;  
    font-weight:bold; 
    font-size:24px; 
    line-height:normal; 
}
h2 { 
    margin:10px 0; 
    font-weight:bold; 
    font-size:18px; 
    line-height:normal; 
}
h3 { 
    margin:12px 0; 
    font-weight:bold; 
    font-size:14px; 
    line-height:normal; 
}
h4 { 
    margin:16px 0; 
    font-weight:bold; 
    font-size:12px; 
    line-height:normal; 
}
h5 { 
    margin:20px 0; 
    font-weight:bold; 
    font-size:10px; 
    line-height:normal; 
}

/** basics **/
.fs10 { font-size:10px !important; } 
.fs11 { font-size:11px !important; } 
.fs12 { font-size:12px !important; } 
.fs13 { font-size:13px !important; } 
.fs14 { font-size:14px !important; } 
.fs15 { font-size:15px !important; } 
.fs16 { font-size:16px !important; } 
.fs17 { font-size:17px !important; } 
.fs18 { font-size:18px !important; } 
.fs19 { font-size:19px !important; } 
.fs20 { font-size:20px !important; } 
.fs22 { font-size:22px !important; } 
.fs24 { font-size:24px !important; } 
.fs26 { font-size:26px !important; } 
.fs28 { font-size:28px !important; } 
.fs30 { font-size:30px !important; } 
.fsI { font-style:italic !important; } 
.fwN { font-weight:normal !important; } 
.fwB { font-weight:bold !important; } 
.fLeft { float:left !important; } 
.fRight { float:right !important; } 
.fNone { float:none !important; } 
.cLeft { clear:left !important; } 
.cRight { clear:right !important; } 
.cBoth { clear:both !important; } 
.tLeft { text-align:left !important; } 
.tRight { text-align:right !important; } 
.tCenter { text-align:center !important; } 
.dBlock { display:block !important; } 
.dInline { display:inline !important; } 
.tdUnderline { text-decoration:underline !important; }
.tdNone { text-decoration:none !important; }
.posRel { position:relative !important; }
.posAbs { position:absolute !important; }
.lhNormal { line-height:normal !important; } 

/** my grid layout helper @2.110312 **/
.master, 
.parent, 
.column,
.grid1col, 
.grid2col,
.grid3col,
.grid4col,
.grid5col { 
    width:100%; 
    height:10px; 
    min-height:10px; 
}
.clearer, .master, .parent { 
    width:100%; 
    zoom:1; 
    position:static; 
    clear:both; 
}
.clearer:after, .master:after, .parent:after { 
    content:"."; 
    display:block; 
    height:0; 
    clear:both; 
    visibility:hidden; 
    font-size:0; 
    line-height:0; 
}	
.column { 
    float:left; 
    width:auto; 
    padding:0; 
    margin:0; 
}
.grid1col .column { width:100%; }	
.grid2col .column { 
    width:49%; 
    margin-left:1%; 
}
.grid3col .column { 
    width:32%; 
    margin-left:1%; 
}
.grid4col .column { 
    width:24%; 
    margin-left:1%; 
}
.grid5col .column { 
    width:19%; 
    margin-left:1%; 
}
.grid6col .column { 
    width:16%; 
    margin-left:1%; 
}	
.column.first, .column.last { margin-left:0; }
.column.last { float:right; }
html>body .master, 
html>body .parent, 
html>body .column { height:auto !important; }

/** margin overrides **/
.marAll0  { margin:0 !important; }		
.marTop0  { margin-top:0 !important; }    		
.marRyt0  { margin-right:0 !important; }
.marBot0  { margin-bottom:0 !important; }		
.marLef0  { margin-left:0 !important; }
.marAll5  { margin:5px !important; }
.marTop5  { margin-top:5px !important; }  		
.marRyt5  { margin-right:5px !important; }
.marBot5  { margin-bottom:5px !important; }		
.marLef5  { margin-left:5px !important; }
.marAll10 { margin:10px !important; }	
.marTop10 { margin-top:0!important; } 		
.marRyt10 { margin-right:10px !important; }
.marBot10 { margin-bottom:10px !important; } 	
.marLef10 { margin-left:10px !important; }
.marAll15 { margin:15px !important; }
.marTop15 { margin-top:15px !important; } 		
.marRyt15 { margin-right:15px !important; }
.marBot15 { margin-bottom:15px !important; } 	
.marLef15 { margin-left:15px !important; }
.marAll20 { margin:20px !important; }	
.marTop20 { margin-top:20px !important; } 		
.marRyt20 { margin-right:20px !important; }
.marBot20 { margin-bottom:20px !important; } 	
.marLef20 { margin-left:77px!important; }
.mar0auto { margin:0 auto !important; }
.marLRauto { 
    margin-left:auto !important; 
    margin-right:auto !important; 
}

/** padding overrides **/
.padAll0  { padding:0 !important; }	
.padTop0  { padding-top:0 !important; }			
.padRyt0  { padding-right:0 !important; }
.padBot0  { padding-bottom:0 !important; }		
.padLef0  { padding-left:0 !important; }
.padAll5  { padding:5px !important; }	
.padTop5  { padding-top:5px !important; }  		
.padRyt5  { padding-right:5px !important; }
.padBot5  { padding-bottom:5px !important; }	
.padLef5  { padding-left:5px !important; }
.padAll10 { padding:10px !important; }	
.padTop10 { padding-top:10px !important; } 		
.padRyt10 { padding-right:10px !important; }
.padBot10 { padding-bottom:10px !important; }	
.padLef10 { padding-left:10px !important; }
.padAll15 { padding:15px !important; }
.padTop15 { padding-top:15px !important; }		
.padRyt15 { padding-right:15px !important; }
.padBot15 { padding-bottom:15px !important; }	
.padLef15 { padding-left:15px !important; }
.padAll20 { padding:20px !important; }
.padTop20 { padding-top:20px !important; }		
.padRyt20 { padding-right:20px !important; }
.padBot20 { padding-bottom:20px !important; }	
.padLef20 { padding-left:20px !important; }

/** width overrides **/
.wAuto{ width:auto  !important; }
.w25p { width:25%	!important; }
.w50p { width:50%	!important; }	
.w75p { width:75%	!important; }
.w100p{ width:100%	!important; }
.w50  { width:50px	!important; }	
.w75  { width:75px  !important; }
.w100 { width:100px !important; }	
.w125 { width:125px !important; }
.w150 { width:150px !important; }	
.w175 { width:175px !important; }
.w200 { width:200px !important; }	
.w225 { width:225px !important; }
.w250 { width:250px !important; }	
.w275 { width:275px !important; }
.w300 { width:300px !important; }	
.w325 { width:325px !important; }
.w350 { width:350px !important; }	
.w375 { width:375px !important; }
.w400 { width:400px !important; }	
.w425 { width:425px !important; }
.w450 { width:450px !important; }	
.w475 { width:475px !important; }
.w500 { width:500px !important; }	
.w525 { width:525px !important; }
.w550 { width:550px !important; }	
.w575 { width:575px !important; }
.w600 { width:600px !important; }	
.w625 { width:625px !important; }
.w650 { width:650px !important; }	
.w675 { width:675px !important; }
.w700 { width:700px !important; }	
.w725 { width:725px !important; }
.w750 { width:750px !important; }	
.w775 { width:775px !important; }
.w800 { width:800px !important; }	
.w825 { width:825px !important; }
.w850 { width:850px !important; }	
.w875 { width:875px !important; }
.w900 { width:900px !important; }	
.w925 { width:925px !important; }
.w950 { width:950px !important; }	
.w975 { width:975px !important; }

/** ul, ol ~~ add class 'basic' to use default **/
ul.basic, ol.basic, ul.basic ul, ol.basic ol { 
    margin:0 1.5em 1.5em 0; 
    padding-left:1.5em; 
}
ul.basic, ul.basic ul { list-style-type:disc; }
ol.basic, ol.basic ol { list-style-type:decimal; }

/** .list, .inline-block **/
.list {}
.list ul { 
    list-style:none; 
    margin:0; 
    padding:0; 
}
.list ul li, .inline-block {
    vertical-align:top;  
    display:block;
    display:-moz-inline-stack;
    display:inline-block;
    margin:0 -4px 0 0;
    zoom:1;
    *display:inline;
    *margin:0 0 0 0;
}
.list ul li a { 
    display:block; 
    text-decoration:none; 
    margin:0; 
    padding:0;
    font-weight:normal; 
    /*font-size:12px; */
    font-size: medium;
    line-height:12px;
}
.list ul li a:link, .list ul li a:visited { color:#554645; }
.list ul li a:hover {}

/** box-sizing **/
.border-box {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;	
}





/************ Commonly USED
*************************************************/

/*basics*/
.b {font-weight:bold !important}
.fNorm {font-weight: normal !important}
.fs10 { font-size:10px !important; }
.fs11 { font-size:11px !important; }
.fs12 { font-size:12px !important; }
.fs13 { font-size:13px !important; }
.fs14 { font-size:14px !important; }
.fs15 { font-size:15px !important; }
.fs16 { font-size:16px !important; }
.fs17 { font-size:17px !important; }
.fs18 { font-size:18px !important; }
.fs19 { font-size:19px !important; }
.fs20 { font-size:20px !important; }
.fs22 { font-size:22px !important; }
.fs24 { font-size:24px !important; }
.fs26 { font-size:26px !important; }
.fs28 { font-size:28px !important; }
.fs30 { font-size:30px !important; }
.fs34 { font-size:34px !important; }
.fs38 { font-size:38px !important; }
.fs40 { font-size:40px !important; }
.fs46 { font-size:46px !important; }

.fWhite { color: #fff !important}
.fRed { color: #c00 !important}
.fBlack { color: #000 !important}
.fLgray { color: #999 !important}
.fGray { color: #444 !important}
.fOrange { color: #e80 !important}
.fBlue { color: #08c !important}
.fLBlue { color: #9cf !important}
.fNavy { color: #237 !important}
.fLeft { float:left !important; width:auto; }
.fRight { float:right !important; width:auto; margin:10px 0 0 0;}
.clear { clear: both !important;}
.tUpper { text-transform:uppercase !important}
.tNone { text-transform: none !important}
.aCenter { text-align:center !important;}
.aLeft { text-align: left !important;}
.aRight { text-align: right !important;}
.aJust { text-align: justify !important;}

.lh14 { line-height: 14px !important}
.lh15 { line-height: 15px !important}
.lh16 { line-height: 16px !important}
.lh18 { line-height: 18px !important}
.lh20 { line-height: 20px !important}
.lh22 { line-height: 22px !important}
.lh24 { line-height: 24px !important}
.lh28 { line-height: 28px !important}
.lh30 { line-height: 30px !important}
.lh32 { line-height: 32px !important}
.lh34 { line-height: 34px !important}
.lh38 { line-height: 38px !important}
.lh40 { line-height: 40px !important}

.borderTop {border-top: 1px solid #ddd;}
.borderBot {border-bottom: 1px solid #ddd;}
.aroundBorder { border:1px solid #ddd; padding:4px; background:#fff;}
.aroundBorder2 { border:1px solid #ddd; padding:5px; background:#fff;}

.padAll0 { padding: 0px !important} 	.marAll0 { margin: 0px !important} 
.padAll5 { padding: 5px !important} 	.marAll5 { margin: 5px !important}
.padAll10 { padding: 10px !important} 	.marAll10 { margin: 10px !important}
.padAll5 { padding: 15px !important} 	.marAll15 { margin: 15px !important}
.padAll20 { padding: 20px !important} 	.marAll20 { margin: 20px !important}
.padAll25 { padding: 25px !important} 	.marAll25 { margin: 25px !important}
.padAll30 { padding: 30px !important} 	.marAll30 { margin: 30px !important}
.padAll35 { padding: 35px !important} 	.marAll35 { margin: 35px !important}

.marTop0 { margin-top: 0px !important} 		.marBot0 { margin-bottom: 0px !important}
.marTop5 { margin-top: 5px !important} 		.marBot5 { margin:0 0 5px 10px !important}
.marTop10 { margin-top: 0!important}		.marBot10 { margin-bottom: 10px !important}
.marTop15 { margin-top: 15px !important}		.marBot15 { margin-bottom: 15px !important}
.marTop20 { margin-top: 20px !important}		.marBot20 { margin-bottom: 20px !important}
.marTop25 { margin-top: 25px !important}		.marBot25 { margin-bottom: 25px !important}
.marTop30 { margin-top: 30px !important}		.marBot30 { margin-bottom: 30px !important}
.marTop35 { margin-top: 35px !important}		.marBot35 { margin-bottom: 35px !important}

.marLeft0 { margin-left: 0px !important} 		.marRight0 { margin-right: 0px !important}
.marLeft5 { margin-left: 5px !important} 		.marRight5 { margin-right: 5px !important}
.marLeft10 { margin-left: 10px !important} 	.marRight10 { margin-right: 10px !important}
.marLeft15 { margin-left: 15px !important} 	.marRight15 { margin-right: 15px !important}
.marLeft20 { margin-left: 20px !important} 	.marRight20 { margin-right: 20px !important}
.marLeft25 { margin-left: 25px !important} 	.marRight25 { margin-right: 25px !important}
.marLeft30 { margin-left: 30px !important} 	.marRight30 { margin-right: 30px !important}
.marLeft35 { margin-left: 35px !important} 	.marRight35 { margin-right: 35px !important}

.padTop0 { padding-top: 0px !important} 		.padBot0 { padding-bottom: 0px !important}
.padTop5 { padding-top: 5px !important} 		.padBot5 { padding-bottom: 5px !important}
.padTop10 { padding-top: 10px !important}		.padBot10 { padding-bottom: 10px !important}
.padTop15 { padding-top: 15px !important}		.padBot15 { padding-bottom: 15px !important}
.padTop20 { padding-top: 20px !important}		.padBot20 { padding-bottom: 20px !important}
.padTop25 { padding-top: 25px !important}		.padBot25 { padding-bottom: 25px !important}
.padTop30 { padding-top: 30px !important}		.padBot30 { padding-bottom: 30px !important}
.padTop35 { padding-top: 35px !important}		.padBot35 { padding-bottom: 35px !important}

.padLeft0 { padding-left: 0px !important} 	.padRight0 { padding-right: 0px !important}
.padLeft5 { padding-left: 5px !important} 	.padRight5 { padding-right: 5px !important}
.padLeft10 { padding-left: 10px !important} 	.padRight10 { padding-right: 10px !important}
.padLeft15 { padding-left: 15px !important} 	.padRight15 { padding-right: 15px !important}
.padLeft20 { padding-left: 20px !important} 	.padRight20 { padding-right: 20px !important}
.padLeft25 { padding-left: 25px !important} 	.padRight25 { padding-right: 25px !important}
.padLeft30 { padding-left: 30px !important} 	.padRight30 { padding-right: 30px !important}
.padLeft35 { padding-left: 35px !important} 	.padRight35 { padding-right: 35px !important}


a.orangeButton,
.orangeButton {
    float:left;
    padding: 6px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight:bold;
    margin:5px;
    cursor:pointer;cursor:hand;
    border: 0;
    text-transform: uppercase;
    text-shadow: #c00 1px 1px 1px;
    -webkit-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    -moz-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    border-radius: 4px;
    -moz-border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f90', endColorstr='#d60'); /* for IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#f90), to(#d60)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #f90,  #d60); /* for firefox 3.6+ */
    text-decoration:none !important;
}
a.orangeButton:hover,
.orangeButton:hover {
    color: #ff7
}

a.blueButton,
.blueButton {
    float:left;
    padding: 6px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight:bold;
    margin:5px;
    cursor:pointer;cursor:hand;
    border: 0;
    text-transform: uppercase;
    text-shadow: #08c 1px 1px 1px;
    -webkit-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    -moz-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    border-radius: 4px;
    -moz-border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#529bcc', endColorstr='#3780b1'); /* for IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#529bcc), to(#3780b1)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #529bcc,  #3780b1); /* for firefox 3.6+ */
    text-decoration:none;
    cursor:default;
    cursor: pointer;
}

a.greenButton,
.greenButton {
    float:left;
    padding: 6px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight:bold;
    margin:5px;
    cursor:pointer;cursor:hand;
    border: 0;
    text-transform: uppercase;
    text-shadow: #08c 1px 1px 1px;
    -webkit-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    -moz-box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    box-shadow: rgba(5,5,5,0.3) 0 1px 2px; 
    border-radius: 4px;
    -moz-border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44cc44', endColorstr='#33aa33'); /* for IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#44cc44), to(#33aa33)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #44cc44,  #33aa33); /* for firefox 3.6+ */
    text-decoration:none;
    cursor:default;
    cursor: pointer;
}
a.greenButton:hover,
.greenButton:hover {
    color: #006600;
    text-shadow: #5f5 1px 1px 1px;
}
a.bigButton,
.bigButton {
    padding: 8px 25px;
    font-size: 14px;
    line-height: 20px;
}

a.blueButton:hover,
.blueButton:hover {
    color: #111;
    text-decoration:none;
}
/*
 E
  N
   D
*/

.Product-colam {
    float: left;
    width: 700px;
}

.video-colam {
    width: 300px;
    float: right;
}

.Product-colam li{ width:auto !important; margin:0 1% 3px 0 !important;}




.policies {
    margin: 5px 0 0 12px;
}

.fLeft.marLef10.marTop15.polici {
    width: 232px;
}

.email a {
    color: #000;
    display: inline-block;
    /*font-size: 14px;*/
    font-size: medium;
    padding: 3px 0 10px;
}