
/***************************************************************************
	Programmes 
***************************************************************************/
#programme_Index {
	font-weight: bold;
	padding:0;
	margin: 1em 0;
	color:#999999;
	list-style:none;
	float:left;
}

#programme_Index li {
	float:left;
	padding:0px;
	margin:0px;
	border-right:1px solid #999999;
}

#programme_Index li.index_Last {
	clear:left;
	/*width:50%;*/
	float:none;
	font-size:1px;
	line-height:1px;
	border:0px;
	margin:0px;
	padding:0px;
	list-style-image:none;
}

#programme_Index a {
	display:block;
	text-decoration:none;
	border: 1px solid #FFFFFF;
	padding: 0;
	margin: 0px;
	width: 1.37em;
	text-align:center;
}

#programme_Index a.selected,
#programme_Index a.selected:hover {
	border: 1px solid #02549f;
	background:#02549f;
	color:#FFFFFF;
	cursor:default;
}

#programme_Index a:hover {
	text-decoration:none;
	border: 1px solid #ECECEC;
	background:#ECECEC;
	color:#02549f;
}

#programme_List {
	list-style:none;
	padding: 0px;
	margin: 0px;
}

#programme_List li {
	color: #02549f;
	border-top:1px solid #CCC;
	margin:0px;
	padding:0.5em 0pt;
	clear:both;
	list-style-image:none;
}

#programme_List li ul {
	list-style:none;
	margin: 0px;
	padding:0px 10px;
}

#programme_List li ul li {
	border:0px;
	padding: 2px 5px;
	clear:none;
	list-style-image:none;
}

.Special_Instructions {
	padding: 5px;
	border:1px solid #999999;
	background-color: #F4F4F4;
	margin: 2px 0;
}

.link_Summary {
	background: transparent url(/_artwork/icons/summary.gif) no-repeat scroll left top;
	padding:0 0 0.1em 16px;
	display: block;
}

.link_Full_Spec {
	background: transparent url(/_artwork/icons/full.gif) no-repeat scroll left top;
	padding:0 0 0.1em 16px;
	display: block;
}

.link_Apply {
	background: transparent url(/_artwork/icons/tick.gif) no-repeat scroll left top;
	padding:0 0 0.1em 16px;
	display: block;
}

.link_Email,
a.link_Email {
	background: transparent url(/images/icons/Icon_Email-S.png) no-repeat scroll left top;
	padding:0 0 0.1em 16px;
	display: block;
}

.message_Not_Recruiting {
	background-color:#CCC;
	border:1px solid #CCCCCC;
	margin:2px;
	padding:5px;
	font-weight:bold;
}

.message_Not_Recruiting h4 { border:0; }

._not-recruiting a { display: inline; }

#spry_Tabs .TabbedPanelsContent {
	padding-left:0;
	padding-right:0;
}

/*..............................................................................: Apply now Accordion*/

.Accordion {
	border-left: solid 1px #cccccc;
	border-right: solid 1px #454545;
	border-bottom: solid 1px #cccccc;
	overflow: hidden;
}

/* 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;
}

/* 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 {
	background-color: #929292;
	border-top: solid 1px #454545;
	border-bottom: solid 1px #a8a8a8;
	color:#3a3a3a;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelTab h3 {
	margin:0;
	padding:0 0 0 5px;
}

/* 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 {
	overflow: auto;
	margin: 0px;
	padding: 0 20px;
	height: 20em;
}

.AccordionPanelContent > *:first-child { margin-top: 20px; }

/* 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: #00539f;
	color:#FFF;
}

.AccordionPanelOpen .AccordionPanelTab h3 { color:#FFF; }

/* 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.
 */
.AccordionPanelTabHover {
	color: #FFF;
	background-color: #00539f;
}

.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
	background-color: #00539f;
	border-bottom-color: #00539f;
}

/* 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: #929292;
	color: #3a3a3a;
}

/* 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: #00539f;
	color:#FFF;
}

/*.........................................................................:DEVELOPMENT/DESIGN-time elements */
._ignore {
	background:#EBEBEB;
	color:#6D6D6D;
	border:2px solid #ACACAC;
	margin-left:5px;
	padding: 3px;/*Reserved for XSLT transformation*/
}

._customContent { /*Reserved for XSLT transformation*/ }

*[uel_section] { background:#FC9; }

*[uel_text] { background:#F93; }

*[uel_condition],
*[uel_school_select] { background:#E8FFFF; }

/*.........................................................................:FIX for school programmes */

#deptCont table.table2fit {
	table-layout:fixed;
	width:100%;
}

#deptCont table.table2fit td {
	background-color:#E5EEF5;
	color:#0154A0;
	padding:5px 20px 5px 5px;
	text-align:left;
	vertical-align:top;
}

