/* $Id: practicas.css 1255 2004-03-03 17:32:49Z luque $ */

/* Common style rules for Red Local website

   The stylesheet is divided into the following three parts:
   
   1. Layout rules: 
      Box properties (exclusive of borders), positioning, text-indent, alignment, lists
      
   2. Visual rules: 
      Colors, backgrounds, borders, links, emphasis
      
   3. Typographical rules: 
      Font and text properties (exclusive of links, alignment and text-indent)

   NOTE: Validate CSS syntax before add your changes to the CVS tree!!
*/

@import "common.css";

/* ------------------------- Layout rules ------------------------- */

.practice {
    width: 80%;
    padding: 1em;
    margin: 1.5em 0;
}

.practice h4 {
    margin: 0;
}

.practice .objectives ul {
    margin: 0 0 0 2em;
}

.practice .contact {
    width: 50%;
    float: right;
    padding: .5em;
}

.practice .wrapup {
    clear: both;
}

.hide {
    display: none;
}



/* -------------- Colors, backgrounds, borders, links ------------- */

.practice {
	background-color: #f7f7f7; 
	border: #e2e2e2 1px solid; 
}

.practice h4 {
    color: #900;
}

.practice .contact {
    color: #006;
	background-color: white; 
	border: #e2e2e2 1px solid; 
}

.practice .objectives {
    border-left: #d7bdb5 4px solid; 
}

/* Only Mozilla-based */

.practice {
	-moz-border-radius: 15px;
}

.practice .contact {
	-moz-border-radius: 10px;
}


/* ----------------------- Typographical rules -------------------- */

.practice h4 {
    font-weight: bold;
    font-variant: small-caps;
}

.practice .contact {
    font-size: 85%;
    line-height: 140%;
}

.practice .contact .department {
    font-weight: bold;
}