/** CSS placed here will be applied to all skins */

/* Makes redirects appear in italics on [[Special:Allpages]] - taken from http://en.wikipedia.org/wiki/MediaWiki:Common.css */
.allpagesredirect {
    font-style: italic;
}

/* Change sidebar width based on instructions at  http://www.mediawiki.org/wiki/Manual:Navigation_bar#Sidebar_width_.28monobook_specific.29 - since Appropriate technology is in the sidebar, we need more width */

/* comment out the width change code until we resolve the issue raised by Lonny at http://www.appropedia.org/MediaWiki_talk:Sidebar#Split.2C_add_portals 

#column-content { margin-left: -14em }
#content { margin-left: 14em }
#p-logo a, #p-logo a:hover { width: 14em }
.portlet { width: 13em }
#p-cactions { left: 13em }         

END COMMENTING OUT */


/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}
 
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}
 
table.wikitable th,
table.prettytable th {
    background: #f2f2f2;
    text-align: center;
}
 
table.wikitable caption,
table.prettytable caption {
    margin-left: inherit;
    margin-right: inherit;
    font-weight: bold;
}
 
table.prettytable code,
table.wikitable code {
    background-color: transparent;
}

/* Change the external link icon to an Adobe icon for all PDF files */
/* (in browsers that support these CSS selectors, like Mozilla and Opera) */
#bodyContent a[href$=".pdf"].external, 
#bodyContent a[href*=".pdf?"].external, 
#bodyContent a[href*=".pdf#"].external,
#bodyContent a[href$=".PDF"].external, 
#bodyContent a[href*=".PDF?"].external, 
#bodyContent a[href*=".PDF#"].external,
#mw_content a[href$=".pdf"].external, 
#mw_content a[href*=".pdf?"].external, 
#mw_content a[href*=".pdf#"].external,
#mw_content a[href$=".PDF"].external, 
#mw_content a[href*=".PDF?"].external, 
#mw_content a[href*=".PDF#"].external {
    background: url(../../wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat_gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat;
    padding-right: 16px;
}

/* Change the external link icon to an Adobe icon anywhere the PDFlink class */
/* is used (notably Template:PDFlink). This works in IE, unlike the above. */
span.PDFlink a {
    background: url(../../images/2/23/Icons-mini-file_acrobat.gif) center right no-repeat !important;
    padding-right: 17px !important;
}