/*
"@screen-xs": "480px",
"@screen-xs-min": "@screen-xs",
"@screen-phone": "@screen-xs-min",
"@screen-sm": "768px",
"@screen-sm-min": "@screen-sm",
"@screen-tablet": "@screen-sm-min",
"@screen-md": "992px",
"@screen-md-min": "@screen-md",
"@screen-desktop": "@screen-md-min",
"@screen-lg": "1200px",
"@screen-lg-min": "@screen-lg",
"@screen-lg-desktop": "@screen-lg-min",
"@screen-xs-max": "(@screen-sm-min - 1)",
"@screen-sm-max": "(@screen-md-min - 1)",
"@screen-md-max": "(@screen-lg-min - 1)",
*/
/*****/
@media (max-width: 1200px) { /*Large Desktop*/
	.btn.btn-default{
		width:100%;
		display:inline-block;
	}
	.col-sm-6{
		width:100%;
	}
}
@media (max-width: 992px) { /*Desktop*/
	.content > .container > .box > .left{
		width:100%;
		float:left;
		padding-right:0px;
	}
	.content > .container > .box > .right{
		width:100%;
		float:left;
	}
	.thumbnail img{
		width:100%;
		max-width:230px;
		height:auto !important;
	}
}
@media (max-width: 768px) { /*Tablet*/
	.content > .container > .box > .right{
		margin-bottom:20px;
		
		/*-webkit-box-shadow: #888 0px 0px 12px;
		-moz-box-shadow: #888 0px 0px 12px;
		box-shadow: #888 0px 0px 12px;*/
	}
	.content > .container > .box > .right img{
		max-width:100%;
	}
}
@media (max-width: 480px) { /*Large Phone*/

}
@media (max-width: 360px) { /*Medium Phone*/
	
}
@media (max-width: 320px) { /*Small Phone*/
	
}