/**********************************************************
// Body
**********************************************************/
html { height: 100%; }
body {
	height: 100%;
	background: #F5F5F5 url(../images/BG-Body.jpg) top center repeat-x;
	font: 12px "Segoe UI", arial, verdana, sans-serif;
	overflow-x: hidden;
	display: block;
	color: #FFF;
	}
	
body * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-transition: all 0.1s ease-in;
	   -moz-transition: all 0.1s ease-in;
		-ms-transition: all 0.1s ease-in;
		 -o-transition: all 0.1s ease-in;
			transition: all 0.1s ease-in;
	-webkit-user-select: none;
			user-select: none;
	}

a       { color: #B14237; text-decoration: none; cursor: pointer; }
a:hover { color: #C44235; text-decoration: underline; }

.Hidden { display: none; }
.Left   { float: left;   }
.Right  { float: right;  }

.CLR       { *zoom: 1; }
.CLR:after { clear: both; }
.CLR:before,
.CLR:after {
	content: " ";
	display: table;
	}
	
.Green        { background-color: #3CAB49; color: #FFF; }
.Green:hover  { background-color: #3BBA4A; color: #FFF; }
.Green:active { background-color: #32943E; color: #FFF; }

.Blue         { background-color: #3C78AB; color: #FFF; }
.Blue:hover   { background-color: #3B80BA; color: #FFF; }
.Blue:active  { background-color: #326594; color: #FFF; }

/**********************************************************
// Top
**********************************************************/	
#Top {
	width: 100%;
	min-height: 60px;
	background: #006992;
	overflow: hidden;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
		    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1000;
	}

#Top-Logo {
	margin: 10px 10px 0 10px;
	width: 40px;
	height: 40px;
	background: url(../images/Logo-Top.png);
	display: block;
	float: left;
	}
	
#Top-Title {
	padding: 0 10px 0 3px;
	line-height: 56px;
	min-height: 60px;
	font-size: 24px;
	color: #FFF;
	float: left;
	}

#Top-Left {
	min-height: 60px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	float: left;
	}
	
#Top-Right {
	min-height: 60px;
	float: right;
	}

#Top .Button.Active { background-color: #005475; }
#Top .Button:hover  { background-color: #005475; }
#Top .Button:active { background-color: rgba(0, 0, 0, 0.3); }
#Top .Button {
	height: 60px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	float: left;
	}
	
#Top-Button-Resize { width: 100px; background: url(../images/Icons-Top.png) center    0px no-repeat; }
#Top-Button-Info   { width:  60px; background: url(../images/Icons-Top.png) center  -60px no-repeat; }
#Top-Button-Close  { width:  60px; background: url(../images/Icons-Top.png) center -120px no-repeat; }
#Top-Button-Switch {
	padding: 0 30px 0 10px;
	min-width: 200px;
	background: url(../images/Icons-Top.png) right -180px no-repeat;
	}

#Top-Button-Purchase:hover { text-decoration: none; }
#Top-Button-Purchase {
	margin: 15px 10px 0 0;
	width: 120px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 4px;
	float: right;
	}

#Top-Button-Toggle:hover  { opacity: 0.8; }
#Top-Button-Toggle:active { opacity: 1; }
#Top-Button-Toggle {
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.7) url(../images/Icons-Top.png) center -245px no-repeat;
	border-radius: 50px;
	cursor: pointer;
	opacity: 0.4;
	display: none;
	position: absolute;
	z-index: 1000;
	right: 5px;
	top: 5px;
	}
	
#Top-Button-Switch-Badge {
	margin-top: 12px;
	padding: 2px 3px;
	border-radius: 2px;
	font-family: arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 8px;
	float: left;
	}
	
