/* @override https://www.elon.edu/shell/960/css/screen.css */

/* @group Resets default browser CSS. https://www.elon.edu/shell/960/css/reset.css */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }


/* @end */

/* @group screen https://www.elon.edu/shell/960/css/screen.css */


/*  FORMS ----------------------------------------------------- 

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Customizations
-------------------------------------------------------------- */

label {
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
	font-size: 1.1em;
	color: #333;
	margin-right: .5em;
}

legend {
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
	text-transform: uppercase;
	color: #990000;
	font-size: 1.2em;
}


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title, 
textarea, select { 
  background-color:#fff; 
  border:1px solid #bbb; 
}
input[type=text]:focus, input[type=password]:focus, 
input.text:focus, input.title:focus, 
textarea:focus, select:focus { 
  border-color:#666; 
}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}

input.text, 
input.title   { /*width: 300px;*/ padding:5px; }
input.title   { font-size:1.5em; }
textarea      { /*width: 390px; height: 250px;*/ padding:5px; }

input[type=checkbox], input[type=radio], 
input.checkbox, input.radio { 
  position:relative; top:0em; 
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }

/* Customizations
-------------------------------------------------------------- */

form.inline input.button {
	margin-top: .75em;
}


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }



/* --------------------------------------------------------------

   BLUEPRINT CSS
    * Filename:        screen.css
    * Version:         0.8 (2009-03-01)
    * Website:         http://code.google.com/p/blueprintcss/

   Blueprint.css is licensed by the conditions of the MIT license.
   
   == STRUCTURE: ========================
    * Page width:            940 px
    * Number of columns:     12 
    * Column width:          60 px
    * Margin width:          20 px
   ======================================
   
   The blueprint grid is calculated as follows:
   Total width = (number_of_columns * column_width) - margin_width
      
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  margin: 0 auto;
}

 Misc classes and elements
-------------------------------------------------------------- 

/* In case you need to add a gutter above/below an element */
.prepend-top { 
  margin-top:1.5em; 
}
.append-bottom { 
  margin-bottom:1.5em; 
}

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  /*background: #E5ECF9;*/ 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
  content: "\0020"; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
  overflow:hidden; 
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
.left { float: left; }
.right { float: right; }

/* @end */

/* @group http://www.elon.edu/shell/960/css/typography.css */

/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

/* EDIT
--------------------------------------------------------------

-li ul, li ol {margin:0 1.5em;}
0
-ul, ol {margin:0 1.5em 1.5em 1.5em;}
0
+li ul, li ol {margin:0;}
0
+ul, ol {margin:0 1.5em 1.5em 0;padding-left:3.333em;}

-------------------------------------------------------------- */

li ul, 
li ol       { margin:0; }
ul, ol      { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
/*th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }*/


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }


/* @end */




/* @group base.css */

/* TEMPLATE BASE */

body {
	background: #f5f5f5;
}


/*
LAYOUT
-------------------------------------------------------- */

div#top_wrapper {
	width: auto;
	margin: 0 auto;
	position: relative;
}

br.clear {display: none;}



/* @end */



/* @group typography.css */

/*
COLOR REFERENCES
BODY BG: #F5F5F5
BODY COLOR: #444
LINKS: #990000
-------------------------------------------------------- */


body, table, tbody {	
	font: 12px/1.5em Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #444;
}

h1, h2, h3, h4, h5, h6, dt {
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
}

blockquote,q{
	quotes:none;
}
blockquote:before,blockquote:after,q:before,q:after{
	content:'';content:none;
}
:focus{
	outline:1px dotted;
}
abbr,acronym{
	border-bottom:1px dotted;
	cursor:help;
	text-transform: lowercase;
	font-variant:small-caps;
}
address,cite,em,i{
	font-style:italic;
}
blockquote p{
	margin:0 1.5em 1.5em;
	padding:0.75em;
}
code,kbd,tt{
	font-family:"Courier New", Courier, monospace;
	line-height:1;
	*line-height:1.5;
}
del{
	text-decoration:line-through;
}
dfn{
	border-bottom:1px dashed;
	font-style:italic;
}
dl{
	margin:0 0 1.5em;
}
dt{
	font-weight:700;
}
dd{
	padding-left:1.5em;
}
img{
	display:inline-block;
	vertical-align:bottom;
}
ins{
	text-decoration:overline;
}
p{
	font-weight:300;
	margin:0 0 1.5em;
}
pre{
	font-family:"Courier New",Courier,monospace;
	margin:0 0 1.5em;
	border:1px solid #ccc;
	overflow:auto;
	overflow-x:scroll;
	width:90%;
	padding:0 1em 1em 1em;
	background:#fff7f0;
	color:#000;
}

code{
	font-size:120%;
}

sub{
	top:0.4em;
	font-size:0.85em;
	line-height:1;
	position:relative;
	vertical-align:baseline;
}
sup{
	font-size:0.85em;
	line-height:1;
	position:relative;
	bottom:0.5em;
	vertical-align:baseline;
}
strong,b{
	font-weight:700;
}

/*LINKS
-------------------------------------------------------- */

a:link, a:active, a:visited {
	color: #900;
	text-decoration: none;
}

a:hover {
	color: #900000;
}

