@charset "UTF-8";

/* NOTE: This file has been specifically modified by Flint Interactive for use on www.greeningaustralia.org.au */

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.5 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
    text-align: left;
	overflow: hidden;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	width: 165px;
}

.Accordion * {
  text-align: left;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	display: block;
	clear: both;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
 
.AccordionPanelTab {
	width: 154px;
	padding: 5px 5px 0px 5px;
	height: 20px;
	background-image: url(../images/modules/accord-subheader.gif);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #8cb915;
	font-weight: bold;
	font-family: Verdana, Arial,Helvetica,sans-serif;
	font-size: 11px;
	line-height: 11px;
}

.threeLines .AccordionPanelTab {
    background-image: url(../images/modules/accord-subheader-3.gif);
    background-position: 0px bottom;
    height: 40px;
}

.twoLines .AccordionPanelTab {
    background-image: url(../images/modules/accord-subheader-2.gif);
    background-position: 0px bottom;
    height: 30px;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	margin: 0px;
	padding: 0px;
	height: 66px;
	width: 164px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
}
 */

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}
 */

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}
 */

/* Internal Styles brought in from HTML */

Accordion, .AquaAccordion {
	width: 300px;
}

#Acc1.Accordion {
	width: 550px;
}
.AccordionPanelTab a {
	display: block;
	color: black;
	text-decoration: none;
}
.AccordionPanelContent {
	height: auto;
}

span.AccordionPanelContent {
	display: block;
}

.accordionLinkPanel {
    cursor: pointer;
}

/* Specific styles for GA */

.Accordion a {
	color: #8cb915;
}

.moduleItemWrapper {
	height: 115px;
	width: 164px;
	background-image: url(../images/modules/accord-bg-large.gif);
	background-position: 0px 0px;
	background-repeat: no-repeat;
}

.resourceItemWrapper {
	height: 66px;	
	width: 164px;
	background-image: url(../images/modules/accord-bg.gif);
	background-position: 0px 0px;
	background-repeat: no-repeat;
}

.moduleItemWrapper span {
	overflow: visible;
	width: 154px;
	margin: 0px;
	display: block;
	clear: both;
	color: #666666;
	font-family: Verdana,  Verdana,Arial,Helvetica,sans-serif;
	font-size: 10px;
	line-height: 12px;
	font-style: normal;
	padding-left: 5px;
}

.moduleItemWrapper span a {
	font-size: 10px;
	background-image: url(../images/modules/accord-link-arrow.gif);
	background-position: right 5px;
	background-repeat: no-repeat;	
	padding-right: 6px;
}	

.projModTitle {
	font-weight: bold;	
	padding:  5px 0px 5px 0px;
}

.projModLink {
	padding-top: 5px;
}

#column2 .projModLink a {
	background-image: url(../images/modules/accord-link-arrow.gif);
	background-position: right 5px;
	background-repeat: no-repeat;
	color: #8cb915;
	padding-right: 6px;
}

.moduleHeader {
	background-image: url(../images/modules/accord-header.gif);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 30px;
	width: 164px;
	clear: both;
}

.moduleHeader p {
	font-family: Verdana,  Verdana,Arial,Helvetica,sans-serif;
	font-size: 11px;
	line-height: 11px;
	font-style: normal;
	color: #FFFFFF;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	position: relative;
	left: 5px;
}

