/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, img {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: center;
	background-color: #000;
}
/* Commonly used to style page titles. */
h1 {
	color: #40B6F2;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	line-height: 28px;
	font-weight: normal;
	font-variant: normal;
	letter-spacing: -1px;
}
/* Commonly used to style section titles. */
h2 {
	color: #FFF;
	font-size: 19px;
	font-weight: normal;
	line-height: 24px;
	font-family: Verdana, Geneva, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
	padding-bottom: 6px;
	letter-spacing: -1px;
}
h3 {
    font-size: 16px;
}
hr {
	background-color: #333;
	color: #333;
	height: 1px;
	border: 0;
	clear: left;
}
/* Sets the style for unvisited links. */
:link:focus, :visited:focus { /* Prevents dotted focus outline in mozilla browsers */
	outline: none;
}
a, a:link {
	color: #40B6F2;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #40B6F2;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #FFF;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #40B6F2;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #40B6F2;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 920px;
}
/* This is the area above the navigation on the home page template only */
#outerWrapper #header {
	height: 85px;
	padding-left: 0px;
	padding-top: 20px;
}
#logo {
	float:left;
}
/* Sets the style for the header text. */
#headinfo {
	float: right;
	padding-top: 20px;
	text-align: right;
}
/* These are the settings for the top navigation bar */
nav {
	/*margin: 100px auto; */
    font-size: 14px;
	text-align: left;
	z-index:9;
}

nav ul ul {
	display: none;
z-index:9;
}

	nav ul li:hover > ul {
		display: block;
	}


nav ul {
	/*background: #efefef; 
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); */
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 20px;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}

	nav ul li {
		float: left;
	}
		nav ul li:hover {
			background: #40B6F2;
			background: linear-gradient(top, #40B6F2 0%, #40B6F2 40%);
			background: -moz-linear-gradient(top, #40B6F2 0%, #40B6F2 40%);
			background: -webkit-linear-gradient(top, #40B6F2 0%,#40B6F2 40%);


	border: solid 1px #000;
	overflow: hidden;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .4);

		}
			nav ul li:hover a {
				color: #fff;
			}
		
		nav ul li a {
			display: block; padding: 25px 40px;
			color: #757575; text-decoration: none;
		}
			
		
	nav ul ul {
		background: #303030; border-radius: 0px; padding: 0;
		position: absolute; top: 100%;
	}
		nav ul ul li {
			float: none; 
			border-top: 1px solid #40B6F2;
			border-bottom: 1px solid #40B6F2; position: relative;
		}
			nav ul ul li a {
				padding: 15px 40px;
				color: #fff;
			}	
				nav ul ul li a:hover {
					background: #50C6FF;

					border: solid 1px #FFF;
	overflow: hidden;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
				}
		
	nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}



#AppList {
    position:relative;
    height:185px;
}

#TargetNumberTop {
    position:absolute;
    left:10%;
    top:-5%;
}

#ChewMaestroTop {
    position:absolute;
    left:25%;
    top:5%;
}

#EfSTop {
    position:absolute;
    left:40%;
    top:-5%;
}

#FoundItTop {
    position:absolute;
    left:55%;
    top:5%;
}

#top_images {
    position:relative;
    height:225px;
    padding-top:15px;
}

#threedevices {
    position:absolute;
    top:0;
    left:0;
    height:200px;
    padding-top:15px;
}

#download {
    position:absolute;
    top:0;
    right:0;
    height:150px;
    padding-top:15px;
}

#app_text {
    position:relative;
}

/*
 * The TargetNumber section
 */

#TargetNumber {
	position:relative;
	height:245px;	
}

#TargetNumberimage {
	position:absolute;
	top:0;
	right:5%;
	width:25%;
}

#TargetNumbertext {
	position:absolute;
	top:0px;
	left:0%;
	width:65%;
}



/*
 * The ChewMaestro section
 */
#ChewMaestro {
	position:relative;
	height:225px;	
}

#ChewMaestroimage {
	position:absolute;
	top:0;
	right:5%;
	width:25%;
}

#ChewMaestrotext {
	position:absolute;
	top:0px;
	left:0%;
	width:65%;
}



/*
 * The EfS section
 */
#EfS {
	position:relative;
	height:225px;	
}

#EfSimage {
	position:absolute;
	top:0;
	right:5%;
	width:25%;
}

#EfStext {
	position:absolute;
	top:0px;
	left:0%;
	width:65%;
}



#FoundIt {
	position:relative;
	height:400px;	
}

#FoundItimage {
	position:absolute;
	right:5%;
	width:25%
}

#FoundIttext {
	position:absolute;
	top:0px;
	left:0%;
	width:65%;
	
}