p a {text-decoration: none;border-bottom:1px solid #ccc; color: #A40006;}
p a:hover {border-bottom:1px solid #900; color: #900000;}

li a {
	color: #333;
	border-bottom: 1px solid #fff;
}

li a:hover, ul.faq li a:hover {
	color: #900000;
	border-bottom:1px solid #ccc;
}

/* read more linkage */

a.read_more {
	letter-spacing: normal;
	font-style: italic;
	text-transform: lowercase;
	border-bottom:1px solid #ccc;
	text-decoration: none;
}

/* LINK EMBELLISHMENTS */

a.arrow:before,
a.extra:before {
background-color: #fff;
content: url(https://www.elon.edu/images/e-web/master_templates/arrow_button.png);
height: 16px;
vertical-align: -3px;
padding-right: 8px;
}

h3 a.arrow, p a.arrow,
h3 a.extra, p a.extra {
	margin-left: 18px;
}

div.cms h1 a, div.cms h1 a:hover, div.cms h2 a, div.cms h2 a:hover, div.cms h3 a, div.cms h3 a:hover {
	border-bottom: none;
	color: inherit;
}

div.cms h3 a.arrow,
div.cms h3 a.extra {
	color: #990000;
	border-bottom: 1px solid #ccc;
}

div.cms h3 a.arrow:hover,
div.cms h3 a.extra:hover {
	border-bottom: 1px solid #990000;
}

/* @group Lists */

/*LISTS
-------------------------------------------------------- */

ul{
	list-style:square inside;
}

ol{
	list-style:decimal inside;
}

ul, ol {
	margin:0 0 1.5em;
	padding:0;
}

.cms ul, .cms ol {
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

.cms ul {
	list-style: disc outside;
	margin-left: 1.5em;
}

.cms ul ul {
	list-style-type: circle;
}

.cms ul ul ul {
	list-style-type: square;
}

.cms ol {
	list-style: decimal outside;
	margin-left:2em;
}

.cms ol ol {
	list-style-type: lower-alpha;
}

.cms ol ol ol {
	list-style-type: lower-roman;
}

.cms ol ol ol ol {
	list-style-type: square;
}

.cms ol ol ol ol ol {
	list-style-type: none;
}

/* HARVARD OUTLINE FORMAT */

ol.hrvd-outline {
	list-style-type: upper-roman;
}

ol.hrvd-outline ol {
	list-style-type: upper-alpha;
}

ol.hrvd-outline ol ol {
	list-style-type: decimal;
}

ol.hrvd-outline ol ol ol {
	list-style-type: lower-alpha;
}

ol.hrvd-outline ol ol ol ol {
	list-style-type: lower-roman;
}

/* HORIZONTAL ARRANGEMENTS */

ul.inline-list {
	/*float: left;*/
	/*clear: both;*/
	/*white-space: nowrap;*/
}

ul.inline-list li {
	/*float: left;*/
	display: inline;
	padding-left: 0px;
	padding-right: 8px;
	margin-top:.25em;
	margin-bottom: .25em;
	margin-right: .75em;
	border-right: 1px dotted #066
}


/* LIST EMBELLISHMENTS */

ul.arrows,
ul.extra {
	list-style-position: outside;
	list-style: none;
	margin-left: 0;
}

ul.arrows > li ul,
ul.extra > li ul {
	padding-top: .5em;
}

ul.arrows > li,
ul.extra > li {
	background: url(https://www.elon.edu/images/e-web/master_templates/arrow_button.png) top left no-repeat;
	padding-left: 24px;
	margin: .5em .25em .5em 0;
}

ul.extra.inline-list {
	margin-left: -.5em;
}

.extra.inline-list li {
	padding-left: 24px;
	margin-left:.5em;
}

ul.arrows a,
ul.extra a {
	margin-left: 0;
	padding-left: 0;
	/*padding-bottom: 1px;*/
}

ul.arrows a,
ul.extra a {
	/*color: #990000;*/
	border-bottom: 1px solid #ccc;
}

ul.arrows a:hover,
ul.extra a:hover {
	/*color: #990000;*/
	border-bottom:1px solid #990000;
}

h3 + ul.arrows li,
h3 + ul.extra li {
	margin-left: 1.5em;
}

ul.faq li a {
	color: #333;
	border-bottom: 1px solid #fff;
}

/* DEFINITION LISTS */

dl > dt {
	margin-bottom: .25em;
}

dl > dd + dt {
	background: url(https://www.elon.edu/images/e-web/master_templates/hr-1dot.gif) repeat-x top;
	margin-top: .5em;
	padding-top: .75em;
	margin-bottom: .25em;
}

/* @end */



/*PARAGRAPHS
-------------------------------------------------------- */

/* Styles an introductory paragraph, similar to newspapers. Assign this class to the first paragraph in an article */
p.intro:first-line{
	font-variant:small-caps;
	font-weight: bold;
}
/* Styles a drop cap on each paragraph with this class */
p.drop:first-letter{
	/*float:left;
	font-size:3.3em;*/
	/*margin-top:.2em;*/
	/*margin-right:0.1em;*/
	/*margin-bottom:-0.05em;*/
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
	font-weight: bold;
	/*line-height: .9em;*/
	/*padding-bottom: .10em;*/
	/*background-color: pink;*/
	font-size: 4.2em;
    float: left;
    line-height: 0.6em;
    margin: 0.13em 0.13em 0.13em 0;
}
/*HEADINGS
-------------------------------------------------------- */

h1, h2, h4, h6 {
	color: #990000;
}

h3, h5 {
	color: #444;
}

h1, h2, h3, h4, h5 {
	font-weight: bold;
}

h1{
	width: 100% !important;
	font-size:2em;
	font-weight:700;
	margin:.25em 0 .75em;
	letter-spacing: -.04em;
}

h2{
	font-size:1.6em;
	margin:0 0 1em;
	letter-spacing: -.04em;
	/*text-transform: lowercase;*/
}

h3, dt{
	font-size:1.1666em;
	margin:0 0 1.285em;
	line-height: 1.25em;
}
h4{
	font-size:1em;
	margin:0 0 1.5em;
}
h5{
	font-size:1em;
	margin:0 0 1.5em;
}
h6{
	font-size:1em;
	margin:0 0 1.5em;
}

/* HEADER EMBELLISHMENTS */

.cms h1 {
	background: url(https://www.elon.edu/images/e-web/master_templates/hr-3dot.gif) repeat-x bottom;
	padding-bottom:.25em
}

.cms h2.strong,
.cms h2.extra {
	background:url(https://www.elon.edu/images/e-web/master_templates/hr-2dot.gif) repeat-x bottom;
	padding-bottom:.25em;
	margin-top: 2em;
}

/*TRIMMINGS
-------------------------------------------------------- */

.amp {
	font-family:Baskerville, "Goudy Old Style", Palatino, "Book Antiqua",
	"URW Chancery L", Gentium, serif;
	font-style:italic;
	font-weight: normal;
}

.caps, .smallcaps {
  font-variant: small-caps; 
  letter-spacing: 1px; 
  text-transform: lowercase; 
  font-size:1.2em;
  line-height:1%;
  padding-left: 2px;
}

.quo{
	font-family:Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
}
.lquo{
	font-family:Georgia, Gentium, "Times New Roman", Times, serif;
	margin:0 0 0 -0.55em;
}

/* PULLQUOTES */

.pullquote {
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
	font-size:1.1666em;
	margin: 1.5em .5em;
	line-height: 1.25em;
	font-weight: bold;
	color: #990000;
	border-bottom: 1px dotted #b0b0b0;
}

.pullquote p {
	font: 12px/1.5em Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #666;
	margin: 0 .744em .744em 1.5em;
}

/* @end */

/* @group Tables
 */

/*TABLES (still need 'cellspacing="0"' in the markup)
-------------------------------------------------------- */

table{
	border-collapse:collapse;
	border-spacing:0;
	margin:0 0 1.5em;
	padding:0;
}

caption{
	font-style:italic;
	text-align:left;
}

tr.alt td{
	background:#eee;
}

td{
	/*border:1px solid #000;*/
	padding:0.333em;
	vertical-align:middle;
}

th{
	font-weight:700;
	padding:0.333em;
	vertical-align:middle;
}

.cms table {
	border-collapse:collapse;
	border:1px solid #999;
	color:#555;
	background:#fff;
	font:normal 12px/1.5 Geneva,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.cms table td {
	border: 1px dotted #b0b0b0;
	font-size: 0.916667em;
	line-height: 1.636364em;
	padding: .5em .75em;
	vertical-align: top;
	text-align: left;
}

/* EVEN ROW STYLES
---------------------------------------------- */
.cms table tr.even td {
	background: #fff;
}

.cms table tr.even:hover td {
	background: #d7d7d7;
}

/*table tr.even td:hover {
	background: #e3e3e3;
}*/

/* EVEN ROW STYLES
---------------------------------------------- */

/*table tr.odd td {
	background: #f7f7f7;
}*/

.cms table tr.odd:hover td {
	background: #d3d3d3;
}

/*table tr.odd td:hover {
	background: #dfdfdf;
}*/

.cms table tr.odd td {
	background: #f5f5f5;
}

.cms table.cell-highlight tr.even td:hover, .cms table.cell-highlight tr.odd td:hover {
	background: yellow;
}

/* TABLE HEAD AND FOOT
----------------------------------------------- */

.cms table th {
	font: bold 1.166em/1.285 Cambria,'Hoefler Text',Utopia,'Palatino Linotype',Palatino,Times,'Times New Roman',Georgia, serif;
	/*font-size:1.166em;
	line-height:1.285em;*/
	padding:.4em .5em;
	color:#444;
	border: 1px solid #999;
	background: #e0e0e0;
	white-space: nowrap;
	vertical-align: top;
	text-align: left;
}

.cms table tr th a:link, .cms table tr th a:visited, .cms table tr th a:active, .cms table tr th a:hover,
.cms table tr th:hover a:link, .cms table tr th:hover a:visited, .cms table tr th:hover a:active, .cms table tr th:hover a:hover {
	color: #444;
}

/*table tr th a:link, table tr th:hover a:hover {
	color: #444;
}*/

.cms table.plain tr.odd td, .cms table.plain tr.even td {
	background: #fff !important;
}

/*IMAGERY
-------------------------------------------------------- */

.img-top {
	margin-bottom: 15px;
	border:0;
	/*border-top: 1px solid #d0d0d0;
	border-bottom: 3px double #d0d0d0;*/
	padding-bottom: 3px;
	padding-top: 2px;
	float: none;
}

.img-bottom {
	margin-top: 15px;
	border:0;
	/*border-bottom: 1px solid #d0d0d0;
	border-top: 3px double #d0d0d0;*/
	padding-top: 3px;
	padding-bottom: 2px;
	float:  none;
}

table img.img-left, table img.img-top-left, table img.img-right, table img.img-top-right, table img.img-top {
	margin-top: 0;
}

img{
	font-size:1em;
}
.img-left, .img-top-left, img.left-img, .blurb_img img, .entrydesc img { /* Float any image to the LEFT and give it some margin */
	font-size:1em;
	float:left;
	padding:4px;
	border:1px solid #ccc;
	margin-bottom:1.8em;
	margin-right:2em;
	margin-top:0.3em;
}
.img-right, .img-top-right, img.right-img{ /* Float any image to the RIGHT and give it some margin */
	font-size:1em;
	float:right;
	padding:4px;
	border:1px solid #ccc;
	margin-bottom:1.8em;
	margin-left:2em;
	margin-top:0.3em;
}

/* @end */

/* @group footer.css */

/* ------------------------------
 		 TEMPLATES FOOTER
 ----------------------------- */
 
div#footer {
	text-align: center;
	position: relative;
	background: url(https://www.elon.edu/images/e-web/master_templates/footer_bg.png) repeat-x;
	width: 100% !important;
}
 
div#footer a:link,  div#footer a:active,  div#footer a:visited {
	color: #900;
	text-decoration: none;
}

div#footer a:hover {
	color: #900000;
}

div#footer p a {text-decoration: none;border-bottom:1px solid #ccc; color: #A40006;}

div#footer p a:hover {border-bottom:1px solid #900; color: #900000;}

div#footer p {
	font: 12px/1.5em Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 1.5em 0 3em 0;
	text-align: left;
	color: #797979;
}

div#footer p.footer_address {
	float: left;
}

div#footer p.footer_links {
	float: right;
	text-align: right;
}

/* @end */

/* @group top-imagery.css */

/* SECOND LEVEL TOP IMGAREY */

div#top_imagery {
	height: 316px;
	margin-bottom: 20px;
	position: relative;
}

#top-images, #top-images li {
	list-style:none;
	list-style-position: outside;
	margin: 0;padding: 0;
}

#top-images li{
	display:none;
}

img.title_banner {
	position: absolute;
	top: 190px;
	left: -19px;
}

img#adm_badge {
	position: absolute;
	top: 20px;
	right: -68px;
}

