/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'defaultpage' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 85%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}


if img is inside "a" it would have 
borders, we don't want that
img {
   padding: 0px;
margin:0;
}


/*
default link styles#
*/
/* set all links to have underline and bluish color */
a,
a:link,
a:active {
   margin: 0px 0px 0px 0px;     
   padding: 0px 0px 0px 0px;   
   text-decoration: underline;
   border:0 0 0 0;
   color:#666600;
}

a:visited {
   text-decoration: underline;
   color:#666600;
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
border:0 0 0 0;
}

/*****************
basic layout 
*****************/
body {
   background: #92932b url(images/killarneyhostel/bg_header.jpg) repeat-x 0 0px; 
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0px auto 0 auto;     /* this centers wrapper */
padding:0;
width:759px; 
   color: black;
   background-color: #fff;
}


div#pagewrapper img {
   margin: 0px;
padding:0;
border:0;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#headerwrapper {
width:100%; 
   margin: 0px auto 0 auto;     /* this centers wrapper */
   background: #ffffff url(images/killarneyhostel/bg_header.jpg) repeat-x 0 0px; 
   border:0;
padding:0;
}

div#header {
   height: 218px;    /* adjust according your image size */
width:100%;
   margin: 0px auto 0 auto;     /* this centers wrapper */
padding:0;       
text-align:center;
}


div#subheader {
   height: 55px;    /* adjust according your image size */
width:759px;
   background: #ffffff url(images/killarneyhostel/subheader.jpg) no-repeat 0 0px; 
   margin: 0px auto 0 auto;     /* this centers wrapper */
padding:0;   
background-position: center;
}      

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div#contentwrapper {
width:759px; 
   margin: 0 auto 0px auto;     /* this centers wrapper */
   padding-top:2px;
   padding-bottom:25px;
   border:0;
   background:#ffffff;
}

div#content {
   margin: 0 ;     /* this centers wrapper */
   padding:0;
   border:0;
   background:#ffffff;
}


div#main {
   margin-left: 201px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
margin-right: 0;
   background: #ffffff url(images/killarneyhostel/bg_content.jpg) no-repeat 0px 0px; 
   background-position:right top;
padding-bottom:20px;
}

div#main img {
border:2px solid #e37704;
margin:10px 10px 10px 10px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 200px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   padding: 0;
margin-top:15px;
background:#ffffff;
}

div#footer {
width:759px;
   margin: 0 auto 0 auto;     /* this centers wrapper */
   clear: both;       /* keep footer below content and menu */
   color: #41165d;
   border-top: 1px solid #FF6600;
   background-color: #ffffff; /* same bg color as in header */
   text-align: center;  /* centered text */
padding:0;
}

div#footer p {
   color: #41165d;
   font-size: 0.7em;
   padding: .5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
   display:block;
}

div#footer p a:link, p a:active {
   color: #41165d; /* needed becouse footer link would be same color as background otherwise */
   border:0;
   margin:0;
   padding:0;
}

div#footer p a:visited {
   color: #41165d; /* needed becouse footer link would be same color as background otherwise */
}

div#impactweb {
   padding: .5em 0 1em 0em;       /* some air for footer */
   text-align:center;
   font-size: 0.7em;
}

div#impactweb a {
   color: #FF6600; 
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 0em;
   border-bottom: 1px solid #FF6600;
   margin: 0em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

div#bannertop {
   background: #ffffff url(images/killarneyhostel/home_banner.jpg) no-repeat; 
   height: 111px;             /* adjust according your image size */
   width: 546px;             /* adjust according your image size */
   margin: 0 0 0 5px;
   padding:0;
   border:0;
   float:right;
   display:inline;
}

div#bannerbottom {
   height: 40px;             /* adjust according your image size */
   width: 546px;             /* adjust according your image size */
   margin: 0 0 0px 5px;
   padding:0 0 20px 0;
   border:0;
   float:right;
   display:inline;
}

div#bannerbottom a img {
   padding:0 0 0px 0;
   display:inline;
   border:0;
margin:0;
}

