/*

        ___           ___           ___           ___           ___           ___           ___     
       /\__\         /\  \         /\  \         /\__\         /\  \         /\  \         /\  \    
      /:/  /        /::\  \       |::\  \       /:/ _/_       /::\  \       /::\  \        \:\  \   
     /:/  /        /:/\:\  \      |:|:\  \     /:/ /\__\     /:/\:\__\     /:/\:\  \        \:\  \  
    /:/  /  ___   /:/ /::\  \   __|:|\:\  \   /:/ /:/ _/_   /:/ /:/  /    /:/  \:\  \   _____\:\  \ 
   /:/__/  /\__\ /:/_/:/\:\__\ /::::|_\:\__\ /:/_/:/ /\__\ /:/_/:/__/___ /:/__/ \:\__\ /::::::::\__\
   \:\  \ /:/  / \:\/:/  \/__/ \:\~~\  \/__/ \:\/:/ /:/  / \:\/:::::/  / \:\  \ /:/  / \:\~~\~~\/__/
    \:\  /:/  /   \::/__/       \:\  \        \::/_/:/  /   \::/~~/~~~~   \:\  /:/  /   \:\  \      
     \:\/:/  /     \:\  \        \:\  \        \:\/:/  /     \:\~~\        \:\/:/  /     \:\  \     
      \::/  /       \:\__\        \:\__\        \::/  /       \:\__\        \::/  /       \:\__\    
       \/__/         \/__/         \/__/         \/__/         \/__/         \/__/         \/__/    
 __     __   __     ______   ______     ______     ______     ______     ______   __     __   __   ______    
/\ \   /\ "-.\ \   /\__  _\ /\  ___\   /\  == \   /\  __ \   /\  ___\   /\__  _\ /\ \   /\ \ / /  /\  ___\   
\ \ \  \ \ \-.  \  \/_/\ \/ \ \  __\   \ \  __<   \ \  __ \  \ \ \____  \/_/\ \/ \ \ \  \ \ \'/   \ \  __\   
 \ \_\  \ \_\\"\_\    \ \_\  \ \_____\  \ \_\ \_\  \ \_\ \_\  \ \_____\    \ \_\  \ \_\  \ \__|    \ \_____\ 
  \/_/   \/_/ \/_/     \/_/   \/_____/   \/_/ /_/   \/_/\/_/   \/_____/     \/_/   \/_/   \/_/      \/_____/ 
                                                                                                             

author: john hanusek
created: twenty first day of november, two-thousand & nine.
*/


/* main styles ---------------------------------------------------------------- */

html, body {
	height: 100%;         /* required */
}
body {
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
}
div#distance { 
	margin-bottom: -140px; /* half of content height */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */

}
div#content {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	height: 280px;         /* required - desired height */
	width: 400px;          /* required - desired width */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}