/* @end */

/* @group box.css */

div.box {
  padding: 0;
  margin-bottom: 20px;
}

.innerContent {
	padding: 1.2em 1.25em .3em;
	overflow: hidden;
}

.innerHead, .innerFoot {
	padding: .25em 1em .11em 1em;
}

.innerHead h2, .innerHead h1 {
	line-height: 1em;
	margin-top: 0;
	margin-bottom: 3px;
}

div.innerHead h2 a, div.innerHead h2 a:hover {
	border-bottom: none;
}

.innerHead p, .innerFoot p {
	margin: 0;
}

.innerHead a.read_more {
	float: right;
	margin-top: -1.5em;
	border-bottom: transparent !important;
}

div.boxContent a {text-decoration: none;border-bottom:1px solid #ccc; color: #A40006;}
div.boxContent a:hover {border-bottom:1px solid #900; color: #900000;}

/* @group Basic Box */

/* Basic Box */

.boxContent {
	background:#fff;
	border-left:1px solid #b0b0b0;
	border-right:1px solid #b0b0b0;
}

.basic .boxHeader {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TR.gif) 100% 0 repeat-x;
}

.basic .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TL.gif) 0 0 no-repeat;
}

.basic .boxFooter {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BR.gif) 100% 0 repeat-x;
}

