/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */

/**
 * HTML5 display definitions
 */

/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 */

/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif; /* 1 */

  /* Delete all but one of the following font-size declarations: */

  /* Use a 12px base font size. 16px x 75% = 12px */
  font-size: 75%; /* 3 */
  /* Use a 14px base font size. 16px x .875 = 14px */
  font-size: 87.5%; /* 3 */
  /* Use a 16px base font size. */
  font-size: 100%; /* 3 */

  -ms-text-size-adjust: 100%;     /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */

  /* Establish a vertical rhythm. */
  line-height: 1.5em;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
button,
input,
select,
textarea {
  /**
   * The following font family declarations are available on most computers.
   *
   * 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, serif or
   * monospace) 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: 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: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

/* Remove default margin. */
body {
  margin: 0;
  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 {
}
a:visited {
}
a:hover,
a:focus {
}
a:active {
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */

/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em; /* 3rem / 2em = 1.5em */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em; /* 1.5rem / 2em = .75em */
  margin-bottom: 0.75em;
}
h2 {
  font-size: 1.5em;
  line-height: 2em; /* 3rem / 1.5em = 2em */
  margin-top: 1em; /* 1.5rem / 1.5em = 1em */
  margin-bottom: 1em;
}
h3 {
  font-size: 1.17em;
  line-height: 1.28205em; /* 1.5rem / 1.17em = 1.28205em */
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}
h4 {
  font-size: 1em;
  line-height: 1.5em; /* 1.5rem / 1em = 1.5em */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
h5 {
  font-size: 0.83em;
  line-height: 1.80723em; /* 1.5rem / 0.83em = 1.80723em */
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}
h6 {
  font-size: 0.67em;
  line-height: 2.23881em; /* 1.5rem / 0.67em = 2.23881em */
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}
dd {
  margin: 0 0 0 30px; /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  //padding: 0 0 0 0;//30px; /* LTR */
}
.menu
{
    padding: 0 0 0 0;
    margin-top: 10px;
}


 /* Correct list images handled incorrectly in IE 7. */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;

  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */

  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
  
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */

/* Correct margin displayed oddly in IE 6/7. */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.5em 0.625em 1em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
  *margin-left: -7px; /* 3 */ /* LTR */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
  vertical-align: baseline; /* 4 */
  *vertical-align: middle; /* 4 */
  max-width: 100%; /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  width:100%;
}
.logo
{
    float: left;
    margin-right: 10px;
    //padding-top: 10px;
    height:110px;
}
.media-heading
{
    //padding-top: 10px;
}
.dept
{
    height:46px;
}
.index-page-title
{
    display: table-cell;
    vertical-align: bottom;
    height: 115px;
    /*line-height: 0.0;*/
    padding-bottom: 10px;

}


.menu__item
{
    
   list-style: none;
   
}
ul.menu>li>a 
{
        padding: 8px 5px 6px 8px;
        margin-bottom:2px; 
}
li>ul>li>a
{
  margin-left: 10px;
}
li>ul>li>ul>li>a
{
  margin-left: 20px;
}
/*4th level*/
li>ul>li>ul>li>ul>li>a
{
  margin-left: 30px;
}
ul.menu>li>ul
{
  margin-top: 0px;
}

ul.menu>li.active>a,ul.menu>li.active>a:hover, ul.menu>li.active>a:focus 
{
    color: #fff;   
    text-decoration: none;
}
ul.menu>li>a:hover
{
    background-color: #EEE;
    border-radius: 4px;
}
ul.menu>li>a:hover
{
    text-decoration: none;
}
ul.menu>li.is-active-trail > a 
{
    background-color: #F69E64;
    border-radius: 4px;
}

ul.menu>li>ul.menu>li.active >a
{
    background-color: #EDBB9C;
}

ul.menu>li>a>img
{
  border-radius: 0px;
}

.menu > li > a {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-right:5px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.menu > li > a>img
{
    margin-right: 5px;
}

#block-views-video-suggestions-block > .block-title
{
        display: none;
    
}
.node-padding
{
        
        margin-bottom: 20px;
    
}
.dept-title
{
    margin-bottom: 10px;
}

.temp2
{
    position: absolute;
    top: 88%;
    bottom: 0;
    left:85px;
    right:0;
    font-weight: bold;
    
}

.row > .temp2
{
  line-height: 32.1px;
}

.node-credits td
{
  font-size: 16px;
}


/**
@media(min-width: 320px){
.temp2
{
    position: absolute;
    top: 88%;
    bottom: 0;
    left:24%;
    right:0;
    
}
.temp2:after
{
    content: ":";
}    
}
@media(min-width: 480px){
.temp2
{
    position: absolute;
    top: 88%;
    bottom: 0;
    left:16%;
    right:0;
    
}
.temp2:after
{
    content: ":";
}    
}
@media(min-width: 768px){
.temp2
{
    position: absolute;
    top: 88%;
    bottom: 0;
    left:15%;
    right:0;
    
}
.temp2:after
{
    content: ":";
}    
}
@media(min-width: 992px){
.temp2
{
    position: absolute;
    top: 88%;
    bottom: 0;
    left:11%;
    right:0;
    
}
.temp2:after
{
    content: ":";
}    
}

.row > .temp2
{
  line-height: 32.1px;
}



/*@media(min-width: 769px){
    
.index_title{
    position: relative;
    left: -18%;
    top:40px;
    
}
.index_title:after
{
    content: ":";
}
    
    
}

@media(max-width: 991px){
    
    .index_title{
    position: relative;
    left: -16%;
    top:40px;
    color: red;
    
}    
.index_title:after
{
    content: ":";
}    
}

@media(max-width: 768px){
    
    .index_title{
    position: relative;
    left: 9%;
    top:-20px;   
}
.index_title:after
{
    content: ":";
}
}
@media(max-width: 650px){
    
    .index_title{
    position: relative;
    left: 13%;
    top:-20px;
    }
.index_title:after
{
    content: ":";
}
}
@media(max-width: 450px){
    
    .index_title{
    position: relative;
    left: 19%;
    top:-20px;
}
.index_title:after
{
    content: ":";
}
}
@media(max-width: 300px){
    
    .index_title{
    position: relative;
    left: 22%;
    top:-20px;
 
}
.index_title:after
{
    content: ":";
}
}
@media(max-width: 250px){
    
    .index_title{
    position: relative;
    left: 25%;
    top:-20px;
 
}
.index_title:after
{
    content: ":";
}
} */


p{
    text-align: justify;
}
.gallary_full
{
  margin-bottom: 20px;
}
.gallary_full > img
{
  border: 1px solid #ccc;
  border-radius:0px; 
}
.row-book
{

}
.bottom-align-text
  {
    
  }
@media all and (min-width:768px){
  .row-book
  {
    position: relative !important;
  }
  .bottom-align-text
  {
    position: absolute !important;
    right: 0;
    bottom: 0;
  }

}

@media all and (min-width: 900px) {

  div.two_col  {
  width:58.5%;
  }
  .gallary_full > blockquote
{
  margin: 2px 0 20px 0;
  width:58.5%;
}
}
@media all and (max-width: 899px) {
 .gallary_full > blockquote
{
  margin: 2px 0 20px 0;
  width: 100%;
}
}
.node-mini-gallery
{
    padding-left: 15px;
    padding-right: 15px;
}


.views-field-field-mini-gallery-images > .field-content > a >.col-sm-1,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-2,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-3,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-4,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-5,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-6,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-7,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-8,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-9,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-10,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-11,
.views-field-field-mini-gallery-images > .field-content > a >.col-sm-12
{
     padding: 2px;
}
.views-field-field-mini-gallery-images > .field-content >.col-sm-1 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-2 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-3 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-4 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-5 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-6 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-7 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-8 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-9 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-10 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-11 > a > picture > img,
.views-field-field-mini-gallery-images > .field-content >.col-sm-12 > a > picture > img

{
  //padding: 2px;
}

.field-name-field-documented {
    float: left;
    margin-right: 4px;
}

.gal_dept_pad > span
{
  padding-right:2px;

 
}
.media-body > .gal_dept_pad
{
  font-size: 12px;
}
.media-body > .info,.field-name-field-sub-title,.field-name-field-documented-by-
{
  font-size: 11px;
}
.media-body > .info
{
  line-height: 1.0;
}
.media > .info
{
  font-size: 11px;
  line-height: 1.0;
} 
.gal_info
{
  font-size: 11px;
}
.gal_auth
{
  font-size: 12px;
  
}


/* mini-gallary*/

picture > img
{
  border: 1px solid #ccc;
    border-radius: 0px;
}


.views-field-field-topic-page-logo > .field-content > a > img
{
  border: 1px solid #ccc;
    border-radius: 0px;
}
.views-field-field-video-logo > .field-content > a > img
{
  border: 1px solid #ccc;
    border-radius: 0px;
}

 img
{
    border: 1px solid #ccc;
    border-radius: 0px;
}
td
{
  vertical-align: top;
  text-align: justify;
}



.ds-2col-stacked > .group-header > .media 
{
  margin-bottom: 20px;
}

/* for search option*/
/*

#videosug
{
  //background-color: red;
}

ul.nav-tabs > li:nth-last-child(1)
{
 background-color: black;
}

ul.nav-tabs > li:nth-last-child(1)> a:active
{
 //background-color: green;
}

ul.nav-tabs > li:nth-last-child(1)> a:active div > .view-video-suggestions
{
  background-color: red;
display: none;
}*/



/*home page img border: */

.media > .pull-left > a > img
{
   border: 1px solid #ccc;
    border-radius: 0;
}

.img170_170 > a > img
{
  border: 1px solid #ccc;
    border-radius: 0;
}

.row > .col-sm-12 > article
{
  display: none;
}

ul.menu > li > a > img
{
  border: 1px solid #ccc;
    border-radius: 0;
}


.view-nodehierarchy-children-teasers{
    padding-top: 20px;
}

.view-video-gallery
{
  padding-top: 20px;
}
.field-name-field-tab-markup
{
  padding-top: 20px;
}
ul.links > li.0 {
  display: none;
}
.sticky-table > tbody > tr > td {
    padding-bottom: 15px;
    padding-left: 6px;
    padding-top: 15px;
}
.grippie
{
  display: none;
}


.form-textarea-wrapper textarea
{
  width: auto;
}

/*for comment page*/
div.fieldset-description
{
  display: none;
}
.user-info-from-cookie > div > .ds-form > .form-item > label{
  width: 80px;
}

.form-item-field-country-und > label
{
  width: 80px;
}
fieldset.captcha > legend{
  display: none;
} 

.form-item-captcha-response > label
{
  width: 150px;
}
.form-item-captcha-response > input
{
  width: 170px;
}



/* For popup */

.bootstrap-gallery > .slides >  a.prev {
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    display: block;
    height: 40px;
    margin: -20px 0 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    top: 40%;
    transition: all 0.3s ease 0s;
    width: 40px;
    z-index: 10;
}

/* For comment part*/
section > .comment
{
    background-color: #EBEBEB;
    padding: 4px;
    margin-top: 5px;

}
.inline > li.comment-reply
{
    /*visibility: hidden;*/
    display: none;
}
span.username
{
    font-weight: bold;
    text-transform: capitalize;
}
.field-name-comment-body
{
  line-height: 22px;
margin-top: 10px;
margin-bottom: 10px;
}





/*For login form betterlogin.css*/
#auth_box {
  width: 300px;
  //margin: 0 auto;
  padding: 85px 0 0;
  font-family: sans-serif;
}

  #auth_box h1#the_logo {
    text-align: center;
    margin: 0;
    padding: 0 0 25px;
  }
    
    #auth_box h1#the_logo img {
      max-width: 250px;
    }
  
  #auth_box h2.title {
    margin: 0;
    padding: 0 0 15px;
    font-size: 2em;
  }
  
  #auth_box input[type="text"],
  #auth_box input[type="password"] {
    width: 260px;
    border: 1px #ccc solid;
    border-radius: 3px;
    padding: 5px;
    font-size: 15px;
  }

  #auth_box input[type="submit"] {
    float: right;
  }

  #auth_box #middle_part {
    border-radius: 3px;
    background: #fff;
    padding: 5px 15px;
    overflow: hidden;
    box-shadow: 0 0 3px 1px #ccc;
  }

  #auth_box .back_link {
    padding: 15px 0 0;
  }

  #auth_box #bottom_part {
    font-size: 13px;
    padding: 15px 15px 0;
  }
  /*For login page*/
