/*
* Author:      Will (war59312@gmail.com)
* Description: Hides everything but the image you want to see on the image page.
*/

/* +++ changelog +++
March 26th, 2011
- Hides More Ads
- Hides The "Dear Adblock User: Upgrade to ImageBam Premium to Remove the Ads!" Ad
November 21st, 2010
- Original Release
*/

@-moz-document url-prefix("http://www.imagebam.com/image/"), url-prefix("http://imagebam.com/image/") {

/* Hides Everything That Is Not The Image */
.cursor, #banner_top, #SErdhuU, .buttonblue, #scaleinfo, #navigation_bottom, .gallery, .sharing, #footer, DIV[style="text-align: center; color: darkgreen; margin: 6px;"], DIV[onclick="void(0); top.location='http://www.imagebam.com/premium';"], DIV[style="line-height: 16px; text-align: center; margin: 14px;"] { 
    
    display: none !important;

}

/* Hides NoScript Place Holder Icons */
[class="__noscriptPlaceholder__ "] { display: none !important; }

/* Hides All Links Since We Only Care About The Image, Mostly Like An Ad Anyways */
a { display: none !important; }

/* Hides The iFrame Based Ad Below The Image For Firefox */
iframe, div[style*="width: 630px; margin: 10px auto;"] { display: none !important; }

/* Hides The iFrame Based Ad Below The Image For Google Chrome */
div[style*="width:630px; margin:auto; margin-top:10px; margin-bottom:10px;"] { display: none !important; }

/* Hides The "Dear Adblock User: Upgrade to ImageBam Premium to Remove the Ads!" */
div[style*="border: 1px solid rgb(249, 155, 5); background-color: rgb(255, 238, 202); line-height: 24px; text-align: center; font-size: 16px; margin: 5px auto; padding-top: 14px; padding-bottom: 14px;"] { display: none !important; }

/* Hides The "Dear Adblock User: Upgrade to ImageBam Premium to Remove the Ads!" For Google Chrome Users */
div[style*="border:1px solid #F99B05;background-color:#FFEECA;line-height:24px;text-align:center;font-size:16px;margin:auto;margin-top:5px;margin-bottom:5px; padding-top:14px; padding-bottom:14px;"] { display: none !important; }

/* Hides The "Keyboard shortcuts" For Google Chrome Users */
div[style*="text-align:center; color:darkgreen; margin:6px;"] { display: none !important; }

}