* { 
	margin: 2px; 
	padding: 0; 
}
body { 
	font: 14px/1.4 Georgia, Serif;
	align:center;
	 
}
#page-wrap {
	margin: 10px;
}

h1	{
color: #eeeeec;
font-family: arial, sans-serif;
font-size: 32px;
font-weight: bold;
margin-top: 0px;
margin-bottom: 1px;
background: #333; 
}

p {
	margin: 20px 0; 
}

	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table { 
	 	align:left;
	 	/*border-spacing: 10px 0;*/
		border-collapse: collapse; 
	}
	/* Zebra striping 
	tr:nth-of-type(odd) { 
		background: #eee; 
	}*/
	th { 
		background: #fce94f; 
		color: #000000; 
		font-weight: bold; 
	}
	td, th { 
		/*padding: 6px;*/
		font-size: 70%; 
		border: 1px solid #ccc; 
		text-align: left; 
		padding-left: 15px;
		padding-right: 15px;
	}
	
	input[type=button] {
    border-radius: 5px;
    border: 5px;
    width: 150px;
    height:25px;
    font-family: Tahoma;
    
}

.column-left{ 
	clear: left;
	float: left;
	width: 55%;
	padding: 2px 0;
	margin: 0 0 0 1%;
	display: inline;
}
.column-right{ float: right;
	width: 40%;
	padding: 2px 0;
	margin: 0 0 0 2%;
	display: inline; }
	
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   speak for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('loading.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}