/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1 {
	color: #E18700; 
	font-size: 1.5em; 
	text-align: left; 
             line-height: 1.5em;
/* some air around the text */
	padding-left: 30px;
	padding-top: 1.5em;
	padding-bottom: 0;
	padding-right: 0;
/* and some air under the border */
        margin: 1em 0 1em 0;
}

div#content h2 {
	color: #E18700; 
	font-size: 1.5em; 
	text-align: left; 
             line-height: 1.5em;
/* some air around the text */
	padding-left: 33px;
	padding-top: 1.5em;
	padding-bottom: 0;
	padding-right: 0;
/* and some air under the border */
        margin: 1em 0 1em 0;
font-weight:500;
}

div#content h3 {
	color: #E18700; 
	font-size: 1.3em; 
	text-align: left; 
             line-height: 1.3em;
/* some air around the text */
	padding-left: 30px;
	padding-top: 1.3em;
	padding-bottom: 0;
	padding-right: 0;
/* and some air under the border */
        margin: 1em 0 1em 0;
}

div#content h4, h5 {
	color: #E18700; 
	font-size: 1em; 
	text-align: left; 
             line-height: 1em;
/* some air around the text */
	padding-left: 33px;
	padding-top: 1em;
	padding-bottom: 0;
	padding-right: 0;
/* and some air under the border */
        margin: .1em 0 .1em 0;
}

h6 {
	color: #E18700; 
	font-size: 1em; 
	text-align: left; 
             line-height: 1em;
/* some air around the text */
	padding-left: 30px;
	padding-top: 1em;
	padding-bottom: 0;
	padding-right: 0;
/* and some air under the border */
        margin: 1em 0 1em 0;
}


/* END HEADINGS */

/* TEXT */
p {
   font-size: .84em;
   margin: 0 2.5em 1.5em 3em; /* some air around p elements */
   line-height: 2em;
   padding: 0 .2em 0 0;
   color: #1d1d1d;
}

div#customerquote {
   margin-top: 20px; 
   margin-left: 7px; 
   margin-right: 0;
   background: #ffffff url(images/killarneyhostel/customerquotes.jpg) no-repeat 0px 0px; 
}

div#customerpad {
   color: #dd8c0d;
   padding-top: 52px;      
   padding-right: 3px;      
   padding-left: 1px;
   display:block;
}

div#customerquote p {
   color: #dd8c0d;
   font-size: 11px;
   text-align: left;
   display:block;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   margin: 0 0 0 4em;
   padding:0;
   color: #1d1d1d;
   font-size: 13px;
}

div#main ul li,
div#main ol li {
   padding: .2em;
   padding-top:0;
   color: #1d1d1d;
   list-style-type:disc;
}

div#main ul li p {
padding:0;
margin:0;
   border:0;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}

div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}



div#footer ul {
   margin: 0 0 0em 0em;
   display:block;
}

div#top {
clear:both;
   width:100%;
   text-align:center;
   padding: 10px 0px 0em 0px; 
   border:0;
   margin: 0 0em 0em 0em;
}

div#bottom {
clear:both;
   width:100%;
   text-align:center;
}

div#footer ul li {
   margin: 0 0em 0em 0em;
   padding: 0 6px 0em 6px; 
   display:inline;
   list-style-type: none;   
}

div#top ul li img{
   margin: 0 0em 0em 0em;
   padding: 0 0px 0em 0px; 
   border:0;
}

/* END LISTS */


/* TABLES */
div#main table {
   display:table;
   margin: 0 0px 10px 35px; 
   padding: 20px 0 0 0;
   border: 0;
}

div#main table tr td p{
   font-size: .84em;
   margin: 0em 0em 0em 0em; 
   padding: 0 0 0 0;
   border:0;
}


.darkbar  {
	background-color: #f6f6d6;
margin:4px;
padding:2px;
}

.lightbar {
	background-color: #e3e3af;
margin:4px;
padding:2px;
}
/* END TABLES */

