/*****************************************************************************/
/* Basic formatting.                                                         */
/*****************************************************************************/
body {
    background-color: black;
    font-family: Arial;
    list-style-type: circle;
}

/*****************************************************************************/
/* Layout classes.                                                           */
/*****************************************************************************/
.shiftcontainer{
    position: relative;
    left: 5px; /*Number should match -left shadow depth below*/
    top: 5px; /*Number should match -top shadow depth below*/
    border: 5;
    padding: 5 5 5 5;
}

.shadowcontainer{
    background-color: #d1cfd0;
}

.shadowcontainer_300{
    width: 300px; /* container width*/
    background-color: #d1cfd0;
}

.innerdiv{
    /* Add container height here if desired */
    background-color: white;
    border: 1px solid gray;
    padding: 6px;
    position: relative;
    left: -5px; /*shadow depth*/
    top: -5px; /*shadow depth*/
}

.raised_module {
	float: left;
	padding-left:5px;
	padding-right:10px;
}

.message {
	text-align:     center;
	font-size:	    14px;
	border-style:	ridge;
	border-color:   green;
}
/*****************************************************************************/
/* Common classes.                                                           */
/*****************************************************************************/
.header {
	font-size: large;
}

/*****************************************************************************/
/* Classes for the links page.                                               */
/*****************************************************************************/
.links_group {
    padding: 5px 5px 5px 5px;
    float: left;
}

.link_shadowcontainer .innerdiv{
    /* Add container height here if desired */
    background-color: white;
    border: 1px solid gray;
    padding: 6px;
    position: relative;
    left: -5px; /*shadow depth*/
    top: -5px; /*shadow depth*/
}

/*****************************************************************************/
/* Apps Life page.                                                           */
/*****************************************************************************/
#life_app
{
position: relative;
left: 50px;
top: 100px;
}

#life_text
{
position: relative;
left: 50px;
top: 100px;
}