.Badge-CSS       { background: #3C75AB; }
.Badge-Template  { background: #663CAB; }
.Badge-WP-Plugin { background: #3CAB49; }
	
#Top-Button-Switch-Name {
	padding-top: 2px;
	font-size: 18px;
	clear: both;
	}
	
/**********************************************************
// Menu
**********************************************************/
.Menu {
	padding: 10px;
	background: #005475;
	border-radius: 4px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	display: none;
	position: absolute;
	z-index: 900;
	}

.Menu .Button:hover  { background: #EEE; }
.Menu .Button:active { background: #DDD; }
.Menu .Button {
	background: #FFF;
	border-radius: 4px;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	}

.Menu .Button.Green        { background-color: #3CAB49; color: #FFF; }
.Menu .Button.Green:hover  { background-color: #3BBA4A; color: #FFF; }
.Menu .Button.Green:active { background-color: #32943E; color: #FFF; }

.Menu .Button.Blue         { background-color: #3C78AB; color: #FFF; }
.Menu .Button.Blue:hover   { background-color: #3B80BA; color: #FFF; }
.Menu .Button.Blue:active  { background-color: #326594; color: #FFF; }

/**********************************************************
// Menu >> Resize
**********************************************************/
#Menu-Resize {
	width: 280px;
	border-top-right-radius: 4px;
	left: 220px;
	top: 60px;
	}
	
#Menu-Button-Prev,
#Menu-Button-Next {
	width: 30px;
	height: 30px;
	line-height: 30px;
	float: left;
	}

#Menu-Button-Reset {
	margin: 0 10px;
	width: 180px;
	height: 30px;
	line-height: 30px;
	float: left;
	}

#Menu-Button-Landscape,
#Menu-Button-Portrait {
	margin-top: 10px;
	width: 125px;
	height: 30px;
	line-height: 30px;
	}

#Menu-Resize-Options-Inner { padding: 4px 5px 5px 5px; }
#Menu-Resize-Options {
	margin-top: 10px;
	border-radius: 4px;
	background: #FFF;
	overflow: hidden;
	}
	
#Menu-Resize-Options-Tabs {
	width: 100%;
	height: 30px;
	line-height: 30px;
	background: #F0F0F0;
	text-align: center;
	color: #333;
	}

#Menu-Resize-Options-Tabs li:hover  { background: #E0E0E0; }
#Menu-Resize-Options-Tabs li:active { background: #D0D0D0; }
#Menu-Resize-Options-Tabs li {
	width: 50%;
	font-size: 14px;
	cursor: pointer;
	float: left;
	}
	
#Menu-Resize-Options-Tabs li.Active,
#Menu-Resize-Options-Tabs li.Active:hover,
#Menu-Resize-Options-Tabs li.Active:active {
	background: #FFF;
	cursor: default;
	}

#Menu-Resize-Options-Inner li:hover  { background: rgba(0, 0, 0, 0.075); }
#Menu-Resize-Options-Inner li:active { background: rgba(0, 0, 0, 0.1); }
#Menu-Resize-Options-Inner li {
	margin-top: 1px;
	padding: 0 5px;
	width: 100%;
	height: 22px;
	line-height: 22px;
	border-radius: 4px;
	color: #333;
	cursor: pointer;
	}
	
#Menu-Resize-Options-Inner li span {
	width: 60px;
	font-size: 10px;
	letter-spacing: 1px;
	color: #777;
	float: right;
	}

#Menu-Resize-Options-Inner li.Active span,
#Menu-Resize-Options-Inner li.Active,
#Menu-Resize-Options-Inner li.Active:hover,
#Menu-Resize-Options-Inner li.Active:active {
	background: #3C78AB;
	color: #FFF;
	}
	
/**********************************************************
// Menu >> Switch
**********************************************************/
#Menu-Switch {
	width: 400px;
	height: 320px;
	border-top-right-radius: 4px;
	left: 320px;
	top: 60px;
	}
	
#Menu-Switch-Preview {
	padding: 10px 10px 10px 5px;
	width: 605px;
	height: 320px;
	background: #005475;
	border-radius: 4px;
	border-top-left-radius: 0;
	display: none;
	position: absolute;
	z-index: 900;
	left: 715px;
	top: 60px;
	}
	