.moduleTab {
    overflow: visible;
    width: 164px;
    height: 63px;
    background-image: url(../images/modules/accord-bgtab-white.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    position: relative;
    bottom: 0px;
    z-index: 100;
}

.people .moduleTab {
    background-image: url(../images/modules/people-accord-bgtab-white.png);
    height: 140px;
}

.moduleTabBlack {
    overflow: visible;
    width: 164px;
    height: 63px;
    background-image: url(../images/modules/accord-bgtab-black.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    position: relative;
    bottom: 0px;
    z-index: 100;
}

.moduleTab span {
	width: 154px;
	margin: 0px;
	display: block;
	clear: both;
	color: #666666;
	font-family: Verdana,  Verdana,Arial,Helvetica,sans-serif;
	font-size: 10px;
	line-height: 12px;
	font-style: normal;
	padding-left: 5px;
	overflow: visible;
}

.moduleTab span a, .employmentListWrapper .AccordionPanelContent a {
	background-image: url(../images/modules/accord-link-arrow.gif);
	background-position: right 5px;
	background-repeat: no-repeat;	
	font-size: 10px;
	padding-right: 6px;
}

.AccordionPanelOpen .moduleTab {
    background-image: url(../images/modules/accord-bgtab-black.png);
}

.people .AccordionPanelOpen .moduleTab {
    background-image: url(../images/modules/people-accord-bgtab-black.png);
    height: 140px;
}

.AccordionPanelOpen .moduleTab span.projModDesc {
    color: #F0F0F0;
}

.AccordionPanelOpen .moduleTab span.projModTitle {
    color: #bad573;
}

.AccordionPanelOpen .moduleTab span a {
    color: #bad573;
}


.AccordionPanelOpen .moduleTab span a {
    background-image: url(../images/modules/accord-link-arrow-over.gif);
	background-position: right 5px;
	background-repeat: no-repeat;
}

.tabAccord .AccordionPanel {
    position: relative;
    overflow: visible;
    height: auto;
    float: left;
}

.tabAccord .AccordionPanelOpen {
    overflow: visible;
    position: relative;
}
 
.tabAccord .AccordionPanelOpen .AccordionPanelContent {
    height: 88px;
}

.moduleTabWrapper {
    z-index: 10000;
    height: 57px;
    float: left;
    overflow: visible;
}

.people .moduleTabWrapper {
    height: 133px;
}

.moduleTab .projModTitle {
	font-weight: bold;	
	padding:  7px 0px 0px 5px;
    color: #8cb915;
}

.moduleTab span a {
	padding-top: 0px;
	color: #8cb915;
}

/* Resource Panel */

.resourceItemWrapper ul {
	float: left;	
	clear: both;
	margin: 5px 0px 0px 4px;
}

.resourceItemWrapper ul li {
    list-style-type: none;
    background-image: none;
    padding-left: 0px;
	float: left;	
	width: 150px;
	clear: both;
	margin: 5px 3px 5px 0px;	
}

.resourceItemWrapper ul li a {
    font-size: 11px;
	background-image: url(../images/icons/pdf-small.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	float: left;
	clear: both;
	padding: 2px 0px 2px 30px;
	line-height: 10px;	
	width: 125px;
    color: #8cb915;
}

.resourceItemWrapper ul li a:hover {
    color: #025B3A;
    font-size: 11px;
}

.pubThumb {
	position: relative;
	left: 3px;
	top: 13px;
	width: 45px;
	float: left;
}

.pubDesc {
	overflow: hidden;
	width: 118px;
	float: left;
}

.moduleTabWrapper#resourceTab {
	height: 63px;
}

/* Employment Accordion */

.employmentListWrapper .Accordion {
	width: 315px;
}

.peopleContent .Accordion {
	width: 480px;
}

.employmentListWrapper .AccordionPanelTab {
	background-image: url(../images/modules/accord-emply-header.gif);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	width: 315px;
	height: 32px;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
}

.peopleContent .AccordionPanelTab {
	background-image: url(../images/modules/accord-emply-header.gif);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	width: 480px;
	height: 32px;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
}

.peopleContent .AccordionPanel {
	border-bottom: solid 1px #d4d4d4;
}

.employmentListWrapper .AccordionPanelTab h5, .peopleContent .AccordionPanelTab h5 {
	background-image: url(../images/modules/accord-link-arrow-dn.gif);
	background-repeat: no-repeat;
	background-position: 4px 14px;
	line-height: 32px;
	font-size: 12px;
	margin: 0px;
	padding: 0px 0px 0px 15px;
}

.employmentListWrapper .AccordionPanelContent {
	width: 285px;
	background-image: url(../images/modules/accord-emply-bg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	padding: 5px 5px 5px 15px;
}

.peopleContent .AccordionPanelContent {
	width: 480px;
	background-image: url(../images/modules/people-list-bg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	padding: 5px 5px 5px 15px;
}

.employmentListWrapper .AccordionPanelContent p a, .employmentListWrapper .AccordionPanelContent p, .employmentListWrapper .AccordionPanelContent p a, .employmentListWrapper .AccordionPanelContent a {
    font-size: 11px;
}

.employmentListWrapper .AccordionPanelOpen .AccordionPanelTab, .peopleContent .AccordionPanelOpen .AccordionPanelTab {
	font-size: 12px;
	color: #025B3A;
}

.employmentListWrapper .AccordionPanelOpen .AccordionPanelTab h5, .peopleContent .AccordionPanelOpen .AccordionPanelTab h5 {
	background-image: url(../images/modules/accord-link-arrow.gif);
	background-repeat: no-repeat;
	background-position: 4px 14px;
	font-size: 12px;
	color: #025B3A;
}

.employmentListWrapper .AccordionPanelOpen .AccordionPanelTab span, .employmentListWrapper .AccordionPanelTab span {
	font-size: 12px;
	color: #666666;
}

.peopleContent .AccordionPanelOpen .AccordionPanelTab span, .peopleContent .AccordionPanelTab span {
	font-size: 12px;
	color: #666666;
}

.peopleContent .AccordionPanelContent .peopleImage {
	float: left;
	width: 120px;
	margin-right: 10px;
	margin-top: 45px;
}

.peopleContent .AccordionPanelContent .peopleDesc {
	width: 320px;
	float: left;
}