.calendarlink
{
	font-weight:normal;
	color: black;
}

/* I stole these from the ClubWebSite sample */

/* A full width block on the page */

.fullwidth, #loginbanner
{
/*
    border: 1px solid #DBDB79;
 */
    border: 1px solid black;
    width: 694px;
    margin-right: auto;
    margin-left: auto;
/*
    background: #FEFFAB url(images/background_fullwidth.jpg) repeat-y;
 */
    background: white;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

/* for the login block
    picks up most of its properties from .fullwidth */

#loginbanner
{
  padding-bottom: 0px;
}

/* Goes around controls that need to be presented as a block of functionality  */
.controlblock
{
    border: 1px solid #DBDB79;
    padding: 3px;
    margin: 2px 0 5px 0;
    vertical-align: top;
}

/* shows a visual seperation */
.dashedline
{
    border-bottom: 1px dashed #DBCE6A;
    padding-top: 10px;
    margin-bottom: 10px;
    clear:right;
}

/* Command buttons on pages */
.actionbuttons
{
  text-align:right;
  position: relative; 
  padding: 1px 1px 1px 1px;
}

/************************************************************************
* 
* Calendar specific formatting 
*
************************************************************************/

/* Surrounds the calendar */
/*(dec) this controls the inner border style */
.eventmonth
{
/*
    border: 1px solid #DBDB79;
    width: 694px;
    margin-right: auto;
    margin-left: auto;
    background: #FEFFAB url(images/background_fullwidth.jpg) repeat-y;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    text-align: center;
 */
/* no inner border
    border: 1px dashed black;
 */
    width: 694px;
    margin-right: auto;
    margin-left: auto;
    background: white;
    text-align: center;
}

/* used as the cssclass of the actual calendar */
/*(dec) I'm not sure what this controls */
.eventmonthtable
{
    width: 694px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-bottom: 15px;
/*
    border: 1px solid #DBDB79;
 */
    border: 1px solid black;
    border-collapse:collapse;
}

.dayNumber
{
    float: right;
/*
    border-bottom: 1px solid #C7C272;
    border-left: 1px solid #C7C272;
 */
    border-bottom: 1px black;
    border-left: 1px black;
    clear: none;
    padding: 2px;
}

.calcurrentmonth
{
    /* no styles needed at this time */
    font-weight: bold;
}
.calothermonth
{
/*
    background-color: #DCD78E;
 */
/*
    background-color: gray;
 */
	color: gray;
}
.calcurrentday
{
/*
    background-color: #FFFFC1;
 */
    background-color: silver;
    font-weight: bold;
}
.calweekend
{
/*
    background-color: #FEEB95;
 */
/*
    background-color: silver;
 */
	font-weight: bold;
  /*  width: 15%; */
}

.calcurrentmonth , .calcurrentmonth , .calothermonth , .calcurrentday , .calweekend
{
    text-align: left;
/*
    border: 2px solid #C7C272;
    height: 60px;
 */
    border: 1px solid black;
    height: 100px;
    vertical-align: top;
    /* needed for positioning the dayNumber part */
    position:relative;
     border-collapse:separate;
     border-spacing: 5px;
}

/************************************************************************
* 
* Next / previous specific formatting 
*
************************************************************************/

.nextlink
{
    position:absolute;
    right:0;
    padding-right:15px;    
}

/* End of ClubWebSite theft */