.basic .boxFooter div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BL.gif) 0 0 no-repeat;
}

.basic .innerHead {
	background-color: #fff;
	border-bottom: 1px solid #b0b0b0;
}

.basic .innerFoot {
	background-color: #fff;
	text-align: right;
	border-top: 1px solid #b0b0b0;
}

.basic .footer .boxHeader {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TR.gif) 100% 0 repeat-x;
}

.basic .footer .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TL.gif) 0 0 no-repeat;
}


/* @end */

/* @group Primary Box */

/* Primary Box */

.primary .boxHeader {
	height:4px;
	overflow:hidden;
	background: url(https://www.elon.edu/images/e-web/master_templates/boxes/primary/TR.gif) 100% 0 repeat-x;
}

.primary .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/primary/TL.gif) 0 0 no-repeat;
}

.primary .boxFooter {
	height:4px;
	overflow:hidden;
	background: url(https://www.elon.edu/images/e-web/master_templates/boxes/primary/BR.gif) 100% 0 repeat-x;
}

.primary .boxFooter div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/primary/BL.gif) 0 0 no-repeat;
}

.primary .innerHead {
	background-color: #e4e4e4;
	border-bottom: 1px solid #b0b0b0;
}

.primary .innerFoot {
	background-color: #e4e4e4;
	text-align: right;
	border-top: 1px solid #b0b0b0;
}

/* Primary Header w/Basic .boxFooter */

.primary.header .boxFooter {
	background: url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BR.gif) 100% 0 repeat-x;
}

.primary.header .boxFooter div {
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BL.gif) 0 0 no-repeat;
}


/* Primary Footer w/Basic .boxHeader */

.primary.footer .boxHeader {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TR.gif) 100% 0 repeat-x;
}

.primary.footer .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TL.gif) 0 0 no-repeat;
}


/* @end */

/* @group Secondary Box */

/* Secondary Box */

.secondary.box .boxHeader {
	height:4px;
	overflow:hidden;
	background: url(https://www.elon.edu/images/e-web/master_templates/boxes/secondary/TR.gif) 100% 0 repeat-x;
}

.secondary.box .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/secondary/TL.gif) 0 0 no-repeat;
}

