/*
 * Author:            Will (war59312@gmail.com)
 * Description:       Removes all the crap on abc news articles, leaving just the article text..
*/

/* +++ changelog +++
November 6, 2009
- hides "category" line
September 21, 2009
- hides "now playing widget"
July 10, 2009
- hides "Share this story with friends"
May 9, 2009
- white background to hide ugly blackness sticking out
- some text was getting cut off due to top margin
December 22, 2008
- text fills full screen
November 1, 2008
- hides a few new header logos and "get more data" category links
September 17, 2008
- original release
*/

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("abcnews.go.com") {

    /* ONLY DISPLAY ARTICLE TEXT */
    #bannerad, #breakingnews, .embed_quigo, #feature_adlinks, .headerbg, .subhead, .footer, .share, .story_side, .breadcrumb, .story_bylinecredit, #story-options, #relatedblock, .comments, #community-options, .comment-mid, div[class*="story-embed-left box"], div[class*="story-embed-quigo"], .next-story, #story-features, #more-coverage, .masthead, .continue, .toolbox, .midcontainer, .subbranding {
        display: none !important;
    }

    /* MOVE ARTICLE TEXT UP THE SCREEN A BIT */
    .bodycontainer, .story_text {
        margin-top: -2.0% !important;
    }

    /* NOW THAT THE ADS ARE GONE WE HAVE MORE ROOM FOR TEXT SO WHY NOT USE IT */
    .bodycontainer, .story_body, .story_main {
        width: auto !important;
    }

    /* WHITE BACKGROUND ON ARTICLE PAGES - TO HIDE UGLY BLACK BACKGROUND STICKING OUT */
    BODY {
        background: white !important;
    }

    /* CENTER ARTICLE TITLE & DESCRIPTION */
    .headline, .dek {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 50em !important;
    }
}