/* YOU CAN ADD NON-WYMEDITOR RELATED STYLES HERE */

body {
  font-family: sans-serif;
}

h1 {
  font-size: 1.5em;
}

/* EDITOR RELATED STYLES - CUSTOMIZE FOR YOUR NEEDS */
/*
    The classes panel, the visual feedback and the preview
    will be affected by these values.
    
    - Commented styles inside style definitions are used for visual 
      feedback when using the editor.
    - Comments before opening the style are used as caption.
    - Comments after the class name and before the style declaration ({)
      define the jQuery expression that decides whether this 
      style should be applied or not.
      
    Note: the WYMeditor and /WYMeditor comments below are required
    for the CSS parser to work properly.
*/

/* WYMeditor */

/* PARA: Date */
.date p /* p */ {
  color: #ccf;
  /* background-color: #ff9; border: 2px solid #ee9; */
}

/* PARA: Hidden note */
p.hidden-note /* p[@class!="important"] */ {
     display: none;
    /* color: #999; border: 2px solid #ccc; */
}

/* PARA: Important */
p.important /* p[@class!="hidden-note"] */ {
    color: red; font-weight: bold;
    /* color: red; font-weight: bold; border: 2px solid red; */
}

/* PARA: Hanging Indent */
.hanging-indent /* p[@class!="hanging-indent"] */  {
  text-indent: -25px;
  margin-left: 45px;
	margin-top: 0px;
	margin-bottom: 0px;
  /* text-indent: -25px; margin-left: 30px; margin-top: 0px; margin-bottom: 0px; */
}


/* IMAGE: Border */
img.border /* img */ {
    border: 1px solid #ccc;
    /* border: 4px solid #ccc; */
}

/* LIST: Special */
ul.special,
ol.special /* ul,ol */ {
    color: green;
    /* background-color: #fc9; border: 2px solid red; */
}
/* LIST: Lower Alpha */
ul.lower-alpha,
ol.lower-alpha /* ul,ol */ {
    list-style: lower-alpha;
    /* list-style: lower-alpha; */
}
/* LIST: Upper Alpha */
ul.upper-alpha,
ol.upper-alpha /* ul,ol */ {
    list-style: upper-alpha;
    /* list-style: upper-alpha; */
}

/* LIST: Upper Roman */
ul.upper-roman,
ol.upper-roman /* ul,ol */ {
    list-style: upper-roman;
    /* list-style: upper-roman; */
}
/* LIST: Lower Roman */
ul.lower-roman,
ol.lower-roman /* ul,ol */ {
    list-style: lower-roman;
    /* list-style: lower-roman; */
}

/* /WYMeditor */
/* END EDITOR RELATED STYLES */


/* YOU CAN ADD NON-WYMEDITOR RELATED STYLES HERE */
