/* index.css
 * the standard main stylesheet for www.christiancelebration.co.uk
 * by Richard Baker
 */
body {
	background: url(../images/banner1.jpg) repeat-x fixed;
	height: 100%;
	font-size: 11pt;
	font-family: "helvetica", "arial", "verdana", "dejavu", sans-serif;
}
#main {
	background-color: white;
	/*width: 65%;*/
	width: 802px;
	height: 100%;
	margin: 0 auto;
	padding: 5px;
}

/* menu */
ul#menu { /*main menu*/
	margin: 0;
	padding: 0;
	width: 100%;
	list-style-type: none;
	position: relative;
}
ul#menu li { /*items in the main menu*/
	float: left;
	display: block;
	width: 25%;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	border-right: 1px dashed black;
	text-indent: 5px;
	margin: -1px;
}
ul#menu li:hover {color: #007DBD; cursor: default;}
ul#menu li:hover ul {visibility: visible;}
ul#menu ul {/*sub-menus*/
	visibility: hidden;
	margin: 0;
	padding: 0;
	position: absolute;
	display: block;
	width: inherit;
	border: 1px solid black;
	background-color: white;
	color: black;
	z-index: 1;
}
ul#menu ul li {/*items in sub-menus*/
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-indent: 5px;
	width: 100%;
	display: block;
	border: none;
}
ul#menu ul li:hover {/*hovering on a sub-menu item*/
	background-color: #808080;
	color: #ffffff;
}

/* menu links */
ul#menu a:hover {color: #007DBD;}
ul#menu ul a:hover {color: #ffffff; background-color: #808080;}
ul#menu a, ul#menu a:visited {
	display: block;
	width: 100%;
	color: black;
	text-decoration: none;
}
ul#menu ul a, ul#menu ul a:visited {
	background-color: #ffffff;
	color: #808080;
	border-bottom: 1px dashed black;
}

/* images */
img {
	margin-bottom: 5px;
	border: none;
}
#imglogo {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	width: 800px;
}
#bigimg, img {
	width: 800px;
}

/* text */
p {margin-top:0;}
#top {font-size: 12pt;}
#maintext {
	position: relative;
	margin: 0;
	padding-bottom: 20px;
	width: 49%;
	background-color:transparent;
	float: left;
}
#rightimgs {
	margin: 0;
	padding: 0;
	width: 49%;
	background-color:transparent;
	float: right;
	height: 100%;
}
#footnote {
	width: 100%;
	font-size: 7pt;
	border-style: solid none;
	border-width: 1px;
	clear: both;
}

#info {
	width: 100%;
	border-collapse: collapse;
}
#info td {border: 1px solid black;}
.info {
	border: 1px black solid;
	font: inherit;
	background-color: #FFFFFF;
}

/* links */
a:link, a:visited {color: #007DBD;text-decoration: none;}
a:hover {color: #007DBD;text-decoration: underline;}
