/* Standard Styles */
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,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form,
label, legend,table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
}
body {/* Default styling for everything that is un-styled and doesn't inherit*/
	color:#000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-size-adjust:none;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:1.5;
	background-color:#444;
}

/* ~~ 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 div. The remaining bottom margin will hold it away from any elements that follow. */
	/*padding-right:15px;
	padding-left:15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
/*
}
*/
p {
	margin-bottom:8px;
}
/*
h1 {
	font-size: 130%;
	color:#000000;
}
h2 {
	font-size: 115%;
	color:#900000;
}
*/
/* Headers */
h1, h2, h3, h4, h5, h6 {
	color: #333;
	margin: 0.5em 0;
	padding: 0;
	line-height: 1.1em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #333;
}
h1 {
	color:#006000;
	padding-bottom:10px;
}
h1 {
	font-weight:bold;
}
h2 {
	font-weight: normal;
}
h3, h4, h5, h6 {
	font-weight: bold;
}
h1 {
	font-size: 200%;
}
h2 {
	font-size: 183%;
}
h3 {
	font-size: 166%;
}
h4 {
	font-size: 150%;
	font-weight: bold;
}
h5 {
	font-size: 133%;
	font-weight: bold;
}
h6 {
	font-size: 116%;
	font-weight: bold;
}

hr {
	color:#000099;
	background-color:#000099;
	height:1px;
	border:0;
	width:100%;	
}
div.center {
	text-align:center;	
}
.redText {
	color:#900;
}
.blueText {
	color:#00F;
}
.nonBoldText {
	font-weight:normal;
}
hr {
	color:#0000ff;
	background-color:#0000ff;
	height:1px;
	margin:10px 0px;
}

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:#00F;
	text-decoration:underline; /* 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;
}
/*
.staticlink a:visited {
	color:#00F;
	text-decoration:underline;
}
.staticlink a:hover {
	color:#900;
	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:underline;
	color:#900;
}
a.staticlink {
	color:#00F;
}
a.staticlink:hover {
	color:#900;
}

.container {
	width:954px;
	/*background:url(images/border1px.png) repeat-y; */
	margin:20px auto; /* the auto value on the sides, coupled with the width, centers the layout */
	position:relative;
	border:1px solid #008000;
-moz-border-radius:7px;			/* matches blog rounded-corners.css */
-khtml-border-radius:7px;
-webkit-border-radius:7px;
border-radius:7px;
	/*background-color:#EDF3E6;*/
	padding:10px;   /* minus borders leaves 952px for content */
	background-color:#EDF3E6;
}
.container.shadow {
	/* Shadows - CSS3 for browsers that support it */
	box-shadow: 10px 10px 5px #888;
	-webkit-box-shadow: 10px 10px 5px #888;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height:164px;
	margin:0px auto; 
	padding:0;
	background:url(images/singleparentstown.jpg) no-repeat left;
/*
-moz-border-radius-topleft:10px;
border-top-left-radius:10px;	
-moz-border-radius-topright:10px;
border-top-right-radius:10px;	
	border-top-width:3px;
	border-top-style:solid;
	border-top-color:#000000;
	border-left-width:3px;
	border-left-style:solid;
	border-left-color:#000000;
	border-right-width:3px;
	border-right-style:solid;
	border-right-color:#000000;
	*/
}
.header-right {
	width:260px;
	height:164px;
	margin:0px auto; 
	padding:0px;
	float:right;
	}