div#subhr {
   width:97.8%;
   float:right;
   text-align:left;
   padding-bottom:0 0 0 0 ;
   margin:0 0 .1em 0;
   display:inline;
   border-top: 1px solid #FF6600;
   height:1em;
}

/* FORMS */
.feedbacktable p {
   font-size: .84em;
   margin: 0 0 0 35px; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
   color: #1d1d1d;
}

.feedbacktable textarea {
   margin: 0 0 10px 35px; /* some air around p elements */
width:250px;
height:100px;
   color:#5f5f5f;
border:1px solid #92932b;
}

.ffsubmit {
   margin: 0 0 0 37px; /* some air around p elements */
width:100px;
   color: #1d1d1d;
border:1px solid #92932b;
float:left;
}

input {
   width:200px;
   margin: 0 0 10px 35px; /* some air around p elements */
padding:0;
border:0;
border:1px solid #92932b;
}


/* BOOKING FORM */
input.book {
   width:70px;
background-color:#ee8600;
border:1px #ee8600;   
color:#ffffff;
vertical-align:bottom;
margin:0;
padding:0;
margin-bottom:3px;
}

.bookform div,
.bookform p {
   font-size: 11px;
   margin: 0 0 0 3em; /* some air around p elements */
   padding: 0 0px 0 0;
   color: #666600;
   vertical-align:middle;
}

.bookform p span {
   margin: 0 0 0 5px; 
   padding: 0 0  0 0;
vertical-align:middle;
	}

.bookform a img {
   padding: 0 0  0 9px;
vertical-align:middle;
	}

select {
   font-size: 12px;
   color: #000000;
   margin-top: 0px;
   min-width:100px;
vertical-align:middle;
}

.date {
   font-size: 12px;
   margin-top: 0px;
padding:0;
vertical-align:middle;
}

.month {
   font-size: 12px;
   margin-top: 0px;
padding:0;
vertical-align:middle;
width:90px;
}


/* CALENDER STYLING */

a.calendar { font-size: 10px; font-family: Verdana, Arial, Helvetica; color: 444444; text-decoration: none }
a:hover.calendar { color: CC0000; text-decoration: none }
a.changedates { font-size: 10px; font-family: Verdana, Arial, Helvetica; color: 666666; text-decoration: underline; font-weight: bold }
a:hover.changedates { color: 006699; text-decoration: none }
a.calcontrol { font-size: 8pt; font-family: Verdana, Arial, Helvetica; color: 444444; font-weight: bold; text-decoration: none }