#edit-submit--3 
{
background-color: #EFB688;
    border-color: #000;
    color: #FFF; 
    display: block;
    width: 100%;
    border-radius: 6px;
    height: 38px;
    font-size: 18px;
    border-width: 0px;

}

#user-login-form  label 
{
  font-weight: normal;
  font-size: 13px;
}

/*For Forgot password page*/

 #user-pass #edit-submit 
{
background-color: #EFB688;
    border-color: #000;
    color: #FFF; 
    display: block;
    width: 100%;
    border-radius: 6px;
    height: 38px;
    font-size: 18px;
    border-width: 0px;

}

#user-pass label 
{
  font-weight: normal;
  font-size: 13px;
}

/*For Register page*/
 #user-register-form #edit-submit 
{
background-color: #EFB688;
    border-color: #000;
    color: #FFF; 
    display: block;
    width: 100%;
    border-radius: 6px;
    height: 38px;
    font-size: 18px;
    border-width: 0px;

}

#user-register-form label 
{
  font-weight: normal;
  font-size: 13px;
}

/*complete register page*/

#block-fboauth-login > a > img
{
  border-radius: 6px;
}


.edit-submit-facebook {
    background-size:270px;
    border:none;
    width:270px;
    height:45px;
   
}


.page-user-login, .page-user-register, .page-user-password {
    

    //background: rgba(240, 240, 240, 0.97) url("./../images/64xk850n3a8uzse6fi11l3vmz.jpg") repeat scroll center top / cover ;
    display: block;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    //text-align: center;
    width: 100%;
   
}