#Menu-Switch-Types {
	width: 150px;
	height: 300px;	
	background: #F5F5F5;
	border-radius: 4px;
	text-align: center;
	overflow: hidden;
	float: left;
	}
	
#Menu-Switch-List {
	width: 220px;
	height: 300px;	
	background: #F5F5F5;
	border-radius: 4px;
	overflow: auto;
	float: right;
	}

#Menu-Switch-Types li:hover  { background-color: #EEE; }
#Menu-Switch-Types li:active { background-color: #DDD; }
#Menu-Switch-Types li {
	width: 100%;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 12px;
	color: #333;
	}
	
#Menu-Switch-Types li.Active,
#Menu-Switch-Types li.Active:hover,
#Menu-Switch-Types li.Active:active {
	cursor: default;
	background: #3C78AB;
	color: #FFF;
	}
	
#Menu-Switch-List li:hover  { background-color: #EEE; }
#Menu-Switch-List li:active { background-color: #DDD; }
#Menu-Switch-List li {
	width: 100%;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 14px;
	border-bottom: 1px dotted #EEE;
	color: #333;
	}
	
#Menu-Switch-List li:last-child { border-bottom: 0; }
.Switch-Name {
	padding-left: 10px;
	float: left;
	}

.Switch-Badge {
	margin: 12px 10px 0 0;
	padding: 0 3px;
	height: 16px;
	line-height: 16px;
	border-radius: 2px;
	text-align: center;
	font-family: arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 8px;
	color: #FFF;
	float: right;
	}
	
/**********************************************************
// Menu >> Info
**********************************************************/
#Menu-Info {
	width: 170px;
	height: 180px;
	border-top-left-radius: 4px;
	right: 60px;
	top: 60px;
	}
	
#Menu-Info-Panel {
	width: 100%;
	height: 120px;
	background-color: #FFF;
	border-radius: 4px;
	overflow: hidden;
	}

#Menu-Info-Panel li:hover  { background: #EEE; }
#Menu-Info-Panel li:active { background: #DDD; }
#Menu-Info-Panel li {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	color: #333;
	}
	
#Menu-Info-Panel li.Active,
#Menu-Info-Panel li.Active:hover,
#Menu-Info-Panel li.Active:active {
	cursor: default;
	background: #3C78AB;
	color: #FFF;
	}
	
#Menu-Info-Bottom {
	margin-top: 10px;
	text-align: center;
	}

#Menu-Info-Bottom a:last-child { margin-right: 0; }
#Menu-Info-Bottom a:hover { text-decoration: none; }
#Menu-Info-Bottom a {
	width: 150px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	text-align: center;
	border-radius: 4px;
	display: inline-block;
	vertical-align: top;
	}
	
/**********************************************************
// Frame
**********************************************************/
#Frame {
	margin: 0 auto 0 auto;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	z-index: 100;
	}
	
.Framed { box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

/**********************************************************
// Media Queries
**********************************************************/
@media 
all and (max-width: 800px),
all and (max-device-width: 800px)
{
	#Top-Button-Resize,	#Menu-Resize { display: none; }
	#Top-Button-Info, #Menu-Info { display: none; }
}

@media 
all and (max-width: 650px),
all and (max-device-width: 650px)
{
	#Top-Left, #Menu-Switch { display: none; }
}

@media 
all and (max-width: 450px),
all and (max-device-width: 450px)
{
	#Top-Button-Close { display: none; }
}

@media 
all and (max-width: 350px),
all and (max-device-width: 350px)
{
	#Top { padding-bottom: 5px; }

	#Top-Logo {
		margin: 5px auto 0 auto;
		float: none;
		}
		
	#Top-Button-Purchase {
		margin: 15px auto 0 auto;
		display: block;
		float: none;
		}
}