/* Header.css */

#loggedout_header
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 1000;
	padding: 20px;
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
}

.active
{
	background: rgba(40,40,40,0.9);
}

#loggedout_header img
{
	height: 40px;
	transition: all 0.2s ease-in-out;	
}

#loggedout_header.active img
{
	height: 25px;	
}

#loggedout_header .links
{
	float: right; 
	line-height: 40px;
	font-size: 16px;
	margin-right: 40px;
	transition: all 0.2s ease-in-out;	
}

#loggedout_header .links a
{
	display: inline-block;
	color: #fff;
    padding: 0px 10px;	
	text-align: center;
	transition: all 0.2s ease-in-out;
	margin-left: 25px;
}

#loggedout_header .links a:hover
{
	text-decoration: underline;
}

#loggedout_header.active .links
{
	line-height: 25px;	
	font-size: 16px;
}

#loggedout_header .links a.button
{
    padding: 10px 25px;
	margin-top: -10px; 
	margin-bottom: -10px;
	line-height: 20px;		
	border-radius: 20px;
	background-image: linear-gradient(to right, #5a3bdb, #75c6ec);	
}

#loggedout_header .links a.button:hover
{	
	text-decoration: none;
	box-shadow: 0px 0px 8px rgba(0,0,0,0.75);
}

@media (max-width: 799px)
{
	#loggedout_header img
	{
		height: 25px;
	}
	
	#loggedout_header .links, #loggedout_header.active .links
	{
		line-height: 25px;
		margin-right: -10px;	
		font-size: 14px;		
	}
	
	#loggedout_header .links a
	{
		width: auto;
		margin-left: 10px;
		padding: 0px;	
	}
	
	#loggedout_header .links a.hide_mobile
	{
		display: none;
	}
	
	#loggedout_header .links a.button, #loggedout_header.active .links a.button
	{
    	padding: 8px 10px;	
		margin-top: -8px; 
		margin-bottom: -8px;			
	}
}

#topframe_container
{
	background: #e5e4e4 url('/images/top_bg_new.jpg') no-repeat center -77px;
}

#topframe
{
	background: #fff;
}

#content
{
	margin: 0px auto;
	width: 980px;
	padding: 20px 0px;
	position: relative;
}

#header_wrapper
{
	z-index: 999;
	background: url('/images/header_bg.jpg') repeat-x;
}

#header
{
	margin: 0px auto;
	width: 980px;
	height: 100px;
	position: relative;
	padding: 0px;
	margin: 0px auto;
	z-index: 999;
}

#logged_in
{
	position: absolute;
	right: 5px;
	top: 56px;
	color: #ddd;
}

#logged_in a
{
	color: #f08b2f;
}

#quick_menu
{
	position: absolute;
	right: 5px;
	top: 33px;
}

#login_info
{
	position: absolute;
	right: 116px;
	top: 12px;
	color: #aaa;
	font-size: 12px;
}

#login_info a
{
	color: #fff;
}

#not_gold
{
	position: absolute;
	right: 0px;
	top: 61px;
	color: #333;
	font-size: 11px;
}

#profile_pic
{
	position: absolute; 
	top: 14px; 
	right: 76px;
	z-index: 999;
	cursor: pointer;
}

#profile_pic img
{
	height: 32px;
	width: 32px;	
	border-radius: 50%;	
	border: 2px solid rgba(0,0,0,0.2);
	box-sizing: border-box;
}

#profile_pic:hover img
{
	border: 2px solid rgba(0,0,0,0.4);
}

#messages_indicator
{
	position: absolute; 
	top: 14px; 
	right: 38px;
	background: rgba(255,255,255,0.2) url('/images/messages_off.png') no-repeat center center;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	z-index: 999;
}

#messages_indicator:hover
{
	background: rgba(255,255,255,0.2) url('/images/messages_on.png') no-repeat center center;
	text-decoration: none;
}

#notifications_indicator
{
	position: absolute; 
	top: 14px; 
	right: 0px;
	background: rgba(255,255,255,0.2) url('/images/notifications_off.png') no-repeat center center;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	z-index: 999;
}

#notifications_indicator:hover
{
	background: rgba(255,255,255,0.2) url('/images/notifications_on.png') no-repeat center center;
	text-decoration: none;
}

#notifications_count, #messages_count
{
	position: absolute; 
	top: -3px; 
	right: -3px;
	border-radius: 100%;
	text-align: center;
	line-height: 14px;
	min-width: 14px;
	color: #fff;
	background-color: #000;
	font-size: 10px;
}

#instructions, #messages, #notifications
{
	position: absolute; 
	top: 48px;	
	z-index: 998;
	width: 325px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

#instructions
{ 
	right: 71px;
}

#messages
{
	right: 33px;
}

#notifications
{
	right: -5px;
}

#instructions_count
{
	position: absolute; 
	top: -3px; 
	right: -3px;
	border-radius: 50%;
	text-align: center;
	line-height: 14px;
	min-width: 14px;
	padding: 0px;
	color: #000;
	background-color: #fff;
	font-size: 10px;
}


#notifications_top, #messages_top, #instructions_top
{
	text-align: right;
	padding-right: 12px;
}

#notifications_content, #instructions_content, #messages_content
{
	margin-top: -1px;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #666;
	font-size: 11px;
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
}

#messages_list ul, #messages_list ul li, #notifications_list ul, #notifications_list ul li
{
	margin: 0px;
	padding: 0px;
}

#messages_list ul li a, #notifications_list ul li a
{
	display: block;
	border-top: 1px solid #ddd;
	font-size: 12px;
	color: #000;
}

#messages_list ul li a:hover, #notifications_list ul li a:hover
{
	background-color: #f6f6f6;
	text-decoration: none;
}

#messages_list ul li a.not_read, #notifications_list ul li a.not_read
{
	background-color: #eef8ff;
}

#messages_list ul li a.not_read:hover, #notifications_list ul li a.not_read:hover
{
	background-color: #e3f3ff;
}

#messages_list ul li a span.new, #notifications_list ul li a span.new
{
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	line-height: 14px;
	padding: 0px 3px;
	color: #fff;
	background-color: #d41515;
	font-size: 10px;	
}

#instructions_content
{
	color: #444;
}

#instructions_content h3
{
	font-size: 12px;
	margin-bottom: 4px;
}

#instructions_content ul
{
	margin: 0px;
	padding: 0px;
}

#instructions_content ul li
{
	margin: 0px;
	padding: 0px;
	color: #555;
	cursor: pointer;
	font-size: 12px;
}

#instructions_content ul li a
{
	color: #222;
	display: block;
	padding: 5px;
	background: #fff url('/images/arrow.gif') no-repeat 290px center;
}

#instructions_content ul li a:hover
{
	background-color: #eee;
	text-decoration: none;
	color: #000;
}

#instructions_content ul li a img
{
	margin: 0px 6px 2px 0px;
}

#apps_info
{
	float: right;
	padding-top: 5px;
	position: relative;
}

#apps_info .fancy_cancel
{
	font-size: 13px;
	padding: 5px 20px 5px 45px;
	line-height: 16px;
}

#apps_info img
{
	position: absolute;
	top: -11px;
	left: 9px;
}

#facebook_like
{
	border: none; 
	overflow: hidden; 
	width: 90px; 
	height: 21px; 
	position: absolute; 
	top: 90px; 
	right: 14px; 
	z-index: 100;
}

#google_plus
{
	border: none; 
	position: absolute; 
	top: 92px; 
	right: 100px; 
	z-index: 100;
}

#icon_menu
{
	position: absolute; 
	top: 36px; 
	right: 7px;
}

#my_account
{
	position: absolute;
	right: 116px;
	top: 29px;
	font-size: 12px;
}

#my_account a
{
	color: #fff;
}

#my_account a:hover
{
	
}

#my_account:after
{
	display: inline-block;
	content: "";
	width: 0; 
	height: 0; 
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #fff;
	margin: 0px 0px 1px 2px;
}

#login_menu
{
	position: absolute;
	right: 5px;
	top: 53px;
	color: #aaa;
}

#not_logged_in
{
	position: absolute;
	right: 112px;
	top: 12px;
	color: #0a4953;
	font-size: 12px;
}

#login_button
{
	position: absolute;
	right: 0px;
	top: 15px;
	width: 100px;
	line-height: 26px;
	border: none;
	border: 2px solid #fff;
	text-align: center;
	font-size: 14px;
	border-radius: 3px;
	color: #fff;
	background: transparent;
	padding: 0px;
}

#login_button:hover
{
	background: rgba(255,255,255,0.25);
	cursor: pointer;
	text-shadow: 0px 0px 2px #199cb1;
}

#login_links
{
	position: absolute;
	right: 112px;
	top: 29px;
	font-size: 12px;	
}

#login_links a
{
	color: #fff;
}

#login_links a:hover
{
	color: #184e51;
	text-decoration: none;
}

#logged_out_languages
{
	position: absolute;
	top: 74px;
	right: 0px;
}

#logged_out_languages a img
{
	margin: 0px 0px 0px 2px;
	border: 1px solid #fff;
}

#logged_out_languages a:hover img
{
	border: 1px solid #2b98f3;
}

.login_input
{
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
    padding: 10px 0px;
	width: 100%;
}

.login_input:focus
{
	
}

#login_form_button
{
	background: #3cc6dc;
	color: #fff;
	border: none;
	line-height: 40px;
	font-size: 15px;
	width: 100%;
	outline: none;
	-webkit-appearance: none;
	border-radius: 10px;
}

#login_form_button:hover
{
	background: #2f9bac;
	cursor: pointer;
}

.login_facebook
{
	display: inline-block;
    padding: 0px;
    font-size: 15px;
    color: #fff;
    background: #3b5998 url('/images/facebook_icon.png') no-repeat 10px 10px;
    border: none;
    line-height: 40px;
    border-radius: 10px;
	width: 100%;	
	
}

.login_facebook:hover
{
	background-color: #293d69;
	text-decoration: none;
}

#account_menu
{
	position: absolute;
	right: 0px;
	top: 60px;
	width: 150px;
	z-index: 999;
}

#account_menu ul, li
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

#account_menu li
{
	border-top: 1px solid #262876;
}

#account_menu li a
{
	display: block;
	padding: 0px 7px;
	color: #fff;
	font-size: 12px;
	line-height: 27px;
	background: #191b60;
}

#account_menu li a:hover
{
	text-decoration: none;
	background-color:  #0e1048;
}

#account_menu li a img
{
	margin-bottom: -2px;
	margin-right: 5px;
	border: 1px solid #fff;
}

#quick_menu a, #login_menu a
{
	color: #aaa;
	margin-left: 10px;
}

#quick_menu a:hover, #login_menu a:hover
{
	color: #fff;
	text-decoration: none;
}

#quick_menu a img, #login_menu a img
{
	margin: 0px 3px -1px 0px;
}

#topbanner_wrapper
{
	padding: 5px 0px;
	background-color: #474747;
	border-bottom: 1px solid #7a7a7a;
}

#topbanner
{
	margin: 0px auto;
	width: 980px;
	position: relative;
}

#rightbanner
{
	position: absolute;
	top: 10px;
	left: 1000px;
	z-index: 1;
	width: 160px;
	padding-bottom: 10px; 
	font-size: 10px; 
	line-height: 10px;
}

.likebox
{
	margin-bottom: 10px; 
	background-color: #f6f6f6; 
	padding: 10px; 
	text-align: center; 
	border: 1px solid #eee;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-size: 11px;
}

#logo
{
	position: absolute;
	top: 15px;
	left: 0px;
}

#logo img
{
	height: 30px;
}

#langauges
{
	position: absolute;
	left: 150px;
	top: 29px;
	color: #ddd;
	padding: 7px 5px 7px 8px;
	white-space: nowrap;
	background: #191b60;
	border-left: 1px solid #262876;
}

#langauges a
{
	margin: 0px 3px 0px 0px;
	border: 1px solid rgba(255,255,255,0.5);
	padding: 0px;
	display: inline-block;
}

#langauges a:hover
{
	border: 1px solid #fff;
}

#mainmenu
{
	position: absolute;
	left: 170px;
	top: 0px;
	z-index: 10;
	line-height: 60px;
}

#mainmenu a
{
	float: left;
	position: relative;
	line-height: 50px;
	font-size: 16px;
	font-weight: 300;
	padding: 0px;
	margin: 5px 20px 5px 0px;
	color: #bbb;
}

#mainmenu a:hover
{
	color: #fff;
	text-decoration: none;
}

#mainmenu a.selected
{
	color: #fff;
	margin: 5px 20px 0px 0px;
	border-bottom: 5px solid #f6f6f6;
}

#submenu
{
	position: absolute;
	left: 00px;
	top: 60px;
	z-index: 10;
}

#submenu a
{
	float: left;
	line-height: 40px;
	padding: 0px 15px;
	font-size: 14px;
}

#submenu a.selected
{
	color: #000;	
}

#submenu a span.new
{
	color: red;
	vertical-align: top;
	font-size: 9px;
	margin-right: 2px;
}

.new_member
{
	position: absolute; top: 187px; left: 50px;
}


/* Personal trainer css */

#pt_wrapper
{
	background: #3a3a3a;
	border-bottom: 1px solid #555;
	color: #bbb;
	font-size: 12px;
}

#pt_list
{
	width: 980px;
	margin: 0px auto;
	padding: 5px 0px;
}

#pt_list a 
{
	color: #fff;
}



/* New import top-border */

#autoimport
{
	display: none;
	margin-top: 5px;
	background: #82efcb;
	font-size: 13px;
}

#autoimport a
{
	color: #426542;
}

#autoimport_content
{
	width: 980px;
	margin: 0px auto;
	padding: 7px 0px;
}

#autoimport_content td
{
	vertical-align: middle;
}

#autoimport_content .close
{
	filter: alpha(opacity=50);
	-moz-opacity: 0.50;
	opacity: 0.50;
	text-decoration: none;
}

#autoimport_content .close span
{
	color: #000;
	display: inline-block;
	margin-right: 2px;
	vertical-align: top;
	font-size: 12px;
}

#autoimport_content .close:hover
{
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}