
/*
	The class Selector (.)
		To select elements with a specific class, write a
		period (.) character, followed by the name of the class.
*/

/*
	The id Selector (#)
		To select an element with a specific id, write a
		hash (#) character, followed by the id of the element.
		All of the id's should be unique in a DOM document
*/


.mdr_centerDiv
	{
		text-align: center
	}

.mdrLink
	{
		cursor:           pointer;
		color:            blue;
		text-decoration:  underline;
	}


body
	{
		background-color: #F8F8F8;
	}

img.mdrNonClickableImg
	{
		border-style: none;
		border-width: 2px;
	}

img.mdrClickableImg
	{
		border-style: solid;
		border-width: 2px;
	}

img
	{
		width:      auto;
		height:     auto;
		max-width:  100%;
		
	/*	margin-top: 10px;	*/

	}

	
p.MDR_PageInfo
	{
	/*	border:1px solid;	*/
		margin-left: 0.25in;
		margin-right: 0.25in;
		text-align: left;
	}

p.MDR_Photo_List
	{
		max-width: 600px ;
	/*	margin: auto;			/* to Center */
	/*	or */
		margin-left: 20px;
	/*	background: #73AD21;	*/
	}

div.MDR_Photo_List
	{
		max-width: 600px ;
		margin: auto;
	/*	margin: auto;			/* to Center */
	/*	or */
		margin-left: 20px;
	/*	background: #73AD21;	*/
	}


div.MDR_Photo_ListXXX
{
	background: #73AD21;
	max-width: 700px ;
	margin: auto;

	margin-top: 10px;
	margin-bottom: 20px;
	margin-right: 50px;
    margin-left: 100px;
	
}


