/* Start of CMSMS style sheet 'bicyclesetc' */
/*****************
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: Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/

div {
   font-size: 12px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}


/*****************
links
*****************/

a {
   color: #CC0000;
   text-decoration: underline;
}

a:hover {
   color: #666666;
   text-decoration: none;
}

a:visited {
   color: #CC0000
   text-decoration: underline;
}

/*****************
basic layout 
*****************/
body {
   background: #FFFFFF url(images/cms/background.jpg) repeat-x 0 0px; 
   color: #000000;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   max-width: 800px; /* IE wont understand these, so we will use javascript magick */
   min-width: 800px;
   background-color: #fff;;
   color: black;
   min-height: 440px;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 79px; /* adjust according your image size */
   background: #CC0000;           
}

div#header h1 a {
/* you can set your own image here */
   background: #CC0000 url(images/cms/logo_bicyclesetc_header.jpg) no-repeat 0 0px; 
   display: block; 
   height: 79px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#content {
   margin: 1em 0 1em 0; /* some air above and under menu and content */
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #CC0000;
}

div#footer p {
   font-size: 9px;
   text-align: center; /* centered text */
   margin:0;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  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;
}

/********************
CONTENT STYLING
*********************/

/* TEXT */
p {
   font-size: 12px;
   line-height:1.4em;
}

#content ul {
   margin: 0 17px 0 26px;  /* some air around p elements */
   line-height:1.4em;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}

pre {
   font-family: monospace;
   font-size: 1.0em;
}

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%;   /* smaller font size, as these are usually not so important data */
}

#homeimage {
   padding-top: 0px;
   text-align: center;
   width: 590px;
   height: 370px;
}
/* End of 'bicyclesetc' */

/* Start of CMSMS style sheet 'Navigation - Primary' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
   background: url(images/cms/background_navigation.gif) center repeat-x;
   border: 1px solid #000000;
   border-width: 1px 0;
   width: 100%;
   margin: 0;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
   height:2.2em;
}

/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
}

/* the links, that is each list item */
div#menu_horiz a {
   font-weight: bold;
   padding: .6em 1.8em .6em 1.8em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #000000;
   display: block; /* IE has problems with this, fixed above */
}

/* hover state for links */
div#menu_horiz li a:hover {
    text-decoration: underline; /* no underline for links */
    color: #333333;
    font-weight: bold;
}
/* hover state for links */
div#menu_horiz li a:active {
    text-decoration: none; /* no underline for links */
    color: #CC0000;
    font-weight: bold;
}

div#menu_horiz a.activeparent:hover {
   color: #CC0000;
   text-decoration: underline; /* no underline for links */
   font-weight: bold;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   font-weight: bold;
   color: #CC0000;
}
div#menu_horiz h3 {
   padding: .6em 1.8em .6em 1.8em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #CC0000;
   display: block; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}

.currentpage {
  padding: .6em 1.8em .6em 1.8em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #CC0000;
   font-weight: bold;
}
/* End of 'Navigation - Primary' */

/* Start of CMSMS style sheet 'Navigation - Secondary' */
/********************
Navigation - Secondary
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/

#navigation_secondary {
        margin: 0 auto;
	padding: 0;
	padding-bottom: 30px;
	width: 100%;
	display: block;
}

#navigation_secondary h1 {
	color: #000;
	float: left;
	display: inline;
	font-size: 26px;
	line-height: 1em;
	margin-left: 0px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/

#navigation_secondary ul#submenu ul {
   float: left;
   display: inline;
   list-style: none;
   margin: 0;
   margin-top: 9px;
   margin-left: 11px;
   padding: 0;
   position: relative;
   z-index: 9001;
}

/* submenu list items */
#navigation_secondary ul#submenu li {
   list-style: none; /* hides the list bullet */ 
   float: left;
   display: inline;
   font-size: 12px;
}

/* the links, that is each list item */
#navigation_secondary ul#submenu li a {
   color: #CC0000;
   text-decoration: none;
   float: left;
   display: inline;
   padding: 0px 9px;
   border-left: 1px solid #cccccc;
}

/* hover state for links */
#navigation_secondary ul#submenu li a:hover {
   color: #666666;
   text-decoration:underline;
}

/* hover state for links */
#navigation_secondary ul#submenu li a:active {
   color: #CC0000;
   text-decoration:none;
}

#navigation_secondary .currentpage {
   border-left: 1px solid #cccccc;
   padding: 0px 9px;
   text-decoration: none; /* no underline for links */
   color: #000000;
   font-weight: 400;
}
/* End of 'Navigation - Secondary' */

/* Start of CMSMS style sheet 'Featured Item' */
div#BlankOfTheMonth {
  margin-bottom: 5px;  
  background-color: #FFFFFF;
  width: 200px;
  height: 206px;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #CCCCCC;
}

