* {
	padding:0;
	margin:0;
	}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
}

#continue {
	margin-top: 50px;
	}

#continue a{
	color: white;
	font-weight: bold;
	text-decoration: none;
	}
	
#continue a:hover{
	color: white;
	font-weight: bold;
	text-decoration: underline;
	}

	
.song1, .song0 {
	float:left;
	font-size:8pt;
	height:60px;
	width:320px;
	}

#songlist {
	top: 50px;
	width: 640px;
	margin-left:auto;
	margin-right: auto;
	border-bottom: 1px dotted white;
	padding: 0 15px;
	}
	
#songlist a {
	text-decoration: none;
	color: #CCCCCC;
	clear: both;
	}	

#songlist a:hover {
	text-decoration: underline;
	}

#list_title{
	height:135px;
	margin-left:auto;
	margin-right:auto;
	margin-top:30px;
	padding:0pt 15px;
	width:660px;
	}
	
#construction_title{
	height:65px;
	margin-left:auto;
	margin-right:auto;
	margin-top:30px;
	padding:0pt 15px;
	width:660px;
	text-align:center;
	}
	
#msg_box {
	font-size: 9pt;
	}
	
	
/* JQM Styles */

/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay { background-color: #000; }

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

