/* ---------------------------------------------------------------
AH (03-05-10): Created this BOEBulletStyles.css to consolidate all bullet styles in one place and set up styles for colored Square, Disc & Circle Unordered List (UL) bullets.

AH (03-16-10): Upgraded UL Bullet Styles to cross-browser usage and used images as item markers for 4-levels deep.

AH (04-02-10): Completely restructured and Upgraded this style sheet.
--------------------------------------------------------------- */

/* ---------------------------------------------------------------
AH (04-01-10): Set up vertical spacing of the OL and OL LI elements to fit with the new Bullet Styles.

AH (04-05-10): Removed bottom margin and added top padding of 10px for OL, and added bottom padding of 5px for OL LI.
--------------------------------------------------------------- */

OL {
	MARGIN-TOP: 5px;
	MARGIN-BOTTOM: 0px; /* was 5px */
	PADDING-TOP: 5px;
}

OL LI {
	PADDING-TOP: 0px;  /* added */
	PADDING-BOTTOM: 5px;  /* added */
}


/* ---------------------------------------------------------------
AH (03-05-10): Removed left margin styling of UL bullet points from the "contentstyle.css" sheet - this was causing inconsistent behaviour between IE and Firefox browsers and also creating a poor visual effect in both browsers.
--------------------------------------------------------------- */

UL {
/*	margin-left:18px; */
}

/* ------- AH (04-01-10): Removed
UL {
	MARGIN-TOP: 5px;
}
------- */

/* --------------------------------------------------------------
AH (11-02-09): Added styling for bullet List Items ~ LI

AH (03-05-10): Consolidated here from StamfordBOE.css
--------------------------------------------------------------- */
/* ------- AH (04-01-10): Removed
LI {
	PADDING-TOP: 5px;
}
------- */


/* ==============================================================
AH (03-16-10): Added Cross-Browser Unordered List Styles and Images for item markers 4-Deep
============================================================== */

/* === Set up UL for cross-browser standardization ----- */

UL {
	MARGIN: 0px;
	PADDING: 0px;
}

/* === Set up UL List style for use with images --------- */

UL {
	LIST-STYLE-TYPE: none;
}

/* === Set up Level 1 UL Bullets ~ Brown Square --------- */

UL LI {
	background-image: url(/images/Bullets/Brown_Square_8x8.gif);
	background-repeat: no-repeat;
	background-position: 15px 5px; 
	padding-left: 30px;
}

/* === Set up Level 2 UL Bullets ~ Green Triangle --------- */

UL LI UL LI {
	background-image: url(/images/Bullets/Green_Triangle_8x8.gif);
	background-repeat: no-repeat;
	background-position: 0px 10px; 
	padding-left: 15px;
}

UL UL LI {
	background-image: url(/images/Bullets/Green_Triangle_8x8.gif);
	background-repeat: no-repeat;
	background-position: 30px 10px; 
	padding-left: 45px;
}

/* === Set up Level 3 UL Bullets ~ Blue Cube --------- */

UL LI UL LI UL LI {
	background-image: url(/images/Bullets/Blue_Cube_8x8.gif);
	background-repeat: no-repeat;
	background-position: 0px 10px; 
	padding-left: 15px;
}

UL UL UL LI {
	background-image: url(/images/Bullets/Blue_Cube_8x8.gif);
	background-repeat: no-repeat;
	background-position: 45px 10px; 
	padding-left: 60px;
}

/* === Set up Level 4 UL Bullets ~ Orange Disc --------- */

UL LI UL LI UL LI UL LI {
	background-image: url(/images/Bullets/Orange_Disc_8x8.gif);
	background-repeat: no-repeat;
	background-position: 0px 10px; 
	padding-left: 15px;
}

UL UL UL UL LI {
	background-image: url(/images/Bullets/Orange_Disc_8x8.gif);
	background-repeat: no-repeat;
	background-position: 60px 10px; 
	padding-left: 75px;
}

/* === Set up vertical spacing for UL Levels --------- */

UL {
	MARGIN-TOP: 5px;
	MARGIN-BOTTOM: 5px;
	PADDING-TOP: 5px;
}

UL LI {
	PADDING-TOP: 0px;
	PADDING-BOTTOM: 5px;
}

UL LI UL LI, UL UL LI {
	PADDING-TOP: 5px;
	PADDING-BOTTOM: 0px;
}

UL UL, UL UL UL, UL UL UL UL {
	MARGIN: 0px;
	PADDING: 0px;
}

/* ============================================================ */


/* ---------------------------------------------------------------
AH (03-08-10): Removed "position" attribute. An invalid value was used by original coder, which made the attribute inoperative.

AH (03-25-10): Consolidated here from contentstyle.css
--------------------------------------------------------------- */

UL.ulNEWS {
	list-style-type:none; 
/*	position: 0px; >>> Incorrect Attribute Value */
	margin-left:0px;
	padding-left:0px;
	margin-top: 0px;
	margin-bottom: 0px;
}


/* ---------------------------------------------------------------
AH (01-25-10): Overrode the style for Home page News items in the contentstyle.css sheet to reduce spacing between the items; top & bottom margin was 0px.

AH (03-05-10): Consolidated here from StamfordBOE.css
--------------------------------------------------------------- */

UL.ulNEWS{
	margin-top: -10px;
	margin-bottom: -10px;
}


/* ------------------------------------------------------------
AH (03-16-10): Added Style used for Show/Hide Page Content.

AH (03-30-10): Consolidated here from StamfordBOE.css
------------------------------------------------------------ */

.switchgroup UL {
	margin-bottom: 2px;
}

