
/* 

Notes: This is the CSS stylesheet for e-space.

.all-round-box sets a border and box-shadow around all content. 

Use the class .text on the BODY tag to set the properties of the fontface and size for the entire page.
If you wish to adjust the text size or appearance, adapt or rewrite .text or create a new class here.

The class .headline found here sets color, border font-size (medium), font-weight (normal), and placement on page for all elements but makes it larger.

Attribution: This is all standard CSS. Feel free to use any of this stylesheet without attribution for any purposes.

*/ 

/* 			SETTINGS FOR ENTIRE PAGE!

These settings affect the whole page.

*/


.courier-indent {

  font-family: "Lucida Console", "Courier New", monospace;
  text-indent: 3%;
 
}

.large-courier {

  font-family: "Lucida Console", "Courier New", monospace;
  font-size: large;
 
}

.x-large-courier {

  font-family: "Lucida Console", "Courier New", monospace;
  font-size: x-large;
 
}

.indent {

  text-indent: 3%;

}

.all-round-box {

    margin: 3%;
    padding: 1% 1% 2% 1%;
  	-moz-box-shadow:    5px 5px 7px rgb(41,56,127);  /* Firefox 3.5 - 3.6 */
  	-webkit-box-shadow: 5px 5px 7px rgb(41,56,127);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  	box-shadow:         5px 5px 7px rgb(41,56,127);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    border-left: medium solid rgb(41,56,127);
    border-top: medium solid rgb(41,56,127);
    border-radius: 8px;
    width: 80%;

}

@font-face {

  font-family: BradleyHand;
    src: url(fonts/BRADHITC.TTF);
  
}


.headline {

  font-family: "BradleyHand";
  font-size: xxx-large;

}

.x-large-text {

	background-color: white;
    font-family: avenir, 'avenir next', helvetica, arial, sans-serif;
    font-size: x-large;
    color: rgb(41,56,127);
 
}

.large-text {

	background-color: white;
    font-family: avenir, 'avenir next', helvetica, arial, sans-serif;
    font-size: large;
    color: rgb(41,56,127);
 
}


.div-center {
  text-align: center;
}

.large-font {

	font-size: large;
	
}

. bold-font {

	font-weight: bold;

}

