@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* 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 {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	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;
	background-color: #F7F7F1;
}


/* 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.
 */
.AccordionPanelTab {
	background-color: #e6de05;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 3px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccDate {
padding-left:10px;
color:#333333;
font-weight:bold;
}

.AccTitle {
padding-left:20px;
color:#333333;
font-weight:normal;
}

.AccDir {
padding-left:10px;
color:#666666;
font-weight:normal;
}

.AccDir2 {
padding-left:10px;
color:#666666;
font-weight:normal;
padding-left:183px;
}

.AccDir3 {
padding-left:10px;
color:#666666;
font-weight:normal;
padding-left:218px;
}

.AccDir4 {
padding-left:10px;
color:#666666;
font-weight:normal;
padding-left:60px;
}

.OutDoor {
padding-left: 10px;
color:#0066CC;
font-weight:normal;
padding-left: 40px;
}

.OutDoor2 {
padding-left: 10px;
color:#0066CC;
font-weight:normal;
padding-left: 125px;
}

.AccordionPanelOpen .AccDate {
padding-left:10px;
color:#333333;
font-weight:bold;
}

.AccordionPanelOpen .AccTitle {
	padding-left:20px;
	color:#cc9900;
	font-weight:bold;
}

.AccordionPanelOpen .AccDir {
padding-left:10px;
color:#666666;
font-weight:normal;
}


/* 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: 0px;
}

.AccordionPanelContent .image {
padding-left:10px;
padding-top:0px;
width:120px;
float:left;
}

.AccordionPanelContent .image p {
	font: 9px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	padding-bottom:3px;
	padding-left:5px;
	padding-top: 0;
	}
	
.AccordionPanelContent .image img{
border:1px solid #E6DE05;
margin-bottom: 3px;
}

.AccordionPanelContent .desc {
padding-left:150px;
padding-right:10px;
padding-top:10px;
padding-bottom:10px;
clear:none;
}

.AccordionPanelContent .desc p {
	font: 11px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
	padding-bottom:3px;
	padding-top: 0;
	}
	
.AccordionPanelContent .desc h3 {
	color: #CC9900;
	font-weight:bold;
	padding-bottom:0px;
	margin: 0}	


.AccordionPanelContent .desc a a:link a:visited a:active {
	color: #CC9900;
	}
.AccordionPanelContent .desc a:hover {
	color: #FF3300;
	}	
	
.AccordionPanelContent .info{
	font: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	padding-bottom:3px;
	color: #CC9900;
	font-weight:normal;
	}	
	
.AccordionPanelContent .caption{
	font: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	font-size:9px;
	padding-bottom:3px;
	color: #CC9900;
	font-weight:normal;
	}			
	
	
/* 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: #F7F7F1;
	border-bottom: solid 1px #F7F7F1;
}

/* 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: #555555;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}
 */
/* 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;
}
 */



/********   OUTDOOR SCREENING STYLES - used in calendar.html only in the outdoor 
		sessions set up by Nat H in Dec 07. No changes have been made to existing styles.
		Ok to delete this section when not needed in calendar.html 			************/

.AccordionPanel2 {
	margin: 0px;
	padding: 0px;
	background-color:#fff0e1;  /*  background colour when panel is open  (Light oragne) */
}

.AccordionPanelTab2 {
	background-color: #FF9933; /*  background colour when tab is closed  (ORange) */
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 3px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent .desc2 {    /* sets up text inside panel - only h3 has changed from original  */
	padding-left:150px;
	padding-right:10px;
	padding-top:10px;
	padding-bottom:10px;
	clear:none;
}

.AccordionPanelContent .desc2 p {
	font: 11px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
	padding-bottom:3px;
	padding-top: 0;
}

.AccordionPanelContent .desc2 h3 {
	color: #000000;   /* this is used for the title of the film inside the panel (made it black) */
	font-weight:bold;
	padding-bottom:0px;
	margin: 0
}	

.AccordionPanelContent .info2{
	font: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	padding-bottom:3px;
	color: #000000;				/* this is for the director etc details and the synnopsis (black)  */
	font-weight:normal;
}	

.AccordionPanelContent .info3{
	font: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	padding-bottom:3px;
	color: #ffffff;			/* this is used for the outdoor cinema text (made it white)  */
	font-weight:bold;
}	

.AccordionPanelContent .info4{
	font: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	padding-bottom:3px;
	color: #CC0000;			/* I made this one for the Embassy support details  */
	font-weight:bold;
}	


.AccordionPanelContent .image2 {
	padding-right:59px;        /* these image2 styles are for the stars image  */
	padding-top:30px;
	width:20px;
	float:right;
}

.AccordionPanelContent .image2 p {
	font: 9px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	color:#333333;				/* these image2 styles are for the stars image  */
	padding-bottom:3px;
	padding-left: 25px;
}
	
.AccordionPanelContent .image2 img{
	border:0px;					/* these image2 styles are for the stars image  */
	margin-bottom: 3px;
	margin-right: 3px;
}




.AccordionPanelContent .image3 {
	padding-left:5px;        /* these image3 styles are for the Thumbnail + Embassy logo  */
	padding-top:0px;
	width:155px;
	float:left;
}

.AccordionPanelContent .image3 p {
	font: 9px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
	color:#333333;				/* these image3 styles are for the Thumbnail + Embassy logo  */
	padding-bottom:3px;
	padding-left: 2px;
	padding-top: 0px;
}
	
.AccordionPanelContent .image3 img{
	border:0px;					/* these image3 styles are for the Thumbnail + Embassy logo  */
	margin-bottom: 0px;
	
}


/********  End of outdoor screening styles *****************/
