﻿.SignUpForm{
	width:512px;
	padding-left:16px;
	padding-right:16px;
}

.SignUpForm HR{
	height:1px;
	border:1px #ddd solid;
	margin-top:10px;
	margin-bottom:10px;
}

.SignUpForm TD.ny-header{
	padding-bottom:10px;
}

.SignUpForm TD.ny-left{
	line-height:30px;
	width:150px;
	vertical-align:top;
}

.SignUpForm .ny-input{
    border:1px #ddd solid;
	font-size:11px;
	font-family:Arial, Sans-Serif;
	width:300px;
	height:15px;
}

.SignUpForm .ny-input-experience{
	width:100px;
}

.SignUpForm .ny-dropdownlist-small{
	width:80px;
}

.SignUpForm .ny-dropdownlist-month{
	width:90px;
}

.SignUpForm .ny-dropdownlist-day{
	width:40px;
}

.SignUpForm .ny-textarea{
	width:98%;
    border: 1px #ddd solid;
	min-height:80px;
}

.SignUpForm .ny-disclaimer{
	color:#a0a0a0;
	line-height:20px;
	padding-top:30px;
}

.SignUpForm TD.ny-disclaimer A{
	color:#004589;
}

.SignUpForm .ny-required{
	color:red;
	font-size:14px;
	font-weight:bold;
	cursor:pointer;
}

.SignUpForm .ny-globalerror{
	color:red;
	font-weight:bold;
}


.ny-thanks .Title
{
	color:#00487b;
	font-size:14px;
	font-weight:bold;
	line-height:20px;
	padding-left:16px;
	padding-bottom:8px;
}

.ny-thanks .Description
{
	padding-left:16px;
	color:#888888;
	font-size:11px;
	line-height:15px;
}

/* Code for rounded button */
span.button{
	display:-moz-inline-box;
	display:inline-block;
	cursor:pointer;
	border:none;
    font-size:0;
    line-height:0;
    
	/*
	for Safari, read this first
	http://creativebits.org/webdev/safari_background_repeat_bug_fix
	*/
	background-position:0 0;
	background-repeat:no-repeat;
	height:30px;
	text-decoration:none;
	color:#004589;
	font-style:normal;
	margin:0 6px 0px 0;
	padding:0 10px 0 0;	
	vertical-align:middle;	
    padding-top:-2px;
	_position:relative;
	_width:10px;	
	_overflow-y:hidden;
}

span.button,
span.button button,
span.button input
{
    background-image:url('/_LAYOUTS/Images/ny/form_buttons.png');
    _background-image:url('/_LAYOUTS/Images/ny/form_buttons.gif');
}

span.button button,
span.button input
{
	white-space:nowrap;
	cursor:pointer;
	color:#004589;
	display:-moz-inline-box;
	display:inline-block;
	line-height:1!important;
    letter-spacing:0!important;
    font-family:Arial, Sans-Serif!important;
    font-size:14px!important;
    font-style:normal;    
    background-color:transparent;
	background-position:100% 0;
	background-repeat:no-repeat;
	height:30px;
	padding:8px 20px 0 10px;
	margin:0px -16px 0 10px;
	border:none;
	vertical-align:text-top;
	zoom:1;
	_position:relative;
    _padding-left:0px;
	_padding-right:12px;
	_margin-right:-10px;	
	_display:block;
	_top:0;
	_right:-5px;
	text-align:left;
}

span.button button{
   line-height:2.5;/*Opera needs this*/
}

html.safari span.button button{
  line-height:2.6;
}

html.safari span.button button:focus{
    outline:none;
}

span.button button,
span.button input
{
	padding-top:0px;
	line-height:2.5;/*Opera needs this*/
}


/*Hover Style*/
span.button:hover,
span.button-behavior-hover
{
	background-position:0 -60px;
	color:#222;
	text-decoration:none;
}

span.button:hover button, 
span.button-behavior-hover button, 
span.button-behavior-hover input{
	background-position:100% -60px;
}

/*Optional hack for IE6 to simulate :hover selector*/
span.button button,
span.button input
{
	_behavior:expression(
		(function(el){

			if( typeof( behavior_onMouseEnter) == 'undefined'){

				
				behavior_onMouseEnter = function(el){
					
					var dEl = this.parentNode;					
					var sClass = dEl.className ;
					dEl.__defaultClassName = sClass ;
					dEl.className = sClass + ' button-behavior-hover';	
					this.setCapture();
				};

				behavior_onMouseLeave = function(el) {
					var dEl = this.parentNode;
					dEl.className = dEl.__defaultClassName ;
					dEl.__defaultClassName = undefined;
					this.releaseCapture();
				};


			};
			
			
			el.runtimeStyle.behavior = 'none';
			el.onmouseenter = behavior_onMouseEnter;
			el.onmouseleave = behavior_onMouseLeave;
			
			
		})(this));
}