/***** any updated to navigation-spt also needs to be applied to blog custom styles */
.navigation-spt {   
	width:954px;
	font:bold 90% Verdana, Geneva, sans-serif;
	margin:0 auto;
/* margin-top:-31px; */		/* for blog, move up to offset nav style. IE ignores it. Looking for hack. */
	padding:0;
	position:relative;
	background-color:#f7bb09;  /* gold */
	border-top:#000000 solid 3px;
	display:block;	/* mobile: change to none */
}
.navLeft-spt {
	float:left;
	background-color:#f7bb09;
	padding-top:7px;
	padding-bottom:7px;
}
.navRight-spt {
	float:right;
	background-color:#f7bb09;
	padding-top:7px;
	padding-bottom:7px;
}
.navigation-spt ul {
	margin:0;
	padding:0;
	list-style:none;
}
.navigation-spt li {
	display:inline;
	padding-top:7px;
	padding-bottom:7px;
-webkit-transition-property: color, background; 
-moz-webkit-transition-property: color, background; 
-ms-transition-property: color, background; 
-o-transition-property: color, background; 
transition-property: color, background; 
-webkit-transition-duration:0.35s, 0.35s;
-moz-transition-duration:0.35s, 0.35s;
-ms-transition-duration:0.35s, 0.35s;
-o-transition-duration:0.35s, 0.35s;
transition-duration:0.35s, 0.35s;
-webkit-transition-timing-function: linear, ease-in;
-moz-webkit-transition-timing-function: linear, ease-in;
-ms-webkit-transition-timing-function: linear, ease-in;
-o-webkit-transition-timing-function: linear, ease-in;
transition-timing-function: linear, ease-in;
}
.navigation-spt li a {
	color:#ffffff;
	color:#000; 
	text-decoration:none;
	padding:7px 11px 7px 11px;   /* top/bottom padding for text within color block, left/right padding for text spacing */
-webkit-transition-property: color, background; 
-moz-webkit-transition-property: color, background; 
-ms-transition-property: color, background; 
-o-transition-property: color, background; 
transition-property: color, background; 
-webkit-transition-duration:0.35s, 0.35s;
-moz-transition-duration:0.35s, 0.35s;
-ms-transition-duration:0.35s, 0.35s;
-o-transition-duration:0.35s, 0.35s;
transition-duration:0.35s, 0.35s;
-webkit-transition-timing-function: linear, ease-in;
-moz-webkit-transition-timing-function: linear, ease-in;
-ms-webkit-transition-timing-function: linear, ease-in;
-o-webkit-transition-timing-function: linear, ease-in;
transition-timing-function: linear, ease-in;
}
.navigation-spt li a:hover { /* sets transition effects */
	background-color:#244791; /* blue */
	color:#ffffff;  
	text-decoration:underline;
}
.navigation-spt ul li .static-link {
	background-color:#EDF3E6;
	padding:7px 11px 7px 11px;   /* top/bottom padding for text within color block, left/right padding for text spacing */
	color:#000000;
}
/***** end of navigation-spt */

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs 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 div 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 div and place a second div 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 div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div'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 divs 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 divs around in the HTML source.

*/
.content { /* total 660px, 615px after box */
	float:left;
	width:660px;
	margin:0;
	padding:20px 0px 0px 0px;
}

.experts {
	position:relative;
	display:block;
	color:#FFF;
	font-size:95%;
}
.experts-name1 {
	position:absolute;
	top:45px;
	left:102px;
}
.experts-name2 {
	position:absolute;
	top:45px;
	left:302px;
}
.experts-name3 {
	position:absolute;
	top:45px;
	left:502px;
}
.experts-name4 {
	position:absolute;
	top:145px;
	left:35px;
}
.experts-name5 {
	position:absolute;
	top:145px;
	left:210px;
}
.experts-name6 {
	position:absolute;
	top:145px;
	left:417px;
}
.expert {
	float:left;
	font-size:110%;
	font-weight:bold;
}
.expert-day {
	float:right;
	font-size:110%;
	text-align:right;
	font-style:italic;
	font-weight:bold;
	color:#900;
}
.table { /* size 615px */
	margin:10px 0px 10px 0px;
}
.tableRow {
	width:615px;
	float:left;
	padding:5px 0px 5px 0px;
	border-bottom:1px solid #9CF;
}
.tableDate {
	width:170px;
	float:left;
}
.tableRecipeName {
	width:445px;
	float:left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding:0px 15px 15px 25px; /* 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. */
}
.content ul li, .content ol li {
	padding:5px 0px 0px 0px;
}
.sidebar ul, .sidebar ol { 
	padding:0px 15px 15px 25px; /* 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. */
}
.sidebar ul li, .sidebar ol li {
	padding:5px 0px 0px 0px;
}