.secondary.box .boxFooter {
	height:4px;
	overflow:hidden;
	background: url(https://www.elon.edu/images/e-web/master_templates/boxes/secondary/BR.gif) 100% 0 repeat-x;
}

.secondary.box .boxFooter div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/secondary/BL.gif) 0 0 no-repeat;
}

.secondary .innerHead {
	background-color: #e8e8e8;
	border-bottom: 1px solid #b0b0b0;
}

.secondary .innerFoot {
	background-color: #e8e8e8;
	text-align: right;
	border-top: 1px solid #b0b0b0;
}

/* @end */

/* @group Tertiary Box */

/* Tertiary Box */

.boxContent {
	background:#fff;
	border-left:1px solid #b0b0b0;
	border-right:1px solid #b0b0b0;
}

.tertiary .boxHeader {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TR.gif) 100% 0 repeat-x;
}

.tertiary .boxHeader div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/TL.gif) 0 0 no-repeat;
}

.tertiary .boxFooter {
	height:4px;
	overflow:hidden;
	background:url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BR.gif) 100% 0 repeat-x;
}

.tertiary .boxFooter div {
	height:4px;
	width:4px;
	background:#fff url(https://www.elon.edu/images/e-web/master_templates/boxes/basic/BL.gif) 0 0 no-repeat;
}

.tertiary .innerHead {
	background-color: #fff;
	border-bottom: 1px solid #b0b0b0;
}

.tertiary .innerFoot {
	background-color: #fff;
	border-top: 1px solid #b0b0b0;
}

/* @end */

/* @group Icon Boxes */

/* ICON BOXES */

.icons .innerContent {
	padding: 1em .5em;
}

/* @end */

/* @group Ad Boxes */

.adbox .innerContent {
	padding: 0;
	text-align: center;
}

.adbox p {
	margin-bottom: 0;
}

/* @end */

/* @group Media Boxes */

.mediabox .innerContent, .mediabox .innerContent p {
	padding: 0;
}

.mediabox .innerContent p {
	margin: 0;
}

.box.media .innerContent {
	padding: 0;
}

.box.media .innerContent img {
	width: 100%;
}

/* @group Video Boxes */

/* VIDEO BOXES */

.vidbox .innerContent {
	padding: 6px;
}

.vidbox .innerContent a {border-bottom:none;}
.vidbox .innerContent a:hover {border-bottom:none;}

.vidbox.deluxe .innerContent {
	padding: 0;
}

/* @group Video Sizing Adjustments */

/* @group Basic Video Box Players */

/* BASIC VIDEO BOX (WITH A HEADER *OR* FOOTER *OR* NEITHER ) */

.vidbox a.player {
	display: block;
	text-align: center;
}

.span-4.vidbox a.player {
	width: 286px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height:238px;		/* 4:3 ratio + 24px for controlbar */
}

.span-8.vidbox a.player {
	width: 606px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height: 478px;		/* 4:3 ratio + 24px for controlbar */
}

.span-9.vidbox a.player {
	width: 686px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height: 514px;		/* 4:3 ratio + 24px for controlbar */
}

.span-12.vidbox a.player {
	width: 926px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height: 718px;		/* 4:3 ratio + 24px for controlbar */
}



/* BASIC VIDEO BOX INSIDE CMS:CONTENT BOX */

.cms .span-4.vidbox a.player {
	width: 256px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height:216px;		/* 4:3 ratio + 24px for controlbar */
}

.span-9 .vidbox a.player {
	width: 654px;		/* span width - 2px (wrapper border) - 30px (wrapper padding) - 12px (vidbox padding) - 2px (.vidbox border) */
	height:538px;		/* 4:3 ratio + 24px for controlbar */
}

/* play button */

.span-4.vidbox a.player img {
	margin-top: 97px;
	border:0px;
}

.span-8.vidbox a.player img {
	margin-top: 217px;
	border:0px;
}

.span-12.vidbox a.player img {
	margin-top: 337px;
	border:0px;
}

/* @end */

/* @group Deluxe Video Box Players */

/* 	DELUXE VIDEO BOX (WITH HEADER *AND* FOOTER) */

.span-4.vidbox.deluxe a.player {
	width: 298px;		/* span width - 2px (.vidbox border) */
	height:248px;		/* 4:3 ratio + 24px for controlbar */
}

.span-8.vidbox.deluxe a.player {
	width: 618px;		/* span width - 2px (.vidbox border) */
	height: 488px;		/* 4:3 ratio + 24px for controlbar */
}

.span-12.vidbox.deluxe a.player {
	width: 938px;		/* span width - 2px (.vidbox border) */
	height: 728px;		/* 4:3 ratio + 24px for controlbar */
}

/* DELUXE VIDEO BOX INSIDE CMS:CONTENT BOX */


.cms div.box.span-4.vidbox.deluxe a.player {
	width: 268px;		/* span width - 12px (.innerContent padding) - 2px (.vidbox border) */
	height:225px;		/* 4:3 ratio + 24px for controlbar */
}

.cms div.box.span-4.vidbox.deluxe a.player img {
	border: 0;
	margin-top: 90px;
}

/* play button */

.span-4.vidbox.deluxe a.player img {
	margin-top: 102px;	/* [a.player height - 44px (play button height)] / 2 */
	border:0px;
}

.span-8.vidbox.deluxe a.player img {
	margin-top: 222px;	/* [a.player height - 44px (play button height)] / 2 */
	border:0px;
}

