.ui-listview-filter-inset {
    margin-top: 0;
}

.autocomplete_displ .ui-btn{
font-size:14px;
}

.versandart_anz .ui-btn{
font-size:12px;
}
.localnav {
    margin:-2px 0 20px 0;
    overflow:hidden;
}
.localnav li {
    float:left;
}
.localnav .ui-btn-inner { 
    padding: .6em 10px; 
    font-size:80%; 
}


.my_icon_wrapper {
        float: left; 
       margin:5px 12px 0px -5px;
       min-height:85px;
       width:95px;
       }

.bounding-box {
float: left; 
margin:5px 8px 0px -5px;
  background-size: contain;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90px;
  min-width: 78px;
}
.img_resize img {
max-width:500px !important;
min-width:0px !important;
    width  : 100% !important;
    height : auto !important;
}

.img_resize iframe {
max-width:512px !important;
min-width:0px !important;
max-height:288px !important;
min-height:288px !important;
    width  : 100% !important;
    height : 288px !important;
}

.table_style {
font-size:12px;

}

        #scrolly{
            width: 100%;
            height: auto;
            overflow: auto;
            overflow-y: hidden;
            margin: 0 auto;
            /*white-space: nowrap;*/
        }

       #scrolly img{
            width: 80px;
            height: auto;
            margin: 10px  0px 0px 0px;
            display: inline;
            scrolling: false;
        }

/********************************************************************************************/
/*  Name : jQuery Mobile Survival Kit                                                       */
/*  Description : The only framework thats needs such css, due to bugs all over the UI      */
/*  hardly any improvement even @ 1.2 still no proper scrollview implementation and always  */
/*  encounter hardware acceleration issues with rendering.                                  */
/********************************************************************************************/

* {
	/***************** Shadows are slow on android *********************************/
	/***************** Global Shadow Wipe Jutsu!! **********************************/
	text-shadow: none;
 	box-shadow: none;
 	-webkit-box-shadow: none;
}

/******* Global Transition Ease Controller - Grease Jutsu, change the duration *******/
.in, .out {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-duration: 350ms !important;
}

.steroid {
	/* 
	Steroid Jutsu ....Adds hardware acceleration to stimulate faster rendering.
	Warning: Too much hardware acceleration slows down the whole site and may cause the browser
	to crash, Just target a container div that wraps everything.
	*/
	-webkit-transform: translate3d(0,0,0);
  	-moz-transform: translate3d(0,0,0);
  	-ms-transform: translate3d(0,0,0);
}

.inflateSide {
	/* Used in removing the 15px margin located at the left and right of listview items */
	margin-left:-15px !important;
	margin-top:-15px !important;
}

.inflateAllSide {
	/* Used in removing the 15px margin located at listview items/ body of div data-role="content" */
	margin:-15px !important;
}

.topMargin15px {
	/* When you inflateAllSide, might want to add this to your listView UL to push the div below the content back */
	margin-top:15px !important;	
}

.resetHeader {
	/* To be used with their h1 - h6, removes margin on top and on bottom */
	margin-top:0px !important;
	margin-bottom:0px !important;
}

.shadowText {
	/*** Customly add back your own ***/
	text-shadow: 0px -1px 2px rgba(150, 150, 150, 1) !important;
}

.dropShadow {
	/*** Customly add back your own ***/
	-webkit-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.35) !important;
	-moz-box-shadow:    7px 7px 5px rgba(50, 50, 50, 0.35) !important;
	box-shadow:         7px 7px 5px rgba(50, 50, 50, 0.35) !important;
}

.centerDiv {
	margin-left:auto;
	margin-right:auto;
}

.smoothScroller {
	/*** Careful when using this, it makes long content scrollable with touch,
	Weird rendering may happened, in some cases wrap with steroid class div ***/
	-webkit-overflow-scrolling: touch;
}

.stopFlicker {
	/*** Sometimes, the body or page background may flicker, if so, use StopFlicker Jutsu ***/
	-webkit-backface-visibility: hidden;
}

.stripBorders {
	/* Just plain and simple border stripping */
	border:none !important;
}

.squareCorners {
	-webkit-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}

a {
	/* IPad Only fix for copy URL pops, try press and hold anything with a href in IOS */
	/* you will know what i mean :) */
	-webkit-touch-callout: none !important;
}

* { 
	/* Prevents users from selecting text inside div, label and url */
	-webkit-user-select:text;
}

.removeHL { 
	/* Android input form <input> orange highlighter remover */
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
}

.removeHLICSFix {
	/* Warning this may cause unpredictable behavior such as losing number input format such as telephone number */
	/* This is a ICS 4.0.4 only fix. In most cases removeHL is good enough :). Im just putting this in just in case */
	-webkit-user-modify: read-write-plaintext-only;
}