.tips {   /* override above ul padding */
	position:relative;
	display:block;	/* mobile: change to none */
}
.tips ul {
	padding:0; /* override above ul padding */
	list-style:none;
}
.tips ul li {
	display:inline;
	margin:0;
	padding:0px 4px 0px 0px;
}
.tips ul li a {
	margin:0;
	padding:0px 4px 0px 0px;
	color:#00F;
	text-decoration:underline;
}
.tips ul li a:hover {
	color:#900;
} 
tips ul li a:visited {
	color:#00F;
	text-decoration:underline;
}

.content-box {
	border:#ccc solid 1px;
	margin-right:15px;
	margin-bottom:20px;
	padding:15px;
	background-color:#ffffff;
-moz-border-radius:5px;			/* matches blog rounded-corners.css */
-khtml-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.sidebar-box {
	border:#ccc solid 1px;
	margin-bottom:20px;
	padding:10px;
	background-color:#ffffff;
-moz-border-radius:5px;			/* matches blog rounded-corners.css */
-khtml-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}

.recipes-box {
	border:#ccc solid 1px;
	padding:10px;
	background-color:#ECECEC;
	background:url(images/recipe-background.png) repeat-y left;
	
-moz-border-radius:5px;			/* matches blog rounded-corners.css */
-khtml-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}

.sidebar {   /* total 294px, 274px after box */
	float:right;
	width:294px;
	padding:20px 0px 0px 0px;
}

.signUp {
	font-style:italic;
	color:#006000;
}

/* ~~ The footer ~~ */
.footer-spt {
	width:954px;
	font:bold 90% Verdana, Geneva, sans-serif;
	margin:0;
	padding:10px 0px 10px 0px;
	background-color:#244791; /* blue */
	border-top:#000000 solid 3px;
	display:block;	/* mobile: change to none */
	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 */
}
.footer-column-spt {
	float:left;
}
.footer-column-spt ul {
	margin:0;
	padding:0px 0px 10px 0px;
	list-style:none;
}
.footer-column-spt ul li {
	color:#ffffff;
	display:block;
	padding:5px 30px 0px 40px;
}
.footer-column-spt ul li a {
	color:#ffffff;
	text-decoration:none;
}
.footer-column-spt ul li a:hover, ul li:hover a, ul li a:active,  ul li:active a, ul li a:focus, ul li:focus a {
	color:#f7bb09; 
}
.footer-column-spt li a:visited {
	color:#ffffff;
}
/***** end of footer-spt */

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left:15px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right:15px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.form-display {
	width:100%;
}
label {
	font-size: 80%;
	font-weight: bold;
	color: #333;
}
form .redText {
	font-size:75%;
	color:#900;
}
form .submitbox {
	background: #0C0;
	border: 1px solid #000;
	font-size: 110%;
}
form .submitbox:hover {
	background: #0F0;
}
.formComment {
	font-size: 90%;
	color: #999;
	padding-left: 5px;
}
form .inputtext {
	background: #FFC;
	border: 1px solid #000;
	margin-bottom: 10px;
}
form .textarea {
	background: #FFC;
	border: 1px solid #000;
	margin-bottom: 10px;
}

.captcha_error_message {
	color: #F00;
}
#captcha{
	background-color: #FFC;
	width:128px;
	border: 1px solid #000;
}
.captcha960 {
	display:block;	/* mobile: change to none */
}
.captcha480 {
	display:none;	/* mobile: change to block */
}
.entry_author_image { /* used for wp author images */
  float:left;
  border:solid 1px outset;
  margin:5px 10px 10px 0px;
}
