@charset "utf-8";
/* CSS Document */

	/* == LETS MODIFY SOME COLORS AND STYLE FOR THE DEMO == */

		/* push the text field to the right */
		#search{
  			float: right;
  		}
	
		/* Change the style of the text */
		.media-box-text{
			color: #6B6B6B;
			line-height: 21px;
		}

		/* Change the style of the title and tags */
		.media-box-categories{
			text-align: center;
			margin: 0px 0px 13px 0px;
		}
		.media-box-categories span{
			font-size: 9px;
			text-transform: uppercase;
			letter-spacing: 2px;
			border-bottom: 1px solid;
			padding-bottom: 2px;
			border-color: #e54e53;
			color: #e54e53;
		}
		.media-box-title{
			text-align: center;
			font-size: 20px;
			font-weight: 100;
			margin-bottom: 20px;
		}

		/* Remove the white background of the content area */
		.media-box-content{
			background: transparent;
		}

		/* Remove box shadow from the media boxes */
		.media-box-container{
			  -webkit-border-radius: 0px;
			  	 -moz-border-radius: 0px;
			  		  border-radius: 0px;

			  -webkit-box-shadow: none;
			  	 -moz-box-shadow: none;
			  	   -o-box-shadow: none;
			      -ms-box-shadow: none;
			  		  box-shadow: none;
		}

		/* Change the style of the date */
		.media-box-date{
			  font-size: 11px;
			  font-style: italic;
			  color: #999;
		}
		
		/* Style of the thumbnail-overlay */
		.thumbnail-overlay{
			background: transparent;
		}

		/* change bootstrap style of the buttons */
		.btn{
			background-color: #000;
			color: #fff!important;
			font-family: "Questrial", sans-serif;
			margin: 5px;
			border: none !important;
			
			-webkit-border-radius: 2px;
				 -o-border-radius: 2px;
			   -moz-border-radius: 2px;
				    border-radius: 2px;
		}
		.btn:hover, .btn:active, .btn:focus{
			background-color: #7d7d7d;
		}

		/* change style of filter menu */
		.media-boxes-filter>li {
			margin: 0;
		}
		.media-boxes-filter>li:last-child a{
			border-right: 1px solid #EBEBEB;
			border-radius: 0 4px 4px 0;
		}
		.media-boxes-filter>li:first-child a{
			border-radius: 4px 0 0 4px;
		}
		.media-boxes-filter>li a {
			border-bottom: 1px solid #EBEBEB;
			  border-left: 1px solid #EBEBEB;
			   border-top: 1px solid #EBEBEB;

			-webkit-box-shadow: none;
			   -moz-box-shadow: none;
		  	     -o-box-shadow: none;
		        -ms-box-shadow: none;
		  		    box-shadow: none;
		}
		.media-boxes-filter>li a.selected {
		    -webkit-box-shadow: none !important;
		       -moz-box-shadow: none !important;
		        -ms-box-shadow: none !important;
		            box-shadow: none !important;
		}
		.media-boxes-filter>li a:hover{
		    background: #fff;
		    color: #e54e53;
		}

