/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 * 
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */
html,
body {
	margin:0;
	padding:0;
	height:100%;
}
#wrapper {
	min-height:100%;
	position:relative;
}
#header {

    height: 27px;
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    background-color: #f8f8f8;
    z-index: 22;
    font-size: 13px;
    /*padding-right: 110px;*/
    padding-top: 3px;
	/*height:20px;*/
}
#content {
	padding-bottom:160px; /* Height of the footer element */
}
#footer {
	background:#F0F0F0;
	width:100%;
	height:160px;
	position:absolute;
	bottom:0;
	left:0;
}


.verticalLine {
  border-left: thin solid #A8ABAF;
   height: 100%;
   
}