/**
 * Media queries for responsive design.
 * These follow after primary styles so they will successfully override.
 */

/*
 * Mobile styles for portrait and landscape.
 */

 @media all and (orientation:portrait) {}
 @media all and (orientation:landscape) {}

/*
 * Grade-A Mobile Browsers (Opera Mobile,Mobile Safari,Android Chrome) 
 * Consider: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/
 */
 @media screen and (max-device-width:480px) {
 /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you:j.mp/textsizeadjust */
 html{-webkit-text-size-adjust:none;-ms-text-size-adjust:none}

 /*rve*/
 body,section{width:100%}
 #toc,#userbar{display:none}#main p,#main div,#main ul,ol,table,blockquote,#main h2,#main h3,#main h4,#main h5,#main h6{margin:1em 0;padding:0;clear:both !important;width:960px !important}
 article,.breakout{left:0 !important;width:960px !important;clear:both !important;float:none !important}
 .block-party{padding:30px !important;width:900px !important}
 #main p,#main ul,#main ol,table,#main h2,#main h3,#main h4,#main h5,#main h6{font-size:262% !important}
 #menu{font-size:200%}
 figure{float:none !important;clear:both !important}img{width:94% !important;height:auto !important}

 }

/*
 * Small screen, limited bandwidth.
 */
 @media handheld{
 *{float:none;/*screens not big enough*/ background:#fff;color:#000 /*maximum contrast*/}
 body{font-size:90%} /*reduce need to scroll*/
 }

/*
 * Print styles.
 * Inlined to avoid required HTTP connection:www.phpied.com/delay-loading-your-print-css/
 */
 @media print {
 *{background:transparent !important;color:black !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important} /*black prints faster:sanbeiji.com/archives/953*/
 a{color:#444 !important}
 a[href]:after {content:" (" attr(href) ")"}		/*show link urls in parenthesis*/
 abbr[title]:after {content:" (" attr(title) ")"}	/*show abbr titles in parenthesis*/
 a[href^="#"]:after {content:""}				/*don't show link urls for jumps*/
 pre,blockquote{border:1px solid #999;page-break-inside:avoid}
 thead{display:table-header-group}tr,img,li{page-break-inside:avoid}	/*css-discuss.incutio.com/wiki/Printing_Tables*/
 @page{margin:0.5cm}
 p,h2,h3{orphans:3;widows:3}
 h2,h3{page-break-after:avoid}
 }

/*
 * Accessibility styles.
 */
 @media braille,speech{
 figcaption{display:block !important}
 }