/*
 * Author:            Will (war59312@gmail.com)
 * Description:       Removes all the crap on youtube video pages; makes it a more user friendly experience.
*/

/* +++ changelog +++
May 2nd, 2012
- hides "Play List"
- works with https version of youtube
Nov. 07, 2010
- hides "mini mode"
- hides VEVO Ads
- fixed "Format Video Title"
Aug. 24, 2010
- Hides YouTube HD Ultimate's "QuickList" That Is In The Footer
Aug. 16, 2010
- centered video for 1080p dispalys as that is what I am personally using as of today
- set to correct margin for smaller or larger resolution - see comment in code below
May 1, 2010
- hides footer, again...
April 4, 2010
- fixed for the Google Redesign - damn you google, now youtube is even crappier than before..
January 22, 2010
- hides Vevo junk
October 24, 2009
- hides "mini mode" text and icon when using "YouTube HD Ultimate"
July 3, 2009
- hides the light-switch icon
April 26, 2009
- fixed once again..
- no more center video though, center it yourself if you wish too.. had to do this since hd videos where being cut off on some resolutions
- simple black background now...
April 4, 2009
- fixed once again..
March 26, 2009
- google just can't stop changing things. fixed once again!!
February 23, 2009
-  removed "amazon/itunes" ad
February 19, 2009
-  removed "site maintenance" message that appears on top of screen, above the video..
February 2, 2009
-  removed "Switch off annotations editor" link found under some videos
January 14, 2009
-  Uses "#watch-player-div" instead of "#movie_player" to center video.
December 20, 2008
-  HD movies did not fit completely on screen, sorrry cant figure out how to center without breaking other videos
December 9, 2008
-  removed chrome promo ad
December 5, 2008
-  Damn you google, stop updating already!! Complete redo..
November 25, 2008
- Google made all videos wide screen
November 1, 2008
- Hides Google Chrome ad
October 21, 2008
- Hides site maintenance message
October 17, 2008
- removed theater view and lights off buttons that some times show on videos (Ex. http://www.youtube.com/watch?v=DvdfO0lq4rQ)
September 13, 2008
- removed video responses - odd, was not showing up a few days ago
September 11, 2008
- removed footer & header again and changed title text back to white
July 7th, 2008
- better video center positioning, added redcurtain background, video title easier to read, removal of "This video has been removed by the user." which some times shows up even when video plays just fine, odd youtube bug.
May 4th, 2008
- removed the "Try the New YouTube Player Beta!" link
April 21st, 2008
- video size working again
April 10th, 2008
- google updated big time - removed all the crap again
Dec. 17th, 2007
- google updated - removed all the crap again
Nov. 30th, 2007
- removed CNN Debate Bar
- background black and text white
- removed new top ad
Nov. 8th, 2007
- fixed to work with new youtube style
July 17, 2007
- original release
*/

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix(http://youtube.com/watch) , url-prefix(http://www.youtube.com/watch) , url-prefix(https://youtube.com/watch) , url-prefix(https://www.youtube.com/watch) {

/* Hide Master Header On Watch Page */
#masthead-container {

    display: none !important;

  }

/* Hide Right Side-Bar On Watch Page */
#watch-sidebar {

    display: none !important;

  }

/* Hide Video Information Header On Watch Page */
#watch-headline-user-info {

    display: none !important;

  }

/* Hide Everything Following The Video On Watch Page */
#watch-main {

    display: none !important;

  }

/* Format Video Title */
#watch-headline-title, #watch-headline-show-title {

    text-align: center !important;
    font-family: georgia !important;
    font: normal small-caps normal 16pt georgia !important;
    color: white !important;
    letter-spacing: 0.03em !important;
    padding: 3px !important;
    margin: 0 60px 0 60px !important;
    opacity: 0.95 !important;
    margin-top: 12px !important;

  }

/* Video Page Formatting - Center Video For 1080p - Change To Correct Margin For Different Resolution
#content, #page, #watch-video-container, #watch-video, #watch-player, #movie_player, #watch-container {

    margin: 0 90px 0 90px !important;

  } */

/* Black Background */
#watch-headline-container, body, #watch-video-container {

    background: #000000 !important;
    color: #ffffff !important;

  }

/* Black Background For VEVO Pages */
#content {

    background: #000000 !important;
    color: #ffffff !important;

  }

/* Hide Footer */
#footer-container {

    display: none !important;

  }


/* Hides YouTube HD Ultimate's "QuickList" That Is In The Footer */
#quicklist {

    display: none !important;

  }

/* Hides "mini mode" */
#vidtools {

    display: none !important;

  }

/* Hides VEVO Ads */
#watch-branded-actions {

    display: none !important;

  }

/* Hides Play List */
#playlist-bar {

    display: none !important;

  }

}