/**********************************************************
// demo
**********************************************************/
#demo {
	width: 220px;
	position: fixed;
	top: 100px;
	left: -180px;
	}
	
#demo-left {
	padding: 10px;
	width: 180px;
	min-height: 100px;
	background-color: #fff;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	float: left;
	}
	
#demo-left .title {
	width: 100%;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background-color: #445057;
	font-size: 12px;
	color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-transform: uppercase;
	}

#demo-left li {
	margin: 10px 3px 0 3px;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	display: inline-block;
	cursor: pointer;
	opacity: 0.5;
	}

#demo-left li:hover,	
#demo-left li.active {	
	opacity: 1;
	}

#demo-left ul#demo-themes li.active,
#demo-left ul#demo-bg li.active {
	position: relative;
	}

#demo-left ul#demo-themes li.active:after,
#demo-left ul#demo-bg li.active:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 28px;
    text-align: center;
    color: #fff;
	}

#demo-themes,
#demo-bg {
	padding-bottom: 10px;
	}
	
#demo-theme-blue   { background-color: #3e93d4; }
#demo-theme-gray   { background-color: #999999; }
#demo-theme-green  { background-color: #5e9941; }
#demo-theme-orange { background-color: #d4623e; }
#demo-theme-purple { background-color: #7a3e99; }
#demo-theme-red    { background-color: #994141; }
#demo-theme-tan    { background-color: #d3cbba; }
#demo-theme-teal   { background-color: #3ebdd4; }

#demo-bg-blue   { background-color: #3e93d4; }
#demo-bg-gray   { background-color: #999999; }
#demo-bg-green  { background-color: #5e9941; }
#demo-bg-orange { background-color: #d4623e; }
#demo-bg-purple { background-color: #7a3e99; }
#demo-bg-red    { background-color: #994141; }
#demo-bg-tan    { background-color: #d3cbba; }
#demo-bg-teal   { background-color: #3ebdd4; }

#demo-right {
	width: 40px;
	height: 40px;
	background-color: #fff;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	float: right;
	}

#demo-icon:hover  { opacity: 1; }
#demo-icon:active { margin-top: 1px; }
#demo-icon {
	width: 40px;
	height: 40px;
	background: url(../images/icon-gear.png) no-repeat;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
	opacity: 0.6;
	}

#demo .button:hover  { background-color: #ccc; }
#demo .button:active { background-color: #bbb; }
#demo .button {
	margin: 10px 5px 0 5px;
	width: 120px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	background-color: #ddd;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #555;
	}
	
#demo .button.active,
#demo .button.active:hover,
#demo .button.active:active {
	background-color: #193f64;
	font-weight: bold;
	color: #fff;
	}