/*------------------------------------------------------------------------------------------------------------------------------
	
    Official UMass Amherst color palette. (Use named colors and abbreviate when possible.)

    Primary Colors:
    maroon: #881c1c  rgb( 136, 28, 28 )
    black:  black  rgb( 0, 0, 0 )
    white:  white  rgb( 255, 255, 255 )

    Secondary Colors:

    #94795d  rgb( 148, 121, 93 )
    #a89968  rgb( 168, 153, 104 )
    #63666a  rgb( 99, 102, 106 )
    #aca39a  rgb( 172, 163, 154 )
    #c69214  rgb( 198, 146, 20 )
    #b86125  rgb( 184, 97, 37 )
    #a8431e  rgb( 168, 67, 30 )
    #b3b995  rgb( 179, 185, 149 )
    #76881d  rgb( 118, 136, 29 )
    #003b5c  rgb( 0, 59, 92 )
    #5b7f95  rgb( 91, 127, 149 )
    #71b2c9  rgb( 113, 178, 201 )
    #5d2a2c  rgb( 93, 42, 44 )
    #41273b  rgb( 65, 39, 59 )

    Accent Colors
 
    #333     rgb( 51, 51, 51 ) 
    #666     rgb( 102, 102, 102 ) 
    #999     rgb( 153, 153, 153 ) 
    #aaa     rgb( 170, 170, 170 )
    #ccc     rgb( 204, 204, 204 )
    #eee     rgb( 238, 238, 238 )
    #beb395  rgb( 190, 179, 149 ) 
    #dbd3ba  rgb( 219, 211, 186 )
    #ece9d4  rgb( 236, 233, 212 )

*/

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
	color: #444;
	font-family: "Open Sans",Helvetica,Arial,sans-serif;
	font-size: 100%;      /* 16px */
	line-height:1.5;      /* 16px * 1.5 = 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) */
	-webkit-font-smoothing: subpixel-antialiased; /* fix text rendering in safari */
	font-weight: 400;
} 

#page { background: white; }


/* Typography -- see http://csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */

h1#site-name,
h2#site-slogan { font-family: "Open Sans",Helvetica,Arial,sans-serif; }

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
fieldset,
p,
table,
pre,
hr{
    margin: 0;
    margin-bottom:12px;
    margin-bottom:.75rem;
    font-weight: normal;
}

h1,.alpha{
    font-size:30px;
    font-size:1.875rem; /* 30px */
    line-height:1.2;    /* 36px */
}
h2,.beta{
    font-size:24px;
    font-size:1.5rem;   /* 24px */
    line-height:1;      /* 24px */
}
h3,.gamma{
    font-size:20px;
    font-size:1.25rem;  /* 20px */
    line-height:1.2;    /* 24px */
}
h4,.delta{
    font-size:18px;
    font-size:1.125rem; /* 18px */
    line-height:1.333;  /* 24px */
}
h5,.epsilon{
    font-size:16px;
    font-size:1rem;     /* 16px */
    line-height:1.5;    /* 24px */
}
h6,.zeta{
    font-size:16px;
    font-size:1rem;     /* 16px */
    line-height:1.5;    /* 24px */
}

small,.milli {
    font-size:12px;
    font-size:0.75rem;  /* 12px */
    line-height:2;      /* 24px */
}

h1, h2, h3 { font-weight: 700; }

p { margin: auto auto 1.5em; }

strong { font-weight: bold; }
em { font-style: italic; }

a { text-decoration: none; }

.article a,
.block a,
.view a { text-decoration: underline; }

.node-title a, 
.block-title a,
.menu a { text-decoration: none; }

a:link,
a:visited { color: #881c1c; }

a:hover, 
a.active:hover, 
a:focus, 
a.active:focus {
  color: black;
  text-decoration: none;
}