div#fixedbox
{
	overflow: auto;
	width: 100%;
	position: absolute;
	bottom: -3px;
	left: 0;
	color: #000;
	z-index:2000;
	height: 58px;
}
div#allinclusive { padding: 0; }

@media screen
{
 div#fixedbox { position: fixed; }
}



/*iPAD */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
{
  div#fixedbox
     {
     overflow: auto;
     width: 100%;
     position: relative;
     bottom: -3px;
     left: 0;
     color: #000;
     z-index:2000;
	 height: 58px;
    }
}

/*iPhone */
@media
only screen
and (min-device-width : 320px) 
and (max-device-width : 480px)
 {
 div#fixedbox
     {
     overflow: auto;
     width: 100%;
     position: relative;
     bottom: 0px;
     left: 0;
     color: #000;
     z-index:2000;
	 height: 58px;
    }
}




/*iPhone4 */
/*@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {

}*/


