@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
body {
	font-family:arial,Trebuchet MS,sans-serif,lucida grande,tahoma,verdana;
	color: #000000;
	font-size:12px;
	margin:0;

}

a:link {
	color:#441369;
	
}
a:visited {
	color:#441369;
	
	font-weight:normal;
}
a:hover {
	color:#B66728;
	
}

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
    font-family:arial,Trebuchet MS, sans-serif,lucida grande,tahoma,verdana;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	border-left:solid 1px #fff;
	
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	z-index: 1020;
	cursor: default;
	width: 13.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 13.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #8C9D5F;
	font: bold 1.1em arial,Trebuchet MS,sans-serif,tahoma,verdana,lucida grande;
	padding: 0.5em 0.75em;
	color: white;
	text-decoration: none;
}
ul.MenuBarHorizontal1 a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #33C;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #B0C477;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
    background-image: url(SpryAssets/SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 90% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryAssets/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 90% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

#container {
       width: 1000px;
       margin: 0 auto;
       text-align: left;
       background: #FFFFFF;
       padding-top:10px;
    }
    #container_free {
       width: 1000px;
       margin: 0 auto;
       text-align: left;
       background: #FFFFFF;
       padding-top:0px;
    }
#top-left {
       float:left;
	   text-align:left;	 
	  
    }
#top-left a:link
{
	text-decoration:none;
}
#top-left a:visited
{
	text-decoration:none;
}
#top-left a:hover
{
	text-decoration:underline;
}

#leftNav a:link
{
	text-decoration:none;
}
#leftNav a:visited
{
	text-decoration:none;
}
#leftNav a:hover
{
	text-decoration:underline;
}

#top-nav a:link
{
	text-decoration:none;
}
#top-nav a:visited
{
	text-decoration:none;
}
#top-nav a:hover
{
	text-decoration:underline;
}

#footer a:link
{
	text-decoration:none;
}
#footer a:visited
{
	text-decoration:none;
}
#footer a:hover
{
	text-decoration:underline;
}



#top-right {
	float:right;
	padding-top:10px;
	margin-right:5px;
	line-height:1.5;
	text-align:right;
	color:#8C9D5F;
    }
    
#top-nav {
	width:958px;
	position:relative;	
	background:none;
	clear:both;	
	z-index:1;
	}
#searchbar {
	width:1000px;
	height:28px;
	clear:both;	
	}
	
#searchbar-left {
	float:left;	
	height:28px;
	line-height:28px;
	}
#searchbar-right {
	float:right;	
	height:28px;
	padding-right:10px;	
	line-height:28px;
	}
#main {
	margin-top:1px;	
	clear:both;
	min-height:400px;
	vertical-align:top;	
	width:1000px;	
	}
#main-left {
	float:left;
	width:325px;
	height:392px;
	padding: 0px 8px 0px 8px;
	border: #CCCCCC 1px solid;
	background-image:url(http://www.healthyyourway.com/images/boxBG-LG.gif);
	background-position:bottom;
	background-repeat:repeat-x;
	}
	#leftNav {
	float:left;
	width:200px;
	background-image:url(http://www.healthyyourway.com/images/boxBG-LG.gif);
	background-position:bottom;
	background-repeat:repeat-x;
	}
#main-center-wide2 {
	width:654px;
	padding:0px;
	float:right;
	min-height:414px;
	text-align:right;
	}	
	#content {
	width:775px;
	padding-left:15px;
	float:left;
	min-height:414px;
	text-align:left;
	border: solid 0px red;
	margin-left:0px;
	}
	#fitness {
	width:958px;
	padding-left:0px;
	float:left;
	min-height:414px;
	text-align:left;
	border: solid 0px red;
	margin-left:0px;
	}	
	#fitnessquiz {
	width:958px;
	float:right;
	margin-right:0px
	}
	#ask {	
	
	}
	#Question {	
	
	}	
		#Topic {	
	
	}
#bottom-rule {
	clear:both;
	width:1000px;
	height:15px;
	line-height:15px;
	padding-top:10px;
	text-align:center;
	}	
#footer {
	clear:both;
	width:1000px;
	height:80px;	
	}
	

img {
	border:none;	
	}

img a:link, img a:visited {
	text-decoration:none;
	border:none;
	}
	.pagination
{
    background-color:WhiteSmoke;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
	.first
{
    background-color:WhiteSmoke;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
	.previous
{
    background-color:WhiteSmoke;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
	.current
{
    background-color:Gray;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
	.next
{
    background-color:WhiteSmoke;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
	.last
{
    background-color:WhiteSmoke;
    padding:4px;
    border: solid 1px gray;
    margin-left:4px;
    
}
.categoryshow
{
    
    padding:5px;
    border-top: solid 1px gray;
    border-bottom: solid 1px gray;
    border-left : solid 1px #cccccc;
    clear:both;
    height:18px;
}
.categorydis
{ 
   padding:5px;   	
   border-left :solid 1px #cccccc; 
   border-right :solid 1px #cccccc;    
   clear:both; 
}
.categorydis_top
{ 
   padding:5px;   	
   border-left :solid 1px #cccccc; 
   border-right :solid 1px #cccccc; 
   border-top :solid 1px #cccccc; 
   clear:both;
}
.categorydis_bot
{ 
   padding:5px;   	
   border-left :solid 1px #cccccc; 
   border-right :solid 1px #cccccc; 
   border-bottom :solid 1px #cccccc; 
   clear:both;
}
.categorydis_Head
{ 
   padding:5px;   	
   border-left :solid 1px #cccccc; 
   border-right :solid 1px #cccccc; 
   border-top :solid 1px #cccccc;
   background-color:#cccccc; 
   font: bold 1.1em arial,Trebuchet MS,sans-serif,tahoma,verdana,lucida grande;
 color:#fff;
 clear:both;
}
#signup {
	width: 360px;
	margin-left:330px;
	border: #CCCCCC thin solid;
	background-image:url(http://www.healthyyourway.com/images/boxBG.gif);
	background-position:bottom;
	background-repeat:repeat-x;
	margin-top: 10px;
}
#Breadcrumb 
{
    clear:both;
	float:left;
	width:960px;	
	padding-top: 5px;
	padding-bottom:5px;		
	}
	.savebtn
	{
	 font: bold 0.9em arial,Trebuchet MS,sans-serif,tahoma,verdana,lucida grande;
    color:White;
    background-color: #8C9D5F;
    border:solid 1px;
    height:25px;
	}
	.span7
	{
	    font: bold 1.2em arial,Trebuchet MS, sans-serif,tahoma,verdana,lucida grande;
	}
	.membernav
	{
	    float:left;
	padding-left:25px;
	
	text-align:center;
	}
	.Freezing 
{ 
   position:relative; 
   top:expression(this.offsetParent.scrollTop); 
   z-index: 10; 
}
 .watermark
{    
    color: #A3A3A3;
}
.modalBackground
{
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.modalPopup
{
    background-color: #ffffff;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 510px;
}

