/* iOS-like styles */

body 
{ 
font-family: Helvetica, Arial, Sans-Serif; 
}

/* --- links ---*/
A:link  {
	text-decoration : none;
}

A:active  {
	text-decoration : none;
}

A:visited  {
	text-decoration : none;
}

A:hover  {
	text-decoration : none;
}


.header {
	color: White;
	padding: 0 0.5em;
	font-size: 1.4em;
/*
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#696f77), color-stop(100%,#28343b));
	background: -webkit-linear-gradient(top, #696f77 0%,#28343b 100%);
	background: -ms-linear-gradient(top, #696f77 0%,#28343b 100%);
*/
}


.footer {
	background: White;
	padding: 0 0.5em; /*
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#696f77), color-stop(100%,#28343b));
	background: -webkit-linear-gradient(top, #696f77 0%,#28343b 100%);
	background: -ms-linear-gradient(top, #696f77 0%,#28343b 100%);
*/
}

.body, .pane {
	background: White;
	color: Silver;
}

.right.col { 
border-left: 0px solid black; 
}

.right.col .body { 
padding: 0 1em; 
}

.listview { 
padding: 0; 
margin: 0; 
font-weight: bold; 
color: #444; 
}

.listview li { 
list-style-type: none; 
background: white;
padding: 1em; 
border-top: 1px solid #aaa; 
border-bottom: 1px solid #fff;
cursor: pointer; 
}

.listview li.selected {
	background-color: #483D8B;
	color: White;
}
            
.listview.inset { 
margin: 1em 0; 
}

.listview.inset li { 
background: white; 
border: 2px solid #aaa; 
border-bottom-width: 0; 
}

.listview.inset li:first-child { 
border-radius: 1em 1em 0em 0em 
}

.listview.inset li:last-child { 
border-radius: 0em 0em 1em 1em; 
border-bottom-width: 2px; 
}
            
.tiles { 
overflow-y: hidden; 
}

.tiles > ul { 
width: 200px; 
/*
was
width: 1175px;
but didn't scroll to end on ipad 
*/
}

.tiles ul { 
margin: 0; 
padding: 0; 
white-space: nowrap; 
}

.tiles li { 
list-style-type: none; 
display: inline-block;

padding: 1em; 
/*
height: 150px; 
width:150px;
background-color: white; 
color: gray; 
margin: 5px; 
font-weight: bold;
*/
zoom:1; 
*display: inline; 
}

button { 
display: block; 
border: 2px solid #aaa; 
line-height: normal; 
background-color: White; 
border-radius: 8px; 
margin: 8px 0; 
cursor: pointer; 
padding: 5px 20px; 
font-weight: bold; 
color: #333; 
}