/*PC*/
@media only screen and (min-width: 959px) {
	#pop-up{
		position: absolute;
		top: 0;
		z-index: 10;
		background-image: url('../images/opaque.png');
		width: 100%;
		display: none;
	}

	#thumb{

	}

	#thumb:hover{
		cursor: pointer; 
		cursor: hand;
	}

	#large{
		display:block;
    	margin: 0 auto;
    	padding-top: 10px;
    	padding-bottom: 10px;
	}

	#close{
		position: fixed;
		/*float: right;*/
		right: 0;
		width: 30px;
		margin: 15px;
	}

	#close:hover{
		cursor: pointer; 
		cursor: hand;
	}
}

/*TABLET*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	#pop-up{
		position: absolute;
		top: 0;
		z-index: 10;
		background-image: url('../images/opaque.png');
		width: 100%;
		display: none;
	}

	#thumb{

	}

	#thumb:hover{
		cursor: pointer; 
		cursor: hand;
	}

	#large{
		display:block;
    	margin: 0 auto;
    	padding-top: 10px;
    	padding-bottom: 10px;
	}

	#close{
		position: fixed;
		/*float: right;*/
		right: 0;
		width: 30px;
		margin: 15px;
	}

	#close:hover{
		cursor: pointer; 
		cursor: hand;
	}
}

/*MEDIUM*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
	#pop-up{
		position: absolute;
		top: 0;
		z-index: 10;
		background-image: url('../images/opaque.png');
		width: 100%;
		display: none;
	}

	#thumb{

	}

	#thumb:hover{
		cursor: pointer; 
		cursor: hand;
	}

	#large{
		display:block;
    	margin: 0 auto;
    	padding-top: 10px;
    	padding-bottom: 10px;
	}

	#close{
		position: fixed;
		/*float: right;*/
		right: 0;
		width: 30px;
		margin: 15px;
	}

	#close:hover{
		cursor: pointer; 
		cursor: hand;
	}
}

/*SMALL*/
@media only screen and (max-width: 479px) {
	#pop-up{
		position: absolute;
		top: 0;
		z-index: 10;
		background-image: url('../images/opaque.png');
		width: 100%;
		display: none;
	}

	#thumb{

	}

	#thumb:hover{
		cursor: pointer; 
		cursor: hand;
	}

	#large{
		display:block;
    	margin: 0 auto;
    	padding-top: 10px;
    	padding-bottom: 10px;
	}

	#close{
		position: fixed;
		/*float: right;*/
		right: 0;
		width: 30px;
		margin: 15px;
	}

	#close:hover{
		cursor: pointer; 
		cursor: hand;
	}
}