
/* -------------------------------- */

* {
	padding: 0;
	margin: 0;
	background-color: transparent;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-user-select: none;
	-webkit-text-size-adjust: none;
}

/* -------------------------------- */

body {
	position: relative;
	height: auto;
	min-height: 460px;
	width: 320px;
	overflow-x: hidden;
	background: #FFF url(./images/background-squares.png) repeat top left;

	-webkit-perspective: 800;
	-webkit-transform-style: preserve-3d;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

} body.landscape {
	height: auto;
	min-height: 300px;
	width: 480px;
}

/* -------------------------------- */

body > div.page {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	font-family: Helvetica,Verdana;
	color: #000;

	background: #FFF url(./images/background-squares.png) repeat top left;

	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0) rotate(0) scale(1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	
} body.profile > div.page.current {
	display: block;
	min-height: 460px;

} body.landscape > div.page.current {
	display: block;
	min-height: 300px;
}

/* -------------------------------- */

body > div.page > div.header {
	width: 100%;
	height: 44px;
	/*border-top: 1px solid rgba(150,155,160,1.0);  rgba(0,51,102,1.0)  */
	border-bottom: 1px solid rgba(150,155,160,1.0);
	background: transparent url('./images/toolbarBackground.png') repeat-x left center;
}

body > div.page > div.body {
	width: 100%;
	min-height: 395px;
	padding: 0 0 20px 0;

	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(231,235,240,0.4)), to(rgba(0,51,102,0.8)));

} body.landscape > div.page > div.body {
	min-height: 235px;
}

body > div.page > div.footer {
	position: absolute;
	left: 0;
	bottom:0;
	width: 100%;
	height: 20px;
	background-color: black;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* -------------------------------- */

body > div.page > div.header > a.buttonHome {
	position: absolute;
	top: 8px;
	left: 6px;
	width: 43px;
	height: 30px;
	background: transparent url('./images/buttonHome.png') no-repeat left top;
}

body > div.page > div.header > a.buttonBack {
	position: absolute;
	top: 8px;
	left: 42px;
	width: 50px;
	height: 30px;
	padding: 1px 3px 0 3px;
	overflow: hidden;
	color: #FFF;
	line-height: 30px;
	font-family: Helvetica,Verdana,Arial,sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	background: transparent url('./images/buttonBack.png') no-repeat left top;
	text-overflow: ellipsis;
}

body > div.page > div.header > a.buttonAbout {
	position: absolute;
	top: 8px;
	left: 6px;
	width: 46px;
	height: 30px;
	padding-top: 1px;
	overflow: hidden;
	color: #FFF;
	line-height: 30px;
	font-family: Helvetica,Verdana,Arial,sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	background: transparent url('./images/buttonAbout.png') no-repeat left top;
	text-overflow: ellipsis;
}

body > div.page > div.header > h1.pageTitle {
	line-height: 44px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	background-color: transparent;
	cursor: default;

	text-shadow: #000 0.15em 0.15em 0.35em;
	text-overflow: ellipsis;
}

body > div.page > div.header > a.iconhelp {
	position: absolute;
	top: 11px;
	height: 20px;
	width: 20px;
	right: 8px;
	background: transparent url(images/buttonHelp_background.png) no-repeat top center;

	border: rgba(2,36,84,0.4) solid 1px;
	-webkit-border-radius: 10px;
	-webkit-box-shadow: rgba(0,0,0,0.4) 0.15em 0.15em 0.35em;
}

/* -------------------------------- */

body > div.page > div.body > ul {
	left: 0;
	width: 100%;
}

body > div.page > div.body > ul > li {
	border-bottom: 1px solid #999;
	background: url(./images/chevron.png) no-repeat right center;
	font-size: 20px;
	font-weight: bold;
	list-style: none;
	height: 40px;
	width: 100%;
}

body > div.page > div.body > ul > li > a {
	display: block;
	padding: 8px 32px 8px 8px;
	text-decoration: none;
	color: #FFF;
	text-shadow: #000 0.15em 0.15em 0.35em;
}

body > div.page > div.body > ul > li > a.active {
	background-color: rgb( 0, 0, 255);
	filter: alpha(opacity=40);
	opacity: 0.4;
}

body > div.page > div.body > ul > li > a.liLoadMore {
	font-size: 14px;
	line-height: 24px;
	padding-left: 38px;
}

body > div.page > div.body > ul > li > a.liLoadMore.active {
	background-color: rgb( 255, 255, 255);
	filter: alpha(opacity=80);
	opacity: 0.8;
}

body > div.page > div.body > ul > li.loading {
	background: transparent url(./images/loading-big.gif) no-repeat center left;
}

/* -------------------------------- */

body > div.page > div.footer > p {
	font-size: 9px;
	text-decoration: none;
	padding-top: 3px;
	line-height: 16px;
	color: #E7EBF0;
	cursor: default;
	text-align: center;
}

body > div.page > div.footer > p:after {
	content: "2009-2010 Gypsy Trader Software. All rights reserved.";
}

/* -------------------------------- */

.whiteButton {
	display: block;
	border-width: 0 12px;
	padding: 10px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	color: black;

	position: relative;
	width: 250px;
	
	-webkit-border-image: url(./images/whiteButton.png) 0 12 0 12;
	text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
}

/* -------------------------------- */


body > div.page > div.body > div.text_page {
	margin: 0 10px 0 10px; 
	padding: 10px 10px 5px 10px;
	background-color: rgb(255,255,255);
	filter: alpha(opacity=70);
	opacity: 0.7;
	width: auto;
	max-width: 285px;
	cursor: default;

	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;

} body.landscape > div.page > div.body > div.text_page {
	max-width: 445px;
}

body > div.page > div.body > div.text_page > h3 {
	overflow: hidden;
	line-height: 18px;
	white-space: nowrap;
	font-size: 15px;
	margin-top: 5px;
	margin-bottom: 15px;
}

body > div.page > div.body > div.text_page > p { 
	text-align: left;
	font-size: 14px;
	font-family: Helvetica,Verdana,Arial,sans-serif;
	padding-bottom: 10px;
	line-height: 20px;
}


body > div.page > div.body > div.text_page > a.divLoadMore {
	display: block;
	width: 100%;
	height: 32px;
	color: #40658A;
	text-align: right;
	font-weight: bold; 
	font-size: 12px;
	line-height: 12px;
	text-decoration: none;
	padding: 0;
}

body > div.page > div.body > div.text_page > a.divLoadMore.loading {
	cursor: default;  /* wait; */
	text-align: left;
	width: auto;
	height: 32px; 
	padding: 0px 0px 0px 40px;
	line-height: 14px;
	font-weight: bold; 
	font-size: 12px; 
	text-decoration: none;
	color: #40658A;
	background: transparent url(./images/loading-big.gif) no-repeat left top;
}

/* -------------------------------- */