/* This is the large image on the home page template only */
#featurenobanner {
	height: 90%;
	/*background-image: url(images/feature2.jpg);*/
	background-repeat: no-repeat;
	background-position: right top;
	margin-bottom: 10px;
	padding-top: 25px;
	padding-left: 20px;
	padding-right: 350px;
	color: #FFF;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	text-align: left;
}
/* This is the large image on the home page template only */
#feature {
	width:90%;
	height: auto;
	/*background-image: url(images/iOSDevices.png);*/
	background-repeat: no-repeat;
	background-position: left top;
	margin-bottom: 10px;
	padding-top: 25px;
	padding-left: 5%;
	padding-right: 5%;
	color: #FFF;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	text-align: left;
}
#feature .title {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 24px;
	font-weight: normal;
	letter-spacing: -1px;
}
#feature ul {
	padding-top: 0px;
	margin-top: 25px;
	color: #40B6F2;
}
#feature ul li {
}
#feature p {
	margin: 0px;
	padding: 0px;
}
/* Styles for download icon */
#download {
	float:right;
	margin-top: 30px;
}
/* This is the smaller image that spans the entire width of the subpage template */
#subfeaturenobanner {
	height: 1px;
	/*background-image: url(images/subpage-feature.jpg);*/
	background-repeat: no-repeat;
	background-position: right top;
	color: #000;
}
/* This is the smaller image that spans the entire width of the subpage template */
#subfeature {
	height: 106px;
	background-image: url(images/subpage-feature.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	color: #000;
}
.subfeature-content  {
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 155px;
	
}
#subfeature p {
	margin: 0px;
	padding: 0px;
}
#subfeature .title {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	letter-spacing: -1px;
}
#subfeature a:link, #subfeature a:visited, #subfeature a:active {
	color:#FFF;
}
/* This is the logo shown to the left of the large image on the home page only */
#feature-left {
	height: 251px;
	background-image: url(images/feature-left.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	background-image: url(images/content-fade.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #contentWrapper #content {
	/*float: left;*/
	position:relative;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 600px;
}
#outerWrapper #contentWrapper #rightColumn {
	float: right;
	width: 265px;
	padding-bottom: 20px;
	margin-top: 0px;
	padding-right: 0px;
}
/* This creates more spacing between lines in the content paragraphs */
#content p {
	line-height: 140%;
	font-size: 14px;
}

#content ul {
	line-height: 140%;
	font-size: 14px;
}
#content ul li {
	line-height: 140%;
	font-size: 14px;
}
#content ol {
	line-height: 140%;
	font-size: 14px;
}
#content ol li {
	line-height: 140%;
	font-size: 14px;
}

/* This styles the headings in the right sidebar */
#rightColumn h2 {
	color: #999;
	padding-left: 15px;
	padding-top: 8px;
	padding-bottom: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0px;
	letter-spacing: 3px;
	background-image: url(images/sidebar-h2.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border: 1px solid #272727;
}
/* This styles the dividing lines between items in the right sidebar if hr is used */
#rightColumn hr {
	background-color: #333;
	color: #333;
	height: 1px;
	border: 0;
}
/* This styles the navigation links in the sidebar. */
#rightColumn ul {
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#rightColumn ul li {
	list-style: none;
	display: inline;
}
#rightColumn ul li a {
	padding: 4px 4px 4px 6px;
	color: #999;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 19px;
	font-weight: normal;
	line-height: 24px;
	letter-spacing: -1px;
	display: block;
	background-color: #000;
}
#rightColumn ul li a:hover {
	text-decoration: none;
	color: #40B6F2;
	background-color: #202020;
}
/* Styles the background and border for the sidebar boxes */
.sidebar-border {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #272727;
	border-right-color: #272727;
	border-bottom-color: #272727;
	border-left-color: #272727;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	background-color: #000;
	padding: 10px;
}
.sidebar-border p {
	margin-top: 7px;
	margin-bottom: 7px;
}
/* This styles footer section */
#outerWrapper #footer {
	height: 45px;
	color: #666;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	background-color: #000;
	font-size: 11px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333;
}
#footer a:link, #footer a:visited, #footer a:active {
	color: #666;
}
#footer a:hover {
	color: #FFF;
	text-decoration: none;
		
}
#footer p {
	margin:0 0 10px 0;
	padding:0px;
}
/* These are the settings for the contact form in the sidebar. Commonly used for newsletter signups. */
#newsletter {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding-top: 15px;
}
#newsletter label {
	display:block;
	padding-bottom:5px;
	font-size: 11px;
	font-weight: normal;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 1px;
	padding-left: 5px;
}
#newsletter input {
	width: 215px;
	background-color: #333;
	color: #FFF;
	border: 1px solid #666;
	font-size: 12px;
	font-weight: bold;
	padding: 3px;
	margin-bottom: 8px;
}
#newsletter select {
	width: 215px;
	background-color: #FFF;
	color: #666;
	border: 1px solid #425066;
	font-size: 12px;
	font-weight: bold;
	padding: 3px;
	margin-bottom: 8px;
}
#newsletter #button {
	margin-left:45px;
	width:125px;
	height:31px;
	text-align:center;
	color:#FFF;
	font-size:11px;
	font-weight:bold;
	background-image: url(images/button.jpg);
	background-repeat: no-repeat;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 8px;
	line-height: 25px;
}
#newsletter #button:hover {
	color: #FFF;
	background-image: url(images/button-hover.jpg);
	cursor: pointer;
}
/* Styles for floating images right or left */
.right {
	float:right;
	margin: 10px 0 10px 15px;
}
.left {
	float:left;
	margin: 10px 15px 10px 0;
}
.green {
	color:#40B6F2;	
}
/* This styles the sitemap page list */
#sitemap li{
	margin-bottom: 8px;

}
#sitemap ul {
	margin-top: 5px;
	padding-left: 0px;
	margin-left: 0px;
}
#sitemap li.subpage {
	background: url(images/subpage.gif) no-repeat left top;
	padding-left: 12px;
	line-height: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	list-style: none;
}
#sitemap li.subpage a, #content li.subpage a:link {
	font-weight:normal;
}
/* These are the styles for the contact form */
Label {
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
}
.inputButton {
}
.required {
	font-size:9px;
	color:#C00;
}

/* rounded image styles */
.rounded-img {
	display: inline-block;
	border: solid 1px #000;
	overflow: hidden;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 30px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.rounded-img2 {
	display: inline-block;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 30px;
	-webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .9), 0 -1px 0 rgba(0, 0, 0, .6);
	-moz-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .9), 0 -1px 0 rgba(0, 0, 0, .6);
	box-shadow: inset 0 1px 5px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .9), 0 -1px 0 rgba(0, 0, 0, .6);
}
