/* a style like this should never apply in IE. If it does, tests will fail */
@media screen and (view-mode: minimized) {
	
}

/*styles for 320px and up or styles for 460px and under-  */
@media (min-width: 320px) and (max-width:460px) {
	/* -------   content  ---------------*/
	.title_cterbox_t1{
		font-size: 1.6em;
		text-align: center;
	}
	.mian_contentbox_tbox{
		width: 100%;
		padding-right: 0px;
	}
	.mian_contentbox_t1{
		width: 100%;
		font-size: 1.8em;
		padding: 10px 0px 10px 0px;
	}
	.mian_contentbox_img{
		width: 100%;
	    padding-top: 10px;
	}
	.pagebox_PD{ 
		width: 100%;
		padding: 10px 0px 10px 0px;
	}
	.title_cterbox {
	    width: 100%;
	    min-height: 1px;
	    padding-top: 50px;
	     padding-bottom: 0px; 
	}
	.title_cterbox {
	    padding-top: 40px !important;
	    margin-bottom: 20px;
	}
	/* -------  END content  ---------------*/

}

/*styles for 480px and up -  */
@media (min-width: 480px) {

}

/*styles for 620px and up */
@media only screen and (min-width: 620px) {

}


/*styles for 760px and up */
@media only print, only screen and (min-width: 760px) {

}


/*styles for print that shouldn't apply */
@media only print and (min-width: 800px) {

}


















