﻿@charset "utf-8";
/*@table-bg-hover:                #f5f5f5;*/
/* ---------------------------------------------------------------

 	Standard Bootstrap Media Queries 
    http://css-tricks.com/snippets/css/media-queries-for-standard-devices/    
    http://www.stephentgilbert.com/mediaqueries/
	http://code-tricks.com/css-media-queries-for-common-devices/
	http://scotch.io/quick-tips/css3-quick-tips/default-sizes-for-twitter-bootstraps-media-queries
	For "Mobile First" design approach - remove max-width and allow to cascade

	--------------------------------------------------------------- */
/* Up to @screen-xs */
@media screen and (max-width: 479px) {
  .font-abc {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
}
/* @screen-xs: Extra Small Devices, Phones */
@media screen and (min-width: 480px) and (max-width: 767px) {
  .font-abc {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
}
/* @screen-sm: Small Devices, Tablets */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .font-abc {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
}
/* @screen-md: Medium Devices, Desktops */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .font-abc {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
}
/* @screen-lg: Large Devices, Wide Screens */
@media screen and (min-width: 1200px) {
  .font-abc {
    font-family: "Oxygen", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
}