/* $Id: html-reset.css,v 1.6.2.2 2010/06/26 15:36:03 johnalbin Exp $ */

/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
    font-size: 14px; /* 16px x .75 = 12px */
  line-height: 16px; /* 12px x 1.333 = 16px */

}


#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 14px; /* 16px x .75 = 12px */
  line-height: 16px; /* 12px x 1.333 = 16px */

}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
  font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base font.
                           Remember, a margin specified in ems is relative to
                           the element's font-size, not to the pages' base
                           font size. So, for example, if we want a 1em margin
                           (relative to the base font), we have to divide that
                           length by the element's font-size:
                           1em / 2em = 0.5em */


}

h2 {
  font-family: 'Arvo';
  font-size: 1.2em;
  line-height: 1.3em;
  margin-top: 0; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0;
  padding:2px;
  
}

h3 {
  font-family: 'Arvo';
  font-size: 1.2em;
  line-height: 1.3em;
  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-family: 'Arvo';
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

h7 {
font-family: 'Arvo';
font-size: x-large;
line-height:16px;
font-weight: bold;
}

h8 {
font-family: 'Lobster';
font-size: 32px;
line-height:32px;color:#4a2c0c;
}

h9 {
  font-family: 'Arvo';
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0;
  padding:0;
  margin-left: 5px;
  color: #ebe8cc;
}

h9 a { color: #ebe8cc !important; }

h10 {
  font-family: 'Arvo';
  font-weight:bold;
  font-size: 14px;
  line-height: 16px;
  margin-top: 0; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0;
  padding:0;
  margin-left: 5px;
  color: #000000;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align:top;
  vertical-align:text-top;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0 0 2px;
  padding: 0 0 0 0px; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;

}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
	color:#537644;
	text-decoration:none;
}

a:visited {
	color:#537644;
	text-decoration:none;
}

a:hover,
a:focus {
	color:#537644;
	text-decoration:none;
}

a:active {
	color:#537644;
	text-decoration:none;
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */


/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
  z-index:99;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

a.pinklink:link {color: #F9C; text-decoration: underline; }
a.pinklink:visited {color: #F9C; text-decoration: underline; }
a.pinklink:hover {color: #F9C; text-decoration: underline; }
a.pinklink:active {color: #F9C;text-decoration: underline; } 

a.yellowlink:link {color: #eceeaa; text-decoration: none; }
a.yellowlink:visited {color: #eceeaa; text-decoration: none; }
a.yellowlink:hover {color: #eceeaa; text-decoration: none; }
a.yellowlink:active {color: #eceeaa;text-decoration: none; }

#fb-social-like-widget {
margin:10px;
} 

#lightbox-popup {
  font-size: 14px; /* 16px x .75 = 12px */
  line-height: 16px; /* 12px x 1.333 = 16px */
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

.caption{} 

.image-caption-container{

}
.image-caption{
color: #748B9A;
font-size: x-small;
line-height: 8pt;
padding-top: 4px;
padding-bottom: 4px;
}

.featuredimage {
    border: 5px solid #345E13;
    height: 200px;
    margin: -145px 0 0 565px;
    position: absolute;
    width: 350px;
}

.headline1 {
font-size: x-large;
line-height:24px;
font-weight: bold;
}

.headline2 {
font-size: 16px;
line-height:18px;

}

.yellowrow {
background-color: #ededab;
background-image: url(http://sbc.edu/foundersday2011/bgsmall.jpg);
background-repeat: no-repeat;
}

.yellowrow1 {
background-color: #ededab;
}

.catheadline {
font-size: x-large;
line-height:14px;
font-weight: bold;
}


#search label
{
   display: none;
margin-top:100px;
}

#grid1
{
width:160px;
border-left:thin;
border-left-color:#000;
border-left-style:solid;
}

.grid1
{
width:160px;
border-left:thin;
border-left-color:#000;
border-left-style:solid;
}

ul.links li {
    display: none;
    
}

.panelmenustyle {
background-image: url(http://sbc.edu/sites/default/themes/sbctheme/images/menurose.png);
background-repeat: no-repeat;
background-position:right bottom; 
width: 250px;
overflow: none;
}

.pinstripe {
padding: 5px;

border-color: #4a2c0c;
    border-style: solid;
    border-width: 1px;
}

#imagepinstripe {
border-color: #4a2c0c;
    border-style: solid;
    border-width: 1px;
}

.imagepinstripe {
border-color: #4a2c0c;
    border-style: solid;
    border-width: 1px;
}

.newspinstripe {
padding: 5px;
margin-bottom: 20px;
border-color: #4a2c0c;
    border-style: solid;
    border-width: 1px;
}

.newscolor {
background-color: #FFFEF1;
}

.newspadding {
margin: 0px;
margin-bottom:10px;
}

.newspadding .pane-title {
background-color: #EBE8CC;
}

.greencolor {
background-color: #99ad53;
}

.pinkcolor {
background-color: #C22A63;
}

.greencolor1 {
position: absolute;
z-index:99;
background-repeat: no-repeat;

margin-top:200px;
margin-left: 640px;
}

.frontbody1 {
width: 600px;
padding-left:10px;
color:#FFFFFF;
font-family: 'Arvo';
  font-size: 1.0em;
  line-height: 1.1em;
}


.browncolor {
background-color: #4a2c0c;
}

.centerme {
display: block;
    margin-left: auto;
    margin-right: auto;
}

.paddingleft1 {
display:block;
margin-left:15px;
margin-right:auto;
}



.3slides h1 {
padding: 5px;

border-color: #D3EAD3;
    border-style: solid;
    border-width: 1px;

}

a.titlebrown:link {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlebrown:visited {
color: #4a2c0c; 
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlebrown:hover {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlebrown:active {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}


a.titlebrown1:link {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:0px;
}
a.titlebrown1:visited {
color: #4a2c0c; 
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:0px;
}
a.titlebrown1:hover {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:0px;
}
a.titlebrown1:active {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:0px;
}





a.titlewhite:link {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 12px;
   }
a.titlewhite:visited {
color: #FFFFFF; 
 font-family: 'Arvo';
  font-size: 12px;
  }
a.titlewhite:hover {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 12px;
   }
a.titlewhite:active {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 12px;
   }

a.titleyellow:link {
color: #e8eab4;
 font-family: 'Arvo';
  font-size: 16px;
line-height: 1.4em;
   }
a.titleyellow:visited {
color: #e8eab4; 
 font-family: 'Arvo';
  font-size: 16px;
line-height: 1.4em;
  }
a.titleyellow:hover {
color: #e8eab4;
 font-family: 'Arvo';
  font-size: 16px;
line-height: 1.4em;
   }
a.titleyellow:active {
color: #e8eab4;
 font-family: 'Arvo';
  font-size: 16px;
line-height: 1.4em;
   }


a.titlewhitelarge:link {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlewhitelarge:visited {
color: #FFFFFF; 
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlewhitelarge:hover {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}
a.titlewhitelarge:active {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 
padding-left:10px;
}




.potd1 {
width: 322px;
display: block;
overflow: hidden;
margin-right: 10px;
background-color: #4a2c0c;
border-color: #D3EAD3;
    border-style: solid;
    border-width: 1px;
}

.potd1 .pane-title {
background-color:#EBE8CC;
}

.vidbox {
widht: 550px;
overflow: hidden;
margin-right: 10px;
}

.featurepane {
margin-left:10px;
margin-right: 15px;
padding:5px;
overflow: hidden;
}

.5padding {
padding:5px;
}

.5margin {
margin-left: 15px;

}

.panels-flexible-region-33-center {
width:100%;
margin-top: -10px;
background-repeat:none;
}

.panels-flexible-region-33-bottom4 {
width:100%;
}

.panels-flexible-row panels-flexible-row-33-3 clear-block Bottom1 {
background-color: #C22A63;
}

.Bottom1 {
background-color: #C22A63;
background-repeat: none;
margin-top: -30px;
padding-bottom: 20px;
padding-top: 20px;
}

.pinkcolor1 {
background-color: #f8ebeb;
}

#rotator {
  background: url(http://sbc.edu/bannerimages/rotator.php) no-repeat center top;
  width: 960px;
  height: 195px;
}

#flickrgallery .flickr-wrap {
float: left;
margin-left: auto;
margin-right: auto;
text-align: center;
width: 150px;
height: 180px;
}

#flickrgallery-picture-title {
display:none;
}

.flickrgallery-picture-title {
display:none;
}

#becauseofyou1 {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 28px;
 line-height: 24pt;
 
}


#becauseofyou2 {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 3.3em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; 
  margin-left: 10px;
}



#becauseofyouname {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; 
  margin-left: 10px;
}

#becauseofyouyear {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em; 
  margin-left: 10px;
}

#magazinerow {
margin-left: 10px;
}

a.titlebrownmagazine:link {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 

}
a.titlebrownmagazine:visited {
color: #4a2c0c; 
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 

}
a.titlebrownmagazine:hover {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 

}
a.titlebrownmagazine:active {
color: #4a2c0c;
 font-family: 'Arvo';
  font-size: 1.3em;
  line-height: 1.4em;
  margin-top: 0;
  margin-bottom: 0.5em; 

}

.browncolorbecause {
background-color: #4a2c0c;
margin-top: 10px;
}

a.becauseofyou1:link {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 28px;
  line-height: 24pt;
  margin-top: 0;
  
  

}
a.becauseofyou1:visited {
color: #FFFFFF;
 font-family: 'Arvo';
  font-size: 28px;
  line-height: 24pt;
  margin-top: 0;
  
  

}
a.becauseofyou1:hover {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 28px;
  line-height: 24pt;
  margin-top: 0;
  
  

}
a.becauseofyou1:active {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 28px;
  line-height: 24pt;
  margin-top: 0;
  
  

}

a.becauseofyou2:link {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 30%;
  font-size: 12pt;

  
  

}
a.becauseofyou2:visited {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 30%;
  font-size: 12pt;

  

}
a.becauseofyou2:hover {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 30%;
 font-size: 12pt;

  

}
a.becauseofyou2:active {
color: #FFFFFF;
 font-family: 'Arvo';
font-size: 30%;
  font-size: 12pt;

  

}

#becauseofyou3 {
color: #4A2C0C;
 font-family: 'Arvo';
font-size: 12pt;
line-height: 16pt;
margin: auto;
padding: 12px;
width: 100%;

}

#search-theme-form input.form-submit, #search-form input.form-submit {
height: 24px;
width: 24px;
cursor: pointer;
text-indent: -9999px;
border: none;
background: url(http://sbc.edu/sites/default/themes/sbctheme/images/search.png) no-repeat left top;
}

#IEroot .block-search input.form-submit, #IEroot #search-form input.form-submit {
width: 34px;
font-size: 0;
color: #fff;
text-align: right;
}
#IEroot #search-form .search-advanced input.form-submit {
width: 44px;
text-indent: 0;
}

hr.thin {
height: 1px;
border: 0;
color: #c4c4c4;
background-color: #c4c4c4;
width: 100%;
} 

#askindiana .input{
 
color: #781351;
background: #fee3ad;
border: 1px solid #781351
width:560px;
}



.sfrow {

background-color: #ededab;
background-image: url(http://sbc.edu/sites/default/files/u1/boots1.png);
background-position: 500px 800px; 
background-repeat: no-repeat;
background-size: 600px auto;

}



.sfrow1 {
background-color: #ededab;
}

.catheadline {
font-size: x-large;
line-height:14px;
font-weight: bold;
}



.fontsmall{
color: #000000;
font-size: x-small;
line-height: 8pt;
padding-top: 4px;
padding-bottom: 4px;
}

ulh {
list-style-type: none;
background-image: url(navi_bg.png);
height: 500px;
width: 332px;
margin: auto;
}
lih {
float: left;
}

.slidebody1 {
color: gray;
    float: right;
    font-size: 12pt;
    line-height: 18pt;
    margin: -270px 0 0 370px;
    padding: 10px;
    position: relative;
}

.slidecontainer {
padding-left: 5px;
background-color: #537644;
background: url("http://sbc.edu/findyourplace/wp-content/themes/wp-attract/images/paperbg.jpg") repeat scroll 0 0 #FFFEF1;

border-bottom: 1px solid #F5F5F5;
    box-shadow: 0 10px 0 #DDDDDD;
opacity: 0.6;
    
    
}

.slidetitlecontainer {
background-color: #537644;
    color: #FFFFFF;
    font-family: 'Lobster';
    font-size: 32px;
    line-height: 50px;
    margin: 0 0 5px;
    opacity: 0.9;
    padding: 0 0 0 370px;

}

.menunotitlewithlink {
 color: #006600;
    display: block;
    font-size: 10.5pt;
    font-weight: bold;
    margin: 5px;
    text-align: left;
    word-spacing: inherit;
}

.SweetBriarCollegeNewsRiding7eaka3dcpsjg7okp9baa86hgpk .creditfooter{

display:none;
}

.feedTitle {
color: #006600;
font-size: 10.5pt;
font-weight: bold;
text-align: left;
word-spacing: inherit;
}

.headline {
font-size: 7.5pt;
font-weight: bold;
}

.creditfooter {
display:none;
}

creditfooter {
display:none;
}

#creditfooter {
display:none;
}

.pane-plain-box-temporary-a6a7d51faa5229f3b3f3542b3093c866 {
    border-color: none;
    border-style: none;
    border-width: 1px;
}

.newspaper
{
-moz-column-count:4; /* Firefox */
-webkit-column-count:4; /* Safari and Chrome */
column-count:4;

-moz-column-gap:20px; /* Firefox */
-webkit-column-gap:20px; /* Safari and Chrome */
column-gap:20px;
}