/*----------------------------------------------------
 * Copyright 2014 Pixelized Studio
 * http://www.pixelized.cz
 * Color Switcher
 * color-switcher.css
 *
 * Version 1.0
 * Released: 3.3.2014
 * http://creativecommons.org/licenses/by/2.0/
----------------------------------------------------*/

/*------------------------------
	COLOR SWITCHER
------------------------------*/

#color-switcher {
	background-color: #333333;
	border-bottom-left-radius:4px;
    padding:10px;
    position:fixed;
    right: -60px;
    top: 120px;
    width: 60px;
    z-index: 1000;
}

#toggle-switcher {
	background-color: #555555;
	color:#EEEEEE;
	border-radius:4px 0 0 4px;
	font-size:23px;
	text-align: center;
    position: absolute;
    left: -35px;
    top: 0px;
    width: 35px;
	height: 35px;
}

#color-switcher ul {
	margin-bottom:0;
}

#color-switcher ul li {
	background-color: #000000;
	width:30px;
	height:30px;
	margin-bottom:7px;
}

#color-switcher ul li:last-child {
	margin-bottom:0;
}

#color-switcher ul li#green {background-color: #54B132;}
#color-switcher ul li#red {background-color: #CB2027;}
#color-switcher ul li#blue {background-color: #3276B1;}
#color-switcher ul li#orange {background-color: #F8B533;}