/*
	s i d e b a r
*/
	#sidebar {
		background-color: #000000;
		width: 300px;
		height: 100%;
		/*min-height: 100%; max-height: 100%;*/
		overflow-y: scroll;
		overflow-x: hidden;
		position: fixed; top: 0; right: 0;
		z-index: 10;
    	transition: all 0.2s ease-in;
    	font-family: 'MuseoSans-500';
	}
	#sidebar .content_sb {
		margin: 25px;
	}

	/* search */
	#sidebar .search {
		background-color: #141414;
		width: 175px; 
		height: 75px;
		padding: 0px 25px; border: 0;
/*padding: 0px 16px;*/
/*padding-left: 17px;*/
box-sizing: border-box;
-webkit-appearance: none;
/*width: 208px;*/
width: 225px;
		color: #acacac;
		font-size: 18px; font-weight: 100; font-family: 'Helvetica', sans-serif;
		float: left;
	}
	#sidebar .search_btn {
		transition: background-color 0.5s ease;
		background-color: #141414;
		width: 75px;
		height: 75px;
		color: #acacac;
		margin: 0; padding: 0; border: 0;
		float: right;
	}
	#sidebar .search_btn:hover {
		background-color: #202020;
	}

	/* most popular pic */
	#sidebar .popular img {
		width: 250px;
		height: 175px;
	}
	#sidebar .popular p {
		font-size: 14px;
		color: #727272;
	}
	#sidebar h4 {
		font-size: 18px;
		color: #fff;
	}
	#sidebar .popular div {
		margin-bottom: 15px;
	}
	#sidebar .blackwhite {
		-webkit-filter: grayscale(100%) brightness(100%) contrast(100%); 
		   -moz-filter: grayscale(100%) brightness(100%) contrast(100%); 
		     -o-filter: grayscale(100%) brightness(100%) contrast(100%); 
		        filter: grayscale(100%) brightness(100%) contrast(100%); 
		        filter: gray; /* For IE 6 - 9 */
		        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
		transition: -webkit-filter 0.35s ease-in;
		transition:    -moz-filter 0.35s ease-in;
		transition:      -o-filter 0.35s ease-in;
	}
	#sidebar .blackwhite:hover {
		-webkit-filter: none;
		   -moz-filter: none;
		     -o-filter: none;
		        filter: none;
	}

	/* categories */
	#sidebar .categories {
		margin: 40px 0px 115px 0px;
	}
	#sidebar .categories ul {
		margin-top: 10px;
	}
	#sidebar .categories ul li a {
		color: #8f8f8f;
		font-size: 14px;
		line-height: 25px;
	}
	#sidebar .categories ul li a:hover { 
		color: #ff3b30;
	}

/*
	slider
*/

.unslider { position: relative; overflow: auto; }
.unslider li { list-style: none; }
.unslider ul li { float: left; }