.span-12.vidbox.deluxe a.player img {
	margin-top: 342px;	/* [a.player height - 44px (play button height)] / 2 */
	border:0px;
}

/* @end */


/* @end */

/* @end */



/* @end */

/* @group Box Adjustments */

div.box.right {
	float: right;
	margin: 0 0 20px 20px;
}

div.box.pull-bottom {
	margin-bottom: 0px;
}

.box .innerFoot.extended {
	text-align: left;
	padding-top: 1em;
}

.box .innerFoot.extended p {
	padding-top: inherit;
}

div.box.span-2 .innerContent {
	padding: 1em;
}

div.box div.box.span-6 {
	width: 430px;
}

div.box div.box.span-4 {
	width: 270px;
}

div.box div.box.span-3 {
	width: 190px;
}

/* @end */

/* @end */

/* @group nav.css */

/* @group Main Department Nav */

/* NAVBOX STYLES ===================================================== */

#department_nav .boxContent {
	background: #e4e4e4;
	border-left:1px solid #b0b0b0;
	border-right:1px solid #b0b0b0;
}

#department_nav .innerContent {
	padding: 15px 0;
	overflow: visible;
}

#department_nav ul  {
	list-style:square outside;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background: #f2f2f2;
	border-bottom-style: solid;
	border-bottom-color: #fff;
	border-width: 1px;
}


#department_nav ul.menu li, #department_nav ul.menu li li {
	padding-left: 0;
}

#department_nav ul.menu li a {
	width: 184px;
	padding:15px 17px;
	border-bottom:1px solid #d4d4d4;
	border-top:1px solid #fff;
	display: inline-block;
	font-size: 13px;
	font-family: Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	color: #444;
}

#department_nav ul.menu li a:hover {
	color: #a21C00;
  	border-bottom-color: #d4d4d4;
}

#department_nav ul.menu li a:focus {
	outline: none !important;
}

#department_nav ul.menu ul {
	font-family: Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #fff !important;
	margin-top: -1px;
}

#department_nav ul.menu li li a {
	width: 167px;
	color: #444;
	padding-left: 34px;
	padding-right: 17px;
	border-bottom:1px solid #e4e4e4;
	font-size: 12px;
	text-transform: none;
}

#department_nav ul.menu li li a:hover, #department_nav  ul.menu li li a:focus {
	color: #a21C00;
	border-bottom-color: #e4e4e4;
}

#department_nav ul.menu > li a.first {
	border-top: 1px solid #a9a9a9;
	/*margin-top: -1px;*/
}

#department_nav ul.menu > li a.last {
	border-bottom: 1px solid #a9a9a9;
	
}

/* ACTIVE CLASSES */

#department_nav ul.menu > li > a.active, ul.menu > li > a.active:hover {
	margin-left: -21px;
	margin-bottom: -14px;
	margin-top: 0;
	padding-top: 16px;
	padding-bottom: 30px;
	padding-right: 28px;
	padding-left: 38px;
	border: none;
	background: url(https://www.elon.edu/images/e-web/master_templates/dept_nav_active.gif) bottom left no-repeat;
	color: #fff !important;
}

#department_nav ul.menu li a.active.first {
	padding-top: 15px;
	border-top: 1px solid #d4d4d4;
}



#department_nav ul.submenu a:hover, #department_nav ul.submenu a:focus, #department_nav ul.submenu a.current {
	width: 165px;
	padding-right: 16px;
	border-right: 4px solid #989898;
}

#department_nav ul.submenu a.current, #department_nav ul.submenu a.current:hover, #department_nav ul.submenu a.current:focus {
	font-weight: bold;
	color: #444;
}

#department_nav ul.submenu a:hover {
	font-weight: normal;
}

#department_nav ul.menu a {
	display: block;
}

#department_nav ul.menu a {
	display: inline-block;
}

#department_nav ul.menu a.active.last {
	margin-top: 0px !important;
	margin-bottom: -15px !important;
	border-bottom: none !important;
}

/* ================= slider animation stuff ================ */

.slider
{
    /*background-color: #BF1B08;*/
    position: absolute;
    z-index: 1;
    margin-left: -20px;
    margin-top: 1px;
    width: 0px;
    /*border-top: 1px solid #f5f5f5;*/
    border-bottom: 1px solid #a22d13;
    box-shadow: 0 5px 5px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 5px 5px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.25);
}

.diag
{
    position: absolute;
    padding: 0;
    margin: 0;
    z-index: -1;
}

#department_nav #mainnav >li{background:url(https://www.elon.edu/shell/960/css/images/dept_nav-gradient.png) top repeat-x; min-height:50px; height:auto !important; height:50px}

#department_nav #mainnav >li >a{width:167px; padding:15px 36px 15px 15px; border-bottom:1px solid #c4c4c4 !important; background:url(https://www.elon.edu/shell/960/css/images/dept_nav_arrow.png) 194px no-repeat}

#department_nav #mainnav a.expanded{background:none}

#department_nav ul.menu li li a{padding-left:27px; padding-right:24px}

#department_nav ul.submenu a.current, #department_nav ul.submenu a:hover, #department_nav ul.submenu a:focus{width:171px; padding-right:16px; border-right:4px solid #989898}

/* @end */

/* @group additional_nav.css */

/* ADDITIONAL NAVIGATION
   --------------------------------------------------------- */

.additional_nav .innerContent {
	padding: 1em;
}
   
.additional_nav ul {
	list-style-position: outside;
	list-style: none;
	margin-bottom: 0;
}

