/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
	/*	Changed from "border: 0" to "border: 1" to help with tables in our site.  One example is here:
		http://www2.thursby.com/pricing/pkard.html
		border: 0;
	*/
		border: 1;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }

	code {
		padding: 3px 6px;
		font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
		background: #fcfcfc;
		border: 1px solid #e4e4e4;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		color: #3f8faf;
	}


/* #Basic Styles
================================================== */
	body {
		background: url(../images/bg/noise.png) repeat;
		font-size: 13px;
		line-height: 21px;
		color: #666;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
	}
 
	#wrapper {
		background: #fff;
		width: 1020px;
		margin: 0 auto;
		padding: 0;
		box-shadow:  0px 0px 4px 0px rgba(0, 0, 0, 0.2);
	}
	
	/* Main Font */
	body, h1, h2, h3, h4, h5, h6,
	.button, input[type="button"], input[type="submit"],
	input[type="text"], input[type="password"], input[type="email"], textarea, select {
		font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	}
	

/* Basic Alginment
================================================== */
	#wrapper img {
		height: auto;
		max-width: 97%;
	}
	
	.columns.google-map img {
		max-width: none;
	}

	img, object, video {
		height: auto;
	/*	Removed by Darryl 9/18/2013 to correct credit card list at the bottom of this page:
		http://www2.thursby.com/mac-enterprise-management-high-security-smart-cards.html
		display:block;
	*/
	}
	
	img {
	/*	Removed by Darryl 9/18/2013 because images carried over from old site were too large for new site.  One example is here:
		http://www2.thursby.com/products/pkard.html
		width: auto;
	*/
		border: 0;
		-ms-interpolation-mode: bicubic;
	}

	/* Flexible Embeds */
	.embed {
		position: relative;
		padding: 0px;
		padding-bottom: 56.25%; /* 16/9 ratio */
		height: 0;
		overflow: hidden;
	}

	.embed iframe,
	.embed object,
	.embed embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.image-left {
		float: left;
		margin: 5px 15px 8px 0;
	}
	
	.image-right {
		float:right;
		margin: 5px 0 8px 15px;
	}
	
	.image-right,
	.image-left {
		 padding: 5px;
		 border: 1px solid #e0e0e0;
		 max-width: 100%;
		-webkit-box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
		box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
	}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #333;
		font-weight: 600;
		letter-spacing: -0.2px;
	}
	
	h2 span, h3 span {
		color: #888;
		font-weight: 200;
	}
		
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 28px; line-height: 50px; }
	h2 { font-size: 22px; line-height: 30px; }
	h3 { font-size: 16px; line-height: 34px; }
	h4 { font-size: 14px; line-height: 30px; }
	h5 { font-size: 12px; line-height: 24px; }
	h6 { font-size: 10px; line-height: 21px; }

	p { margin: 0 0 15px 0; line-height: 21px;}
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: 600; color: #333; }
	small { font-size: 80%; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #db3422; text-decoration: none; outline: 0; -webkit-transition: color 0.1s ease-in-out; -moz-transition: color 0.1s ease-in-out; -o-transition: color 0.1s ease-in-out; -transition: color 0.1s ease-in-out; }
	a:hover, a:focus { color: #888; }
	a b, span b { font-family: Verdana, Tahoma; font-weight: normal; opacity: 0.5;}
	span b { line-height: 14px; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin: 0; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul {}
	ul ul li, ul ol li,
	ol ol li, ol ul li {}
	li { line-height: 18px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }


/* #Forms
================================================== */

	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #e0e0e0;
		padding: 8px 9px;
		outline: none;
		font-size: 13px;
		color: #888;
		margin: 0;
		max-width: 100%;
		display: block;
		background: #fff;
		-webkit-box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
		box-shadow:  0px 2px 0px 0px rgba(0, 0, 0, 0.03);
		border-radius: 2px;
		}
	select {
		padding: 0;}
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #d6d6d6;
		color: #888; 
		}
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px; 
		font-weight: normal;
		margin-bottom: 5px;}
	select {
		 }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }

/* Added from previous theme.  Carl Ketterling 9/18/2013 */

 /*** Ul bullets ***/
.field-items ul {
    margin-left:0em;
    padding-left:0.2em;
    margin-bottom:1em;
    margin-top: 1em;
}

li.redDiamond {
    background:url("../images/bg_li_products_center.png") 0em 0.4em no-repeat;
    padding-left: 1.4em; list-style: none;
    margin-bottom:0.5em;
}

li.rteindent1 {
    
    background:url("../images/bg_li_products_center.png") 0em 0.4em no-repeat;
    padding-left: 1.4em; list-style: none;
    margin-bottom:0.5em;

}

.field-items ul li {
    /*background:url("../images/bg_li_products_center.png") 0em 0.4em no-repeat;
    padding-left: 1.4em; */
    list-style: none;
    margin-bottom:0.5em;
 }
 
#content .downloadPDF{
    background: url("../images/b_download_pdf.png") no-repeat scroll 0 0 transparent;
    float: right;
    padding: 18px 45px 11px 76px;
	margin-right:20%;
}

#content .purchaseOnLine{
    background: url("../images/b_purchase_online.png") no-repeat scroll 0 0 transparent;
    float: left;
    padding: 18px 46px 11px 67px;
	margin-left:20%;
}

#content .wayOfPaymentBox{
    background-color: #F0F0F0;
    color: #343434;
    display: inline-block;
    padding: 25px 0 9px 25px;
    width: 95.5%;
	border-radius: 5px;
}
#content .wayOfPaymentBox .paymentModes{
    display: inline-block;
    float: right;
    margin: 0px 22px 0 0;
}
#content .wayOfPaymentBox .paymentModes li{
    float: left;
    margin: 0 4px;
    overflow: hidden;
	background: none;
}
#content .wayOfPaymentBox .paymentModes li.last{
    margin-right: 0;
}
#content .wayOfPaymentBox .paymentModes li a{
    display: block;
    height: 22px;
    text-indent: -999999px;
    width: 37px;
}
#content .wayOfPaymentBox .paymentModes .amex{
    background: url(../images/amex.png) no-repeat scroll 0 0 transparent;
}
#content .wayOfPaymentBox .paymentModes .visa{
    background: url(../images/visa.png) no-repeat scroll 0 0 transparent;
}
#content .wayOfPaymentBox .paymentModes .paypal{
    background: url(../images/paypal.png) no-repeat scroll 0 0 transparent;
}
#content .wayOfPaymentBox .paymentModes .mastercard{
    background: url(../images/mastercard.png) no-repeat scroll 0 0 transparent;
}
.left {
	float: left;
}
#content .purchaseBox{
    background-color: #F0F0F0;
    border-color: #E6E6E6;
    padding: 25px 0 9px 25px;
	/*	Removed by Carl on 9/25/2013 to allow the purchaseBox (grey bar) to cover the whole screen.
    width: 75%;
	*/
	border-radius: 5px;
}
#content .purchaseBox p{
    color: #363636;
    font-family: Arial;
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 12px;
}
#content .purchaseBox p a{
    color: #E04F32;
}
#content .purchaseBottom{
    display: inline-block;
}
#content .addToCartBox li h3{
    font-size: 14px;
}
#content .addToCartBox li p{
    font-size: 12px;
    margin: 0 0 5px;
}
#content .addToCartBox li span{
    font-size: 14px;
    font-weight: bold;
    color: #e04f32;
}
#content .addToCart{
    background: url("../images/b_add_to_cart.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 30px;
    margin: 10px 0 0;
    text-indent: -999999px;
    width: 124px;
}
#content .addToCartBox li.daveLicenses1{
    background: url("../images/daveLicense1.png") no-repeat scroll 9px top transparent;
}
#content .addToCartBox li.daveLicenses2{
    background: url("../images/daveLicense2.png") no-repeat scroll left top transparent;
}
#content .addToCartBox li.daveLicenses3{
    background: url("../images/daveLicense3.png") no-repeat scroll left top transparent;
}
#content .addToCartBox li.daveLicenses4{
    background: url("../images/daveLicense4.png") no-repeat scroll left top transparent;
}
img.floatright {
    float: right;
    padding-bottom: 25px;
}

/*Added for the WebForm responsive design*/
#maxWidth {
max-width:92%;
}