.BErooms { font-family: verdana, arial; font-size: 10px; color: #000000; }

.BEselect { font-family: verdana, arial; font-size: 11px; }
.BEbookingSelect { font-family: verdana, arial; font-size: 10px; background-color: #E7F4F8 }
.BEinput { font-family: verdana, arial; font-size: 10px; color: #FFFFFF; background-color: #336699 }
.BEformfont { font-family: verdana, arial; font-size: 10px; color: #000000; }

.BExxsmall { font-family: verdana, arial; font-size: 9px }
.BEsmall { font-family: verdana, arial, helvetica, sans-serif; font-size: 11px; line-height: 14px }
.BEmedium { font-family: verdana, arial; font-size: 11px}

.BEmediumWhite { font-family: verdana, arial; font-size: 11px; background-color: #FFFFFF}
.BEbgrndWhite {background-color: #FFFFFF}

.BElarge { font-family: verdana, arial; font-size: 12px }

.BEsmallBold { font-family: verdana, arial; font-size: 10px; font-weight: bold }
.BEmediumBold { font-family: verdana, arial; font-size: 11px; font-weight: bold }
.BElargeBold { font-family: verdana, arial; font-size: 13px; font-weight: bold }

.BEsmallCol { font-family: verdana, arial; font-size: 10px; color: #336699 }

.BEmediumBoldCol { font-family: verdana, arial; font-size: 11px; font-weight: bold; color: #336699 }
.BElargeBoldCol { font-family: verdana, arial; font-size: 13px; font-weight: bold; color: #336699 }

.BEmediumBoldWhite { font-family: verdana, arial; font-size: 11px; font-weight: bold; color: #FFFFFF }

/* CALENDER STYLING */
/* End of 'defaultpage' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
padding:0px;
margin:0px;
width:184px;
font-weight:normal;
background:#FFFFFF;
}

div#menu_vert ul {
border-top:0px solid #FFFFFF;
border-bottom:0px solid #FFFFFF;
background:#FFFFFF;
padding:0px 0 0px 0;
}



/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0em;
border-top:0px solid #F77E00;
border-bottom:0px solid #F77E00;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0 17px 0 17px;
   border-bottom: 0px solid #c0c0c0;
   font-size: 0.9em;   
   display: block;
}

#menu_vert ul ul li {
border-top:0px solid #F77E00;
border-bottom:0px solid #F77E00;
margin:0;
   padding: 0em 0em 0em 0em; 
background: url(uploads/images/arrow.gif) no-repeat center left;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
     padding: .8em 0.5em .8em 1.5em; /* some air for it */
   color: #5a5a06; /* this will be link color for all levels */
background: url(uploads/images/nav_bg.gif) no-repeat bottom left;
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   padding: 1.1em 0.5em 1.1em 3.5em; 
border-top:0px solid #F77E00;
border-bottom:0px solid #F77E00;
margin:0;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
background: url(uploads/images/nav_bg.gif) no-repeat bottom left;
border-top:0px solid #F77E00;
border-bottom:0px solid #F77E00;
}

/* hover state for all links */
div#menu_vert a:hover {
background: #ea5e00 url(uploads/images/nav_bg.gif) no-repeat bottom right;
color:#fff;
}

div#menu_vert ul ul a:hover {
background: #ea5e00 url(uploads/images/arrow.gif) no-repeat center left;
color: #18507C;
} 
div#menu_vert a.activeparent:hover {
   background-color: transparent;
   color: #18507C;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
background: url(uploads/images/nav_bg.gif) no-repeat bottom left;
   background-color: transparent;
font-weight:normal;
     padding: .8em 0.5em .8em 1.5em; /* some air for it */
color:#ea5e00;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #ea5e00;
   padding: 1.1em 0.5em 1.1em 3.5em; 
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
background: url(uploads/images/nav_bg.gif) no-repeat bottom left;
   background-color: transparent;
   display: block; 
       padding: .8em 0.5em .8em 1.5em; /* some air for it */
   color: #ea5e00;                               /* this will be link color for all levels */
   margin: 0;                                  /* as <h3> normally has some margin by default */
font-weight:normal;
   font-size: 1em                           /* instead of the normal font size for <h3> */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   padding: 0.8em 0.5em 0.8em 3.5em;

   background-color: transparent;
   border-bottom: none;
   color: #18507C;   
margin:0;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 1.1em 0.5em 1.1em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
   color: #18507C;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: normal;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

/* Start of CMSMS style sheet 'Forms' */
/* A CSS Framework by Mike Stenhouse of Content with Style, adapted to CMSMS by Daniel Westergren */

/* FORM ELEMENTS */
	form {
		margin:0;
		padding:0;
	}

	form p span {
   margin: 0 0 0 5px; 
   padding: 0 0  0 0;
vertical-align:middle;
	}

select {
   font-size: 12px;
   color: #000000;
   margin-top: 0px;
   min-width:50px;
vertical-align:top;
}

.date {
   font-size: 12px;
   margin-top: 0px;
vertical-align:middle;
}

/* END FORM ELEMENTS */

.ffsubmit {
   margin: 0 0 0 35px; /* some air around p elements */
width:100px;
color:#1d1d1d;
   border: 1px solid :#92932b;
}

.textfield
 {
   margin: 0 0 10px 35px; /* some air around p elements */
   border: 1px solid #92932b;
   padding:0;
   color:#1d1d1d;
}

.feedbacktable textarea {
   margin: 0 0 10px 35px; /* some air around p elements */
width:250px;
height:100px;
   color:#1d1d1d;
   border: 1px solid #92932b;
}


/* End of 'Forms' */

