
/* @media only screen and (min-width: 481px) and (max-width: 1024px) */
@media only screen and (min-width: 481px) and (max-width: 1024px){


}

/* @media only screen and (min-width: 481px) and (max-width: 1024px) */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {

}

/* @media screen and (max-width: 660px) or iPad Portrait */
@media screen and (max-width: 660px), (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {



}


/*
/* Falls weitere ScreenMediaLayouts
/*

/* Media = iPad orientation: landscape */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
	
}

/* Media = iPad orientation: portrait */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {

}

/* Media = Mobile - iPhone */
@media handheld, only screen and (max-device-width: 480px) {

}
	

/* Media = Mobile - All Others - orientation:portrait */
@media handheld, only screen and (max-device-width: 480px) and (orientation:portrait) {

}


/* Media = Mobile - All Others - orientation:landscape */
@media handheld, only screen and (max-device-width: 767px) and (orientation:landscape) {

}




/* =Print Style
-------------------------------------------------------------- */

@media print {

}