.login_form_bg{
    
    direction: ltr;
    display: none;
    opacity: 1;
    //overflow: hidden;
    position: fixed;
    z-index: 999999;

}
.font_login > div > a
{
  font-size: 16px;
  color: #509EC9;
}
#edit-actions
{
  margin-bottom: 10px;
}

#edit-submit:after
{
  //margin-bottom: 50px; 
  content: "------------------------- OR -------------------------";
}

#edit-submit-google--2 {
    background-image: url("../images/sign-in-with-google.png");
    background-size: 270px auto;
    border: medium none;
    border-radius: 6px;
    height: 38px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 270px;
}

#user-login-form
{
  margin-top: -20px;
}

.horizontal-separator {
    border-top: 1px solid #ccc;
    display: inline-block;
    height: 1px;
    margin: 1em auto;
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 25px;
}
.separator-text
{
  background-color: white;
    font-size: 12px;
     padding: 0 14px;
    text-transform: none;
    display: inline-block;
    padding: 0 0.5em;
    position: relative;
    top: -0.9em;
}

/* For internal page table*/
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td{
    font-size: 14px;
  }

/*Cource Freehand Sketching Day Link Header Style CSS*/
.daylink { 
border:1px solid #eee; background-color:#eee; border-radius:4px; float:left; padding:2px 7px 2px 7px;  margin-right:6px; margin-bottom:5px;
}