.additional_nav ul li {
	background: url(https://www.elon.edu/images/e-web/master_templates/arrow_button.png) top left no-repeat;
	padding-left: 24px;
	margin: .5em .25em;
}

.additional_nav ul a {
	margin-left: 0;
	padding-left: 0;
	color: #333;
	border-bottom-color: transparent;
}

/*.additional_nav ul a:active, .additional_nav ul a:link, .additional_nav ul a:visited {
	color: #333;
	border-bottom: 1px solid #fff;
}*/

.additional_nav ul a:hover {
	color: #900000;
	border-bottom:1px solid #ccc;
}

.additional_nav table, .additional_nav table * {
	border: none;
	margin: 0 auto;
}

.additional_nav td a, .additional_nav td a:hover {
	border-bottom: 0;
}

/* @end */



/* @group hr_nav.css */

.hr_nav {
	width: 940px;
	height: 45px;
	position: relative;
	background: url(https://www.elon.edu/images/e-web/master_templates/hr_nav.png) top left no-repeat;
	margin-bottom: 20px !important;
}

.hr_nav ul {
	float: left;
	width: 100%;
}

.hr_nav li {
	list-style-type: none;
	display: block;
	width: 13em;
	float: left;
	text-align: center;
	margin: 0 0 0 19px;
	padding: 0;
}

.hr_nav li a {
	display: block;
	text-decoration: none;
	color: #333;
	line-height: 45px;
	border: 0;
	background: url(https://www.elon.edu/images/e-web/master_templates/hr_nav.png) top left no-repeat;
}

li#prospective {
	margin-left: 15px;
	width: 147px;
}

		li#prospective a {
			margin-left: -1px;
			background-position: -15px 45px;
		}
		
		li#prospective a:hover {
			background-position: -15px -45px;
		}

li#international {
	width: 151px;
}

		li#international a {
			background-position: -181px 45px;
		}
		
		li#international a:hover {
			background-position: -181px -45px;
		}

li#graduate {
	width: 130px;
}

		li#graduate a {
			margin-left: -1px;
			background-position: -351px 45px;
		}
		
		li#graduate a:hover {
			background-position: -351px -45px;
		}

li#transfer {
	width: 125px;
}
		
		li#transfer a {
			background-position: -499px 45px;
		}
		
		li#transfer a:hover {
			background-position: -499px -45px;
		}

li#readmit {
	width: 125px;
}
		
		li#readmit a {
			background-position: -644px 45px;
		}
		
		li#readmit a:hover {
			background-position: -644px -45px;
		}

li#accepted {
	width: 134px;
}

		li#accepted a {
			background-position: -790px 45px;
		}
		
		li#accepted a:hover {
			background-position: -790px -45px;
		}

.hr_nav li a:hover {
	color: #f5f5f5
}

/* @end */

/* @end */

/* @group icons.css */

/* ICON LAYOUT
---------------------------------------------------------------- */

.icons table {
	border-collapse: separate;
	border-spacing: .25em .66em;
	width: auto;
	margin: 0 auto 1em;
}

.icons td {
	border: 0px;
}

.icons .innerContent h2, .icons .innerContent ul {
	padding: 0 .5em;
}

.icons ul {
	list-style-position: outside;
	list-style: none;
}

