/*
The class www_signup_button is set for "Sign Up!" navlink in the WwwNav
NavLinkList (Navigation_Www.vb).

NOTE: we are using .class instead of #id here because the NavLink api
exposes a CssClass and does not allow us to set IDs. Otherwise we would
use #id since this css is only meant to ever target one element. Why not
simply extend NavLink to allow us to set id? Because that might limit our
ability to consistenly manipulate the navigation objects in server (or client
code)

TODO: change to bg URL to simple local file refernce once Master2 folder
	has been merged with Master folder
*/
#master_prinav a.www_signup_button:link,
#master_prinav a.www_signup_button:visited
{
	/*v2:*/
	/*background: url('../Master/Www_SignupButton.gif') top right no-repeat;*/
	/*height: 38px;*/
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*width: 120px;*/

	/*v3:*/
	background: url('../Master/Www_SignupButton.png') top right no-repeat;
	border: 0px;
	height: 32px;
	left: 10px;
	position: relative;
	top: 2px;
	width: 118px;
}

/* :focus added for non-IE compat in 'v3' */
#master_prinav a.www_signup_button:active,
#master_prinav a.www_signup_button:hover,
#master_prinav a.www_signup_button:focus
{
	/*v2:*/
	/*background: url('../Master/Www_SignupButton_Hover.gif') top right no-repeat;*/
	/*height: 38px;*/
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*width: 120px;*/

	/*v3:*/
	background: url('../Master/Www_SignupButton_Hover.png') top right no-repeat;
	height: 32px;
	width: 118px;
}


/* Styles for ~/Www/Controls/PanelLogin.ascx */
.www_panellogin_label
{
	/*v2:*/
	/*color: White;*/
	/*font-size: 10px;*/
	/*font-weight: Bold;*/

	/*v3:*/
	color: #525252;
	font-size: 11px;
	font-weight: normal;
	text-align: right;
}

.www_panellogin_field
{
	/*v2:*/
	/*background: url(../Www/Controls/PanelLogin_Field.gif) no-repeat right top;*/
	border: none;
	/*height: 17px;*/
	margin-left: 2px;
	/*padding-left: 3px;*/
	padding-top: 1px;
	text-align: left;
	/*width: 99px;*/

	/*v3:*/
	background: url(../Www/Controls/PanelLogin_Field.png) no-repeat left top;
	height: 19px;
	margin-bottom: 2px;
	margin-top: 4px;
	padding-left: 6px;
	width: 122px;
}

.www_panellogin_button
{
	/*v2:*/
	/*background: url(../Www/Controls/PanelLogin_Button.gif) no-repeat right;*/
	border: none;
	/*color: White;*/
	cursor:pointer;
	font-size: 11px;
	font-weight: bold;
	margin-bottom: 2px;
	padding-top: 2px;
	width: 65px;

	/*v3:*/
	background: url(../Www/Controls/PanelLogin_Button.gif) no-repeat right;
	color: #525252;
}

.www_panellogin_button:hover
{
	/*v2:*/
	background: url(../Www/Controls/PanelLogin_Button.gif) no-repeat right;
	border: none;
	/*color: #ddd;*/
	cursor:pointer;
	font-size: 11px;
	font-weight: bold;
	margin-bottom: 2px;
	padding-top: 2px;
	width: 65px;

	/*v3:*/
	color: #525252;
	text-decoration: underline;
}

/* Styles for ~/Www/Controls/TVs.ascx */
.www_tvs_heading
{
	/*v2:*/
	/*padding: 25px 0px 0px 0px;*/
	text-align: center;

	/*v3:*/
	padding: 20px 0px 0px 0px;
}