div#BlankOfTheMonth p{
  color: #666666;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
    line-height: 110%;
}

div#BlankOfTheMonth h2 {
   line-height: 24px;
   color: #333333;
   margin: 0 0 0 0px;
   padding-left: 7px;
   font-size: 15px;
   font-family: Arial, Helvetica, sans-serif;
}

.BlankOfTheMonthSummary {
    color: #666666;
    padding: 0; /* padding for the news article summary */
    margin: 0; /* margin to the bottom of the news article summary */
    font-family: Arial, Helvetica, sans-serif;
    line-height: 110%;
}

.BlankOfTheMonthSummary a{
    text-decoration: none;
}

.BlankOfTheMonthSummaryPostdate {
    font-size: 12px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
 }

.BlankOfTheMonthSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
    font-family: Arial, Helvetica, sans-serif;
}

.BlankOfTheMonthSummaryCategory {
    font-style: italic;
    margin: 0px 0;
    font-family: Arial, Helvetica, sans-serif;
 }

.BlankOfTheMonthSummaryAuthor {
    font-style: italic;
    padding-bottom: 0.5em;
    font-family: Arial, Helvetica, sans-serif;
}

.BlankOfTheMonthSummarySummary, .BlankOfTheMonthSummaryContent {
    line-height: 110%;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 7px;
 }

.BlankOfTheMonthSummaryMorelink {
    margin-left: 7px;
    text-decoration: none;
    color: #CC0000;
    
}

#BlankOfTheMonthPostDetailDate {
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  }

#BlankOfTheMonthPostDetailSummary {
   line-height: 110%;
   font-family: Arial, Helvetica, sans-serif;
   }

#BlankOfTheMonthDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#BlankOfTheMonthPostDetailContent {
  margin-top: 0px
  margin-bottom: 15px;
  margin-left: 15px;
  line-height: 150%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  }

#BlankOfTheMonthPostDetailAuthor {
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 1.5em;
  font-style: italic;
}

#BlankOfTheMonthPostDetailReturnLink {
  margin-top: 0px
  margin-bottom: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
*/
/* End of 'Featured Item' */

/* Start of CMSMS style sheet 'Calendar CSS example' */
/*
Example stylesheet for Calendar module

For using this "big"-class insert something like this in your page
or template;

{cms_module module='Calendar' table_id='big'}

*/

.calendar-month {
   font-family: arial, helvetica, sans-serif;
   font-size: 18px;
   margin-bottom: 11px;
}

.calendar tr {
   font-family: arial, helvetica, sans-serif;
   font-size:12px;
}

/* make all links red */
.calendar tr td a
{
  color: #CC0000;
}

/* highlight "today" for the small calendar */
.calendar-today
{
   font-family: arial, helvetica, sans-serif;
  font-weight: bold;
}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title
{
  display: none;
}

.calendar-upcominglist {
  color: #666666;
  background-color: #FFFFFF;
  width: 200px;
  height: 155px;
  margin: 0 0 0 0px;
  border: 1px solid #cccccc;
}

.calendar-upcominglist a{
  padding-left: 7px;
  padding-bottom: 7px;
  text-decoration: none;
}

.calendar-upcominglist h2 {
   line-height: 24px;
   color: #333333;
   margin: 0 0 0 0px;
   margin-bottom: 7px;
   padding-left: 7px;
   font-size: 15px;
   font-family: Arial, Helvetica, sans-serif;
   width: 200px;
}

.calendar-upcominglist .calendar-date-uc {
  font-weight: normal;
}

.calendar-upcominglist .calendar-event
{
  margin-bottom: 0px;
  padding-left: 7px;
  width: 200px;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
  color: #CC0000;
  font-size: 100%;
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 100%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
   font-family: arial, helvetica, sans-serif;
  margin: 0px;
  border-collapse:    collapse;
  border: 1px solid black;
}

/* nice squares for the #big table */
#big th
{
   background: url(images/cms/background_navigation.gif) center repeat-x;
  font-family: arial, helvetica, sans-serif;
  border: 1px solid black;
  padding: 3px;
  width: 110px;
  height: 24px;
  
}

#big td {
   font-family: arial, helvetica, sans-serif;
  border: 1px solid black;
  vertical-align: top;
  padding: 3px;
  height: 110px;
  width: 110px;
}

/* format summaries nicely in #big */
#big ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #big */
#big td
{
  background-color: white;
}

#big .calendar-day
{
  background-color: #FFFFCC;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #FFFFCC;
}

.calendar-event .calendar-date-title {
  font-weight: 400;
}


.calendar-event .calendar-date-from {
  font-weight: 400;
} 

.calendar-event H1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
/* End of 'Calendar CSS example' */

