#smartphone {

	margin: 20px 0 0 0; 
	background-image:url('../media/smartPhoneBg.png'); 
	background-position: top left; 
	background-repeat: no-repeat

	}
	
#signUp {
	font-size: 13px; 
	color: #686f7c; 
	padding: 0px; 
	margin: 0;
	}
	
#col1 {
	float: left; 
	width: 250px;
	}
	
#col2 {
	float: left; 
	width: 250px; 
	margin: 0 0 0 20px
	}
	
#col1 ul,
#col2 ul {
	margin: 0; 
	padding: 0 0 0 15px
	}
	
#buttons {
	text-align: right;
	margin: 460px 120px 0 0;
	}

#buttons img {
	padding: 0 0 0 0;
	}

/* Tooltip
----------------------------------------------- */	
#toolTip {
	font-size: 18px;
	line-height: 12px;
	color: #fff;
	}


	.toolTip { /* This is the hook that the jQuery script will use */
	/*  padding-right: 20px; This is need to make sure that the help icon is always visible */
	/*  background: transparent url('../media/help.gif') no-repeat center center; */
	color: #fff;
	cursor: help; 
	position: relative; /* This contains the .toolTipWrapper div that is absolutely positioned  */
	
	
}

	.toolTipWrapper { /* The wrapper holds its insides together */
		width: 450px;
		position: absolute; /* Absolute will make the tooltip float above other content in the page */
		top: 20px;
		left: 20px;
		display: none; /* It has to be displayed none so that the jQuery fadein and fadeout functions will work */
		font-weight: bold;
		font-size: 9pt; /* A font size is needed to maintain consistancy */
	}
	
		.toolTipTop { /* Top section of the tooltip */
			width: 450px;
			height: 30px;
			background: transparent url('../media/bubbleTop.gif') no-repeat;
		}

		.toolTipMid { /* Middle section of the tooltip */
			padding: 8px 15px;
			background: #d2dee9 url('../media/bubbleMid.gif') ;
			line-height: 13px;
			font-size: 11px;
			font-weight: normal;
		}
		
		.toolTipBtm { /* Bottom Section of the tooltip */
			height: 13px;
			background: transparent url('../media/bubbleBtm.gif') no-repeat;
		}
		
