
/* document list */

/**************************************************************************************
/* update the following classes to change the appearance of the recently updated pages list
/* drop-in control
/*************************************************************************************/

/* this is the class used on the outside container element for the updated pages list */
/* html example: <div class="UpdatedPages_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.UpdatedPages_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the inside container element for the  updated pages list */
/* html example: <div class="UpdatedPages_Wrapper"><div class="UpdatedPages"> */
.UpdatedPages {
	width: 100%;
	margin: 0;
	padding: 10px 0;
}

/* this is the class used on the html table that lists the  updated pages */
/* html example: <table border="0" cellspacing="0" class="Table"> */
.UpdatedPages .Table {
	width: 100%;
	border-bottom: solid 1px #999;
}

/* this is the class used on all html table rows */
/* html example: <tr class="Row"> */
.UpdatedPages .Row {}

/* this is the class changes formatting of .Row for the header row */
/* html example: <tr class="Row HeaderRow"> */
/* overrides .Row */
.UpdatedPages .HeaderRow {}

/* this is the class used on the container element for the page name heading */
/* html example: <tr class="Row HeaderRow"><td class="PageName"> */
.UpdatedPages .HeaderRow .PageName {
	width: 30%;
	margin: 0;
	padding: 2px 0;
	border-bottom: solid 1px #999;
	font-size: 10px;
	color: #999;
}

/* this is the class used on the container element for the page summary heading */
/* html example: <tr class="Row HeaderRow">...<td class="PageSummary"> */
.UpdatedPages .HeaderRow .PageSummary {
	width: 55%;
	margin: 0;
	padding: 2px 0;
	border-bottom: solid 1px #999;
	font-size: 10px;
	color: #999;
}

/* this is the class used on the container element for the last modified date heading */
/* html example: <tr class="Row HeaderRow">...<td class="LastModified"> */
.UpdatedPages .HeaderRow .LastModified {
	width: 15%;
	margin: 0;
	padding: 2px 0;
	border-bottom: solid 1px #999;
	font-size: 10px;
	color: #999;
	text-align: center;
}

/* this is the class used to change the formatting of .Row for each alternating row */
/* html example: <tr class="Row AlternateRow"> */
/** overrides .Row **/
.UpdatedPages .AlternateRow {
	background-color: #eee;
}

/* this is the class used on the container element for the page name */
/* html example: <tr class="Row"><td class="PageName"> */
.UpdatedPages .PageName {
	padding: 2px 0;
}

/* this is the class used on the link elements for the page name */
/* html example: <div class="PageName"><a href="..." title="About Us">About Us</a></div> */
.UpdatedPages .PageName a:link, .UpdatedPages .PageName a:active, .UpdatedPages .PageName a:visited {}
.UpdatedPages .PageName a:hover {}

/* this is the class used on the container element for the page summary */
/* html example: <tr class="Row"><td class="PageSummary"> */
.UpdatedPages .PageSummary {
	padding: 2px 0;
}

/* this is the class used on the container element for the last modified date */
/* html example: <tr class="Row"><td class="LastModified"> */
.UpdatedPages .LastModified {
	text-align: center;
}

/* these are classes used to customize individual rows */
/* html example: <tr class="Row Row1"> */
/** row number starts at 1  */
.UpdatedPages .Row1 {}
.UpdatedPages .Row1 .PageName {}
.UpdatedPages .Row1 .PageSummary {}
.UpdatedPages .Row1 .LastModified {}