.icons ul li {
	background: url(https://www.elon.edu/images/e-web/master_templates/arrow_button.png) top left no-repeat;
	padding-left: 24px;
	margin: .5em .25em;
}

.icons ul a {
	margin-left: 0;
	padding-left: 0;
	padding-bottom: 1px;
}

.icons ul a:active, .icons ul a:link, .icons ul a:visited {
	color: #333;
	border-bottom: 1px solid #fff;
}
.icons ul a:hover {
	color: #900000;
	border-bottom:1px solid #ccc;
}

/* @end */

/* @group feeds */

/* @group old e-net news feeds */

.news h3 {
	margin-bottom: .25em;
}

div.news_feed h3 a:link, div.news_feed h3 a:active, div.news_feed h3 a:visited {
	text-transform: none;
	color: #443b39;
	border-bottom: 1px solid #fff;
	font-style: normal;
}

div.news_feed h3 a:hover {
	border-bottom:1px solid #ccc;
}

div.news_feed ul.headlines {
	list-style-position: outside;
	list-style: none;
	margin-left: 0;
}

.news div.entrydesc {
	padding-top: .75em;
	padding-bottom: .25em;
}

div.entrydesc img.headline_thumb { /*float: left;margin: .3em 1em 1em 0; padding: 0; border: none;*/
	font-size:1em;
	float:left;
	padding:4px;
	border:1px solid #ccc;
	margin-bottom: 0.3em;
	margin-right:1em;
	margin-top:0.3em;
}	

.news li {
	background: url(https://www.elon.edu/images/e-web/master_templates/hr-dots-double.png) 0 100% repeat-x;
	margin: inherit;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

 /* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */ 

div.entrydesc:after {
  content: "\0020"; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
  overflow:hidden; 
}

div.entrydesc {display: block;}

li + li + li div.entrydesc {
	display: none;
}

/* ECAST LINKAGE */

ul.ecast_list {
	clear: both;
	margin: .5em 1.25em;
}

li.ecast_link {
	list-style-image: none;
	list-style: square outside !important;
	margin: 0 0 0 1.5em;
	/*border: none !important;*/
	background: none;
	padding: .25em 0 .25em 1.5em;
}

li.ecast_link a {
	display: inline !important;
	margin-left: -1.5em;
}

li.ecast_link a:link, 
li.ecast_link a:active, 
li.ecast_link a:visited {
	color: #900;
	text-decoration: none;
}

li.ecast_link a {text-decoration: none;border-bottom:1px solid #ccc; color: #A40006;}
li.ecast_link a:hover {border-bottom:1px solid #900; color: #900000;}


/* NO SUMMARY */

.nosum div.entrydesc {
	display: none;
}

/* @end */

/* NEWS FEEDS headlines-dl.xsl
   -------------------------------------------------------- */

.enet_feed {
	float: left;
	width: 100%;
}

.enet_feed dl, dl.contact-info {
	float: left;
	display: inline;
	width: 100%;
	background: url(https://www.elon.edu/images/e-web/master_templates/hr-dots-double.png) 0 100% repeat-x;
}

.enet_feed dd, .enet_feed dt, .contact-info dd, .contact-info dt, .rss_feed dd {
	margin: 0; padding: 0;
}

.enet_feed dt, .contact-info dt {
	float: right;
}

.enet_feed dd, .contact-info dd {
	margin-bottom: 1.5em;
}

.enet_feed .no_img dt, .contact-info.no_img dt {
	width: 100% !important;
}

.enet_feed .headline, .contact-info .headline, .rss_feed .headline {
	font-family: Cambria, 'Hoefler Text', Utopia, 'Palatino Linotype', Palatino, Times, 'Times New Roman', Georgia, serif;
	text-transform: none;
	border-bottom: 1px solid #fff;
	font-style: normal;
	font-size:1.1666em;
	margin:0 0 1em;
	/*padding-bottom: 1.25em*/
	/*line-height: 1.25em;*/
}

.enet_feed .headline a, .rss_feed .headline a {
	color: #444;
}

.enet_feed .headline a:hover, .rss_feed .headline a:hover {
	border-bottom:1px solid #ccc;
}

.enet_feed .img img, .contact-info .img img {
	font-size:1em;
	float:left;
	padding:4px;
	border:1px solid #ccc;
	margin-bottom:1.5em;
	margin-right:1em;
	margin-top:0.3em;
}

.enet_feed .img img {
	width: 100px;
}

.contact-info .img img {
	width: 90px;
}

.contact-info .position-title {
	font-variant: small-caps;
	letter-spacing: 1px;
	text-transform: lowercase;
	font-size:14px;
	padding-right: 1em;
}

.contact-info .contact {
	font: 11px/1.5em Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #444;
	letter-spacing: 1px;
	margin-left: 112px;
}

.contact-info .contact + dd {
	float: right;
}

.contact-info .read_more {
	line-height: 1em;
	margin-right: 1.75em;
}

.rss_feed dl, dl.rss_feed {
	margin-bottom: 0 !important;
}

.rss_feed > dl + dl, dl.rss_feed + dl.rss_feed {
	background: url(https://www.elon.edu/images/e-web/master_templates/hr-1dot.gif) repeat-x top;
	padding-top: 1em;
}

.rss_feed dd {
	margin-bottom: 1em;
}

/* @group Feed Widths */

.span-9 .enet_feed, .span-9 contact-info { /* span-x - 32 = y */
	width: 668px;
}

.span-9 .enet_feed dt { /* y - 122 = z */
	width: 546px;
}

.span-9 .contact-info dt { /* y - 112 = z */
	width: 556px;
}

.span-8 .enet_feed, .span-8 contact-info {
	width: 588px;
}

.span-8 .enet_feed dt {
	width: 466px;
}

.span-8 .contact-info dt {
	width: 476px;
}

.span-7 .enet_feed, .span-7 contact-info {
	width: 508px;
}

.span-7 .enet_feed dt {
	width: 386px;
}

.span-7 .contact-info dt {
	width: 396px;
}

.span-6 .enet_feed, .span-6 contact-info {
	width: 428px;
}

.span-6 .enet_feed dt {
	width: 306px;
}

.span-6 .contact-info dt {
	width: 316px;
}

.span-5 .enet_feed, .span-5 contact-info {
	width: 348px;
}

.span-5 .enet_feed dt {
	width: 226px;
}

.span-5 .contact-info dt {
	width: 236px;
}

.span-4 .enet_feed, .span-4 contact-info {
	width: 268px;
}

.span-4 .enet_feed dt {
	width: 146px;
}

.span-4 .contact-info dt {
	width: 156px;
}

.span-3 .enet_feed, .span-3 contact-info {
	width: 188px;
}

.span-3 .enet_feed dt {
	width: 66px;
}

.span-3 .contact-info dt {
	width: 76px;
}

/* @end */

/* @group DIRECTORY/RESUME */

#directory_results dl.contact-info dt {
	width: 554px;
}

/* @end */

/* @end */

.append-bottom {
	margin-bottom:20px !important;
}
.prepend-top {
	margin-top:20px !important;
}
.pull-bottom {
	margin-bottom: 0 !important;
}

*.span-1, *.span-2, *.span-3, *.span-4, *.span-5, *.span-6, *.span-7, *.span-8, *.span-9, *.span-10, *.span-11, *.span-12 {
    display: block;
    width: auto!important;
    position:absolute;
    height:auto;
    bottom:0;
    top:0;
    left:0;
    right:0;
    margin-top:10px;
    margin-bottom:10px;
    margin-right:10px;
    margin-left:10px;
    z-index: 99;
}

#footer, #image_wrap
{
    display: none;
}

.hide-from-mobile {display:none !important}