/*For send url icon */
.send_url
{
  float:right;
  margin-top:-21px;
}
@media (max-width: 600px) {
  .send_url{
  float:right;
  margin-top:-67px;
  }

}

/*For Top Margin in #Tag of Gallery pages*/
a.anchor {
    display: block;
    position: relative;
    top: -73px;
    visibility: hidden;
} 

/* for remove td border*/
.remove_border.table td
{
  border: none;
  font-size: 14px;
  padding-left: 0;
  padding-right:0;
}
/* for watercolor img*/
@media(max-width: 300px){
 .set_margin{
  margin-top: 0px;

}   
 
}
.set_margin{
  margin-top: 165px;

}

/*for napbar and welcome msg*/

.menu_dsource > li
  {
    padding-top: 0px;
    margin-top: -10px;
  }
  .hr
  {
    display: none;
  }
  .menu_diff1
  {
    margin-left: 0px;
    margin-right: 0px;
  }
  

@media (max-width: 768px) {
  .hr
  {
    display: block;
    margin-top: 8px;
    margin-bottom: 0px;
  } 

  .menu_dsource > li
  {
    padding-top: 0px;
    margin-top: 0px;
  }
  
  .menu_diff1
  {
   line-height: 8px;
    visibility: hidden; 
  }
  
  
  }

  /* for history*/
