@charset "utf-8";
/* CSS Document */
<!--
body {
	font-family:Tahoma, Arial, sans-serif;
	font-size:12px;
	/*background: #0C0 url(../images/cloud.jpg) no-repeat fixed;*/
	margin: 0;
	padding: 0;/*color: #090;*/
}
th {
	color: #090;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	font-size:16px;
	font-weight:bold;
	color:#11800e;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
#container {
/*min-width:720px;
	position:relative;
	width:100%;*/
}
/* ANIMATION */
#stage {
	top: 0px;
	left: 0px;
	z-index: 100;
}
.stage {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 720px;
	min-height: 710px;
	height:100%;
	overflow: hidden;
}
q::before {
	content: "»";
	color: #F0F;
	padding-right:5px;
	font-weight:bold;
}
.sun {
	position: absolute;
	display: none;
	margin:0 auto;
	top:20px;
	left:320px;
	width:500px;
	z-index:100;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	/*background:url(../images/white80.png) repeat;*/
	background:#FFFFFF;
	/*border-left:#ccc solid 1px;
	border-right:#ccc solid 1px;*/
	margin: 0 auto; /*the auto value on the sides, coupled with the width, centers the layout */
	-moz-box-shadow: 0px 0px 15px 0px #666;
	-webkit-box-shadow: 0px 0px 15px 0px #666;
	box-shadow: 0px 0px 15px 0px #666;
	behavior: url(css/PIE.htc);
	position: relative;
	padding: 0 10px 0 10px;
}
#slider {
	-webkit-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	/*background: #ADB96E;*/
	background:url(../images/white80.png) repeat;
	background: #ffffff; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y4ZmZlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMGM0MjkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(left, #f8ffe8 0%, #30c429 100%); /* FF3.6+ */
	/*background: -webkit-gradient(linear, left top, right top, color-stop(0%, #f8ffe8), color-stop(100%, #30c429)); /* Chrome,Safari4+ */
	/*background: -webkit-linear-gradient(left, #f8ffe8 0%, #30c429 100%); /* Chrome10+,Safari5.1+ */
	/*background: -o-linear-gradient(left, #f8ffe8 0%, #30c429 100%); /* Opera 11.10+ */
	/*background: -ms-linear-gradient(left, #f8ffe8 0%, #30c429 100%); /* IE10+ */
	/*background: linear-gradient(to right, #f8ffe8 0%, #30c429 100%); /* W3C */
 /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#30c429', GradientType=1 ); /* IE6-8 */
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 200px;
	/*background: #fff;*/
	padding-bottom: 10px;
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	margin-top:5px;
}
.content {
	padding: 5px 0;
	width: 750px;
	float: left;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border: 1px solid #d4d2d2; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
nav ul li {
	border-bottom: 0px solid #666; /* this creates the button separation */
}
nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 5px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 188px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #f7f7f7;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #6F3;
	color: #FFF;
}
.titlecorner {
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	background:#fff url(../images/intro-product.png) no-repeat;
	width:200px;
	height:35px;
	border:#CCC solid 1px;
}
/* ~~ The footer ~~ */
footer {
	padding: 0px;
	/*background: url(../images/bg.jpg) no-repeat;*/
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	background: #f8ffe8; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y4ZmZlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMGM0MjkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #f8ffe8 0%, #30c429 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8ffe8), color-stop(100%, #30c429)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f8ffe8 0%, #30c429 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f8ffe8 0%, #30c429 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f8ffe8 0%, #30c429 100%); /* IE10+ */
	background: linear-gradient(to bottom, #f8ffe8 0%, #30c429 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#30c429', GradientType=0 ); /* IE6-8 */
}
address {
	padding:10px 0px 0px 10px;
	/*background:url(../images/white80.png) repeat;*/
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
}
#txtSearch2 {
	height: 20px;
	width: 138px;
	background-image: url(../images/bg-search-w.jpg);
	background-position: right;
	background-repeat: no-repeat;
	text-align: left;
	padding-left: 20px;
	border:none;
}
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
-->
.ddsmoothmenu {
	width: 100%;
	margin-top:10px;
}
.ddsmoothmenu ul {
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	height:34px;
}
/*Top level list items*/
.ddsmoothmenu ul li {
	position: relative;
	display: inline;
	float: left;
	width:105px;
}
/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block;
	/*background:url(../images/blk-title.jpg) repeat-x;*/
	/*background: #f8ffe8; /* Old browsers */
	/*background: -moz-linear-gradient(top, #f8ffe8 0%, #e3f5ab 33%, #b7df2d 100%); /* FF3.6+ */
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8ffe8), color-stop(33%,#e3f5ab), color-stop(100%,#b7df2d)); /* Chrome,Safari4+ */
	/*background: -webkit-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* Chrome10+,Safari5.1+ */
	/*background: -o-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* Opera 11.10+ */
	/*background: -ms-linear-gradient(top, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* IE10+ */
	/*background: linear-gradient(to bottom, #f8ffe8 0%,#e3f5ab 33%,#b7df2d 100%); /* W3C */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8ffe8', endColorstr='#b7df2d',GradientType=0 ); /* IE 5.5 - 7 */
	/*-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8ffe8, endColorstr=#b7df2d)"; /* IE 8 */
	padding:10px;
	border-right: 1px solid #AABC86;
	color:#350;
	text-decoration: none;
	text-align:center;
	font-weight:bold;
	font-size:12px;
	cursor:pointer;
}
* html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited {
/*color: white;*/
}
.ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background:#57A957;
	color: white;
}
.ddsmoothmenu ul li a:hover {
	background: #57A957; /*background of menu items during onmouseover (hover state)*/
	color: white;
}
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul {
	top: 0;
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
	font: normal 13px Verdana;
	width: 121px; /*width of sub menus*/
	/*height:15px;*/
	padding:10px;
	margin: 0;
	border-top-width: 0;
	text-align:left;
	border-bottom: 1px solid gray;
	background:#808080;
	color:white;
}
.ddsmoothmenu ul li ul li a:hover {
	font-weight:bold;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu {
	height: 1%;
} /*Holly Hack for IE7 and below*/
/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}
.rightarrowclass {
	position: absolute;
	top: 10px;
	right: 5px;
}
/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow { /*shadow for NON CSS3 capable browsers*/
	position: absolute;
	left: 0;
	top: 0;
	width: 160px;
	height: 0;
	background: silver;
}
.toplevelshadow { /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
	opacity: 0.8;
}
input[type='button'], input[type='submit'], input[type='reset'] {
	padding: 5px 10px;
	margin: 2px;
	font-size: 12px;
	text-align: center;
	text-shadow: 0 1px 1px #333333;
	-webkit-box-shadow: 0 0 3px #CCCCCC;
	-moz-box-shadow: 0 0 3px #CCCCCC;
	box-shadow: 0 0 3px #CCCCCC;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline;
	color: #FFFFFF;
	text-shadow: 0 0 1px #009AEF;
	border: 1px solid #009AEF;
	background-color: #59C8EF;
	background-image: -moz-linear-gradient(top, #59C8EF, #00A5DF);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#59C8EF), to(#00A5DF));
	background-image: -webkit-linear-gradient(#59C8EF, #00A5DF);
	background-image: -o-linear-gradient(#59C8EF, #00A5DF);
	background-image: linear-gradient(top, #59C8EF, #00A5DF);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#59C8EF', endColorstr='#00A5DF');
}
input[type='text'], input[type='password'] {
	background: white;
	border: 1px solid #DDD;
	border-radius: 5px;
	box-shadow: 0 0 5px #DDD inset;
	color: #666;
	padding: 5px 10px;
	outline: none;
}
textarea {
	background: white;
	border: 1px solid #DDD;
	border-radius: 5px;
	box-shadow: 0 0 5px #DDD inset;
	color: #666;
	padding: 5px 10px;
	outline: none;
}
/* The CSS */
select {
	background: white;
	border: 1px solid #DDD;
	border-radius: 5px;
	box-shadow: 0 0 5px #DDD inset;
	color: #666;
	padding: 5px 10px;
	outline: none;
}
.headcolumn {
	border: 1px solid #d4d2d2 !important;
	/*border-radius: 0 0 8px 8px !important;
	-webkit-border-radius: 0 0 8px 8px !important;
	-moz-border-radius: 0 0 8px 8px !important;*/
	color: #303030 !important;
	padding: 7px !important;
	margin: 0px !important;
	background:#f7f7f7;/*min-height:500px;*/
}
#newpr, #newpr a:link {
	width:200px;
	height:200px;
	border:#d4d2d2 solid 1px;
	padding:10px;
	background:#fff;
	margin:5px;
}
#newpr a:hover, #newpr a:active, #newpr a:focus {
	border:#57A957 solid 1px;
}
.boxtitle {
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
	/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#11800e', endColorstr = '#0dff18');
	/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#11800e', endColorstr = '#0dff18')";
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	background-image: -moz-linear-gradient(top, #11800e, #0dff18);
	background-image: -ms-linear-gradient(top, #11800e, #0dff18);
	background-image: -o-linear-gradient(top, #11800e, #0dff18);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#11800e), to(#0dff18));
	background-image: -webkit-linear-gradient(top, #11800e, #0dff18);
	background-image: linear-gradient(top, #11800e, #0dff18);
	/*--IE9 DOES NOT SUPPORT CSS3 GRADIENT BACKGROUNDS--*/
	/*http://css3.me/*/
	min-height:30px;
}
.fb-comments, .fb-comments span, .fb-comments iframe {
	width: 100% !important;
}
.shadowed {
	-webkit-filter: drop-shadow(0px 0px 0px rgba(255,255,255,0.5));
	filter: url(#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#fff')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#fff')";
}