@charset "UTF-8";

/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	background-color: rgba(255,255,255,0.0);
	width: 260px;
	border-radius: 10px;
	border: medium none #999;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-size: 18px;
	font-weight: bold;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel7 {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#CollapsiblePanel10 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: none;
}

#CollapsiblePanel8 {
	width: 800px;
	border: thin none #999;
	margin: 0px;
}
#CollapsiblePanel9 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: thin none #999;
}


.thrColElsHdr #container #mainContent .search .images p img {
	margin-right: 20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.thrColElsHdr #container #mainContent .search .images {
	width: 202px;
	margin-left: 5px;
	float: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	font: bold 0.7em sans-serif;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border: none;
	text-align: left;
	height: 25px;
	font-size: 12px;
	color: #00F;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 12px;
	color: #000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: left;
	font-weight: normal;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: rgba(255,255,255,0.0);
	text-align: left;
	font-size: 12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #00F;
	width: 450px;
	text-decoration: none;
	font-weight: bold;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
	background-color: rgba(255,255,255,0.0);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	text-decoration: none;
	color: #00F;
	font-weight: normal;
	text-align: left;
 /* background-color: #EFEFEF */
}


/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #E9E9FE;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #FFFFFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#CollapsiblePanel6 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #E9E9FE;
	border-right-color: #E9E9FE;
	border-bottom-color: #E9E9FE;
	border-left-color: #E9E9FE;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel6 {
	border: thin solid #999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel8 {
	border: thin none #999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel9 {
	border: thin solid #999;
}
#CollapsiblePanel11 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel12 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999;
}

#mainContent2 #CollapsiblePanel6 .CollapsiblePanelTab {
	font-size: 12px;
	color: #00F;
	text-align: left;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel14 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel15 {
	width: 800px;
	border: thin solid #999999;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}


.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel8 .CollapsiblePanelTab {
	font-size: 12px;
}
#mainContent2 #Ireland {
	width: 280px;
	margin-left: 250px;
	border: medium solid #999;
}
#mainContent2 #england {
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	border: thin none #000;
}
#mainContent2 #left_image {
	float: left;
	width: 250px;
	margin-left: 20px;
}
#mainContent2 #right_image {
	width: 250px;
	float: right;
}
#mainContent2 #Ireland {
	margin-left: 275px;
	border-radius: 10px;
	width: 280px;
	padding-right: 10px;
	padding-left: 10px;
}
.thrColElsHdr #container #Scotland {
	width: 300px;
	margin-left: 350px;
	border: medium solid #999;
	border-radius: 10px;
}
.thrColElsHdr #container #wales {
	width: 300px;
	margin-left: 350px;
	border: medium solid #999;
	border-radius: 10px;
}
.CollapsiblePanelContent p strong a {
	color: #00F;
}
.CollapsiblePanelContent p a strong {

}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel7 {
	width: 800px;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel16 {
	width: 800px;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel17 {
	width: 800px;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel18 {
	width: 800px;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel19 {
	width: 800px;
	padding-right: 10px;
	padding-left: 10px;
	border: thin solid #999999;
}
.thrColElsHdr #container #mainContent #mainContent2 #CollapsiblePanel20 .CollapsiblePanelTab {
	text-decoration: none;
}
.thrColElsHdr #container #mainContent #mainContent2 .adverts #CollapsiblePanel1 .CollapsiblePanelTab {
	width: 250px;
}
.thrColElsHdr #container #mainContent #mainContent2 .adverts #CollapsiblePanel2 .CollapsiblePanelTab {
	width: 250px;
}
.thrColElsHdr #container #mainContent #mainContent2 .adverts #CollapsiblePanel3 .CollapsiblePanelTab {
	width: 250px;
}
.thrColElsHdr #container #mainContent #mainContent2 .adverts #CollapsiblePanel4 .CollapsiblePanelTab {
	width: 250px;
}
.thrColElsHdr #container #mainContent #mainContent2 #cl_info #CollapsiblePanel11 .CollapsiblePanelContent {
	text-align: left;
}