.img-brd img
{
  border: 1px solid #F0F0F0;
}

/* for menu icon*/
.menu_over{
 overflow: hidden;
}


/*for google language*/
#google_translate_element > div > span 
{
  display: none;

}

#google_translate_element > div
{
  color: white;
  margin-bottom: -12px;
}
#google_translate_element > div > div
{
  color: gray;
}

/* Special menu*/

 /* Dropdown Button */
 .btn 
{
  border-radius: 0 !important;
}
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px !important;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important; 
    border-left: none !important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999999;
    right: 0;
    left: auto;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover 
.dropdown:hover .dropdown-content {
    display: block;
}
*/
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #E6E6E6;
}

.input-group-btn
{
  vertical-align: top !important;
}

/*For tablat */

.navbar-header > a
{
  font-size: 45px !important;
}
.navbar-right > li > a
{
  font-size: 16px !important;
}

/*@media (max-width:768px) and (min-width:991px) 
*/
@media (max-width:991px) and (min-width:768px) {
    .navbar-header > a
    {
      font-size: 40px !important;
    }
    .navbar-nav > li > a
    {
      font-size: 12px !important;
      padding-bottom: 15px !important;
      padding-top: 10px !important;
      line-height: 14px !important;
    }
    .menu_diff1
    {
      margin-top: 7px;
    }

}

/*For reset login button*/
#user-pass-reset #edit-submit
{
  background-color: #efb688;
    border-color: #000;
    border-radius: 6px;
    border-width: 0;
    color: #fff;
    display: block;
    font-size: 18px;
    height: 38px;
    width: 100%;
}
/*---START--- for indian language */
.modal {
    top: 20% !important;
    z-index: 10000005 !important;
}
.img_lang
{
  background-repeat: no-repeat;
  text-indent:-9999px;
  width: 150px;
  height: auto;
  display: block;
  outline: none !important;
}
.img_eng
{
  background-image:url("../images/languages/english.png");
}
.img_bang
{
  background-image:url("../images/languages/bengali.png");
}
.img_gujarati
{
  background-image:url("../images/languages/gujarati.png");
}
.img_hindi
{
  background-image:url("../images/languages/hindi.png");
}
.img_kannada
{
  background-image:url("../images/languages/kannada.png");
}
.img_malayalam
{
  background-image:url("../images/languages/malayalam.png");
}
.img_marathi
{
  background-image:url("../images/languages/marathi.png");
}
.img_punjabi
{
  background-image:url("../images/languages/punjabi.png");
}
.img_sindhi
{
  background-image:url("../images/languages/sindhi.png");
}
.img_tamil
{
  background-image:url("../images/languages/tamil.png");
}
.img_telugu
{
  background-image:url("../images/languages/telugu.png");
}
.img_urdu
{
  background-image:url("../images/languages/urdu.png");
}

.img_inadian_lang
{
  background-image:url("../images/languages/indian-languages.png");
}

/*for EPS images*/
.eps_margin > a > img
{
  margin-bottom: 3px;
}

/*For video p tag setting*/
.video_body > p
{
  padding-left: 15px;
}
/*For Cources tab title */
.block-title
{
  visibility: hidden;
}

.remove-justify{
  text-align: left !important;
}

.feed-icon {
  display: none;
}
