
/* CSS - LOCAL - AO
these are CSS elements that should be included on all pages throughout the site
and that probably won't be changed when moving from one minor style-change to another,
or that will probably be commonly shared between separate wikis.
these elements are usually assigned in pmwiki.php or other basic pmwiki scripts via $HTMLStylesFmt
and should be cancelled out in config.php.
*/


/* from $HTMLStylesFmt['pmwiki'] */
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
code.escaped { white-space: nowrap; }
/*.vspace { margin-top:1.33em; }*/
/*.indent { margin-left:40px; }*/	/* original */
/*.indent { margin-left:20px; }*/		/* ao */
.indent { margin-left:1.33em; }		/* ao */
.outdent { margin-left:40px; text-indent:-40px; }
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
a.createlink { text-decoration:none; position:relative; top:-0.5em;
font-weight:bold; font-size:smaller; border-bottom:none; }
img { border:0px; }

/* ADD DEFAULT PADDING TO RIGHT- & LEFT-ALIGNED IMAGES */
.rfloat img { margin: 6px 0px 3px 6px; }
.lfloat img { margin: 6px 6px 3px 0px; }
/* ADD DEFAULT PADDING TO RIGHT- & LEFT-ALIGNED OBJECTS (LIKE VIMEO OR YOUTUBE VIDEOS */
.rfloat object { margin: 6px 0px 3px 10px; }
.lfloat object { margin: 6px 10px 3px 0px; }

/* ADD DEFAULT PADDING TO RIGHT- & LEFT-ALIGNED IMAGES */
/*.mini img { margin: 0px 0px 0px 0px; }*/


/*.rfloat table { margin: 0px 0px 3px 16px; }
.lfloat table { margin: 0px 6px 3px 0px; }*/


/* AO-COMMON-STYLES - added by me */
/*#wikibody ul { margin-left:-10px; }*/
/*#wikibody ul { padding-left:10px; margin-left:20px; }*/
#wikibody ul { padding-left:1.33em; margin-left:1.33em; }
/*#wikibody ul { padding-left:1.33em; margin-left:1.33em; list-style-image: url(ULbullet_period.png); }*/


#sidebarScroll {
	height:90%;
	overflow:auto;
	/*margin-bottom:50px;*/
}


/* CODE, ESCAPED TEXT -- this prevents escaped code text from being too small */
/* 
	- code is for [@ .. @], which produces <code>..</code>
	- .code is for %code%, which produces ... class="code" ...
	- .escaped is for @@ .. @@, which produces ... class="escaped"
*/
.code { font-family:courier; }  /* FOR %code% */
code, .escaped, .code {
	/*font-size: small;*/
	font-size: 12px;
}

/*
code {
	font-size: 16px;
}
*/

.smaller {
	font-size: 10px;
}

/* TRAIL STYLE */
.trail {
	/*font-size:smaller;*/
	font-size:10px;
}

.pagetitle { 
	font-weight:bold; 
	text-indent: 50px;
}

/* STYLING FOR IMG CAPTIONS */
/*
.caption {
	font-size: smaller;
}
*/

.indent2 { /* currently using this in the SearchPageFmt Pagelist */
	/*text-indent: 40px;*/ /* one regular indent */
	text-indent: 80px; /* two regular indents */
}

.indentSmall { /* currently using this in the SearchPageFmt Pagelist */
	text-indent: 10px; /* half of a regular indent */
}

/* currently using this in the artSpaSideBar Pagelist */
.outdentHalf { /* currently using this in the SearchPageFmt Pagelist */
	margin-left:-12px; 
}

.outdentSmall {
	/*margin-left:-6px;*/
	text-indent:-6px;
}

.indentSmallUL ul { /* currently using this in the SearchPageFmt Pagelist */
	/*text-indent: 40px;*/ /* one regular indent */
	/*text-indent: 10px;*/ /* half of a regular indent */
	margin-left:-15px; 
}

/* For use with artist-page pagelist of scores, to be used with 'nobullets' - currently works in firefox, but not safari */
/* may not need this anymore with #wikibody ul */
.indentReverse {
	text-indent:-9px;
}


