Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhukovskaya/325be4906b2fb4b9966f9cc4f01aa3a3 to your computer and use it in GitHub Desktop.
Save ezhukovskaya/325be4906b2fb4b9966f9cc4f01aa3a3 to your computer and use it in GitHub Desktop.
JazzTeam TestTask
package application.constants;
public class CompanyInfoConstants {
public static final String EXPECTED_COMPANY = "TEST CUSTOMER";
public static final String INVOICE_ADDRESS = "TEST ADDRESS, TEST TOWN, 111111";
public static final String GRADE = "Mixed Municipal Waste";
public static final String WEIGHT = "0.460 T";
}
package application.constants;
public class PathsConstants {
public static final String FRAMEWORK_PROPERTY = "src/main/resources/config.properties";
public static final String TEST_PROPERTY = "src/main/resources/test.properties";
}
package application.constants;
public class PricesConstants {
public static final String FLAT_CHARGE = "Flat charge";
public static final String FLAT_CHARGE_PRICE = "£100.00";
public static final String PER_TONNE = "per tonne";
public static final String PER_TONNE_PRICE = "£4.60";
public static final String ITEM = "Item";
public static final String ITEM_PRICE = "110.00";
}
package application.constants;
import framework.utils.PropertiesRead;
public class UrlConstants {
public static final String WEB_URL = System.getProperty("user.dir") + PropertiesRead.read("url", PathsConstants.TEST_PROPERTY);
}
package application.pages;
import framework.elements.Label;
import lombok.Data;
import org.openqa.selenium.By;
@Data
public class CompanyInvoicesPage {
private Label companyNameLabel = new Label(By.xpath("//tbody[contains(@class, 'tgl')]//td[@class='cal'][last()-1]"), "Company Name");
private Label invoiceAddressLabel = new Label(By.xpath("//tbody[contains(@class, 'tgl')]//td[@class='cal'][last()]"), "Invoice Address");
private Label grade = getGradeWeightLabel("fc", "Grade");
private Label weight = getGradeWeightLabel("car", "Weight");
private Label flatCharge = getItemNameLabel(2, "Flat charge");
private Label flatChargePrice = getItemTotalCostLabel(2, "Flat charge Total");
private Label perTonneLabel = getItemNameLabel(3, "Per Tonne");
private Label perTonnePrice = getItemTotalCostLabel(3, "Per Tonne Total");
private Label itemLabel = getItemNameLabel(4, "Item");
private Label itemPrice = getItemTotalCostLabel(4, "Item Total");
private Label getItemNameLabel(int itemNumber, String elementName) {
return new Label(By.xpath(String.format("//tbody[contains(@class, 'gl-3')][%d]//td[contains(@class, 'cal fc')]", itemNumber)), elementName);
}
private Label getItemTotalCostLabel(int itemNumber, String elementName) {
return new Label(By.xpath(String.format("//tbody[contains(@class, 'gl-3')][%d]//td[contains(@class, 'car')][last()-1]", itemNumber)), elementName);
}
private Label getGradeWeightLabel(String className, String elementName) {
return new Label(By.xpath(String.format("//tbody[contains(@class, 'gl-2')][2]//td[contains(@class, '%s')]", className)), elementName);
}
}
package framework.base;
import framework.browser.Browser;
import lombok.Data;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
@Data
public abstract class BaseElement {
protected By elementLocator;
protected String elementName;
public BaseElement(By locator, String name) {
this.elementLocator = locator;
this.elementName = name;
}
public WebElement getElement() {
return Browser.getBrowser().findElement(elementLocator);
}
public String getText() {
return getElement().getText();
}
}
package framework.browser;
import application.constants.PathsConstants;
import framework.utils.PropertiesRead;
import org.openqa.selenium.WebDriver;
import java.util.concurrent.TimeUnit;
public class Browser {
private static final int TIMEOUT = Integer.parseInt(PropertiesRead.read("implicitlyTimeout", PathsConstants.FRAMEWORK_PROPERTY));
private static WebDriver driver;
public static WebDriver getBrowser() {
if (driver == null) {
driver = BrowserFactory.getBrowser();
}
return driver;
}
public static void goToUrl(String url) {
getBrowser().get(url);
}
public static void maximize() {
getBrowser().manage().window().maximize();
}
public static void quit() {
getBrowser().quit();
}
public static void setImplicitlyWait() {
getBrowser().manage().timeouts().implicitlyWait(TIMEOUT, TimeUnit.SECONDS);
}
}
package framework.browser;
import application.constants.PathsConstants;
import framework.enums.BrowserList;
import framework.utils.PropertiesRead;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class BrowserFactory {
public static WebDriver getBrowser() {
String browserName = PropertiesRead.read("browser", PathsConstants.FRAMEWORK_PROPERTY);
BrowserList browserList = BrowserList.valueOf(browserName.toUpperCase());
switch (browserList) {
case CHROME:
return getChromeInstance();
case FIREFOX:
return getFirefoxInstance();
default:
throw new IllegalStateException("Incorrect browser name in configuration file");
}
}
private static ChromeDriver getChromeInstance() {
WebDriverManager.chromedriver().setup();
return new ChromeDriver();
}
private static FirefoxDriver getFirefoxInstance() {
WebDriverManager.firefoxdriver().setup();
return new FirefoxDriver();
}
}
package framework.elements;
import framework.base.BaseElement;
import org.openqa.selenium.By;
public class Label extends BaseElement {
public Label(By locator, String name) {
super(locator, name);
}
}
package framework.enums;
public enum BrowserList {
FIREFOX,
CHROME
}
package framework.utils;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.Properties;
public class PropertiesRead {
private static Properties prop = new Properties();
public static String read(String key, String path) {
try {
InputStream input = new FileInputStream(path);
prop.load(new InputStreamReader(input, StandardCharsets.UTF_8));
} catch (IOException e) {
e.getMessage();
}
return prop.getProperty(key);
}
}
From: <Saved by Blink>
Snapshot-Content-Location: https://devmaster.myyard.co.uk/accounts/customer_accounts
Subject: Company invoices - Waste Logics
Date: Mon, 27 May 2019 12:03:46 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----"
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: text/html
Content-ID: <frame-5479853C1B8DF37278DC0A87CD492D26@mhtml.blink>
Content-Transfer-Encoding: quoted-printable
Content-Location: https://devmaster.myyard.co.uk/accounts/customer_accounts
<!DOCTYPE html><html lang=3D"en"><head><meta http-equiv=3D"Content-Type" co=
ntent=3D"text/html; charset=3DUTF-8">
<title>Company invoices - Waste Logics</title>
<meta name=3D"viewport" content=3D"width=3Ddevice-width, initial-scale=3D1"=
>
<meta name=3D"author" content=3D"Waste Logics Ltd">
<link rel=3D"shortcut icon" type=3D"image/x-icon" href=3D"https://devmaster=
.myyard.co.uk/img/bg/favicon_5.ico"><link href=3D"https://fonts.googleapis.=
com/css?family=3DRoboto:400,700,400italic,700italic" rel=3D"stylesheet" typ=
e=3D"text/css"><link rel=3D"stylesheet" type=3D"text/css" href=3D"https://d=
evmaster.myyard.co.uk/sheets/.min/common.css?v=3D0e29bd5a3c6d9e4a"><!--[if =
IE 9]><link rel=3D"stylesheet" type=3D"text/css" href=3D"https://devmaster.=
myyard.co.uk/sheets/.min/ie9.css?v=3D082db553b5f80869"><![endif]-->
<!--[if lte IE 8]><link rel=3D"stylesheet" type=3D"text/css" href=3D"ht=
tps://devmaster.myyard.co.uk/sheets/.min/ie8.css?v=3D5a318dd3d3cf98b9"><scr=
ipt type=3D"text/javascript">document.getElementsByTagName("html")[0].class=
Name =3D "ie";var _is_ie =3D true;</script><script src=3D"https://devmaster=
.myyard.co.uk/jscripts/.min/libs/css3-mediaqueries.js?v=3D92e94f6d296bdb48"=
></script><![endif]-->
<!--[if IE 7]><link rel=3D"stylesheet" type=3D"text/css" href=3D"https:=
//devmaster.myyard.co.uk/sheets/.min/font-awesome-ie7.min.css?v=3Da7708968e=
861410b"><![endif]-->
=20
=20
<style type=3D"text/css" media=3D"print">.tableFloatingHeader{display:none =
!important;}.tableFloatingHeaderOriginal{position:static !important;}</styl=
e></head>
<body><div class=3D"preamble clearfix"><a href=3D"https://devmaster.myyard.=
co.uk/"><div class=3D"logo"></div></a><div class=3D"user"><span>, WLTESTERS=
WASTE SOLUTIONS DEV_MASTER</span>
<div class=3D"btn-group">
<a class=3D"btn dropdown-toggle" data-toggle=3D"dropdown" href=3D"https=
://devmaster.myyard.co.uk/accounts/customer_accounts#">
<i class=3D"icon-cog"></i> NEW
</a>
<ul class=3D"dropdown-menu pull-right"><li><a href=3D"https://devmaster=
.myyard.co.uk/options/email_settings">Email Settings</a></li><li><a href=3D=
"https://devmaster.myyard.co.uk/options/password">Password</a></li>
<li><a href=3D"https://devmaster.myyard.co.uk/ajax.php?command=3Dlo=
gout">Logout <i class=3D"icon-signout"></i></a></li>
</ul>
</div><div class=3D"btn-group notification_dropdown">
<a class=3D"btn dropdown-toggle" data-toggle=3D"dropdown" href=3D"https=
://devmaster.myyard.co.uk/accounts/customer_accounts#">
<i class=3D"icon-bell-alt"></i> <span>31</span>
</a>
<ul class=3D"dropdown-menu pull-right" id=3D"notification_ul" style=3D"=
padding-top: 0">
<li><a href=3D"https://devmaster.myyard.co.uk/system/notifications"=
>Show all notifications</a></li>
<li><div class=3D"notification-item"><div class=3D"notification-hea=
der clearfix text-center"><i class=3D"icon-spinner icon-spin"></i></div></d=
iv></li>
</ul>
</div>
=20
</div></div><div id=3D"mycontents"><div class=3D"menu"><ul><li clas=
s=3D"top-level"><a href=3D"https://devmaster.myyard.co.uk/default/dashboard=
"><i class=3D"dashboard-icon"></i><span>Dashboard</span></a></li><li class=
=3D"top-level menu-active"><a href=3D"https://devmaster.myyard.co.uk/accoun=
ts/customer_accounts#"><i class=3D"icon-gbp"></i><span>Accounts</span></a><=
ul class=3D"sub" style=3D"display: none;"><li><a href=3D"https://devmaster.=
myyard.co.uk/accounts/customer_accounts"><b>Company Invoices</b></a></li></=
ul></li><li class=3D"top-level"><a href=3D"https://devmaster.myyard.co.uk/a=
ccounts/customer_accounts#"><i class=3D"nuts-bolts-icon"></i><span>Nuts &am=
p; Bolts</span></a><ul class=3D"sub last-menu" style=3D"display: none;"><li=
class=3D"text-center more"><a href=3D"https://devmaster.myyard.co.uk/optio=
ns/more"><i class=3D"icon-chevron-down"></i></a></li><li style=3D"display: =
none;"><a href=3D"https://devmaster.myyard.co.uk/accounts/customer_accounts=
#"><i class=3D"icon-chevron-right"></i>SWP</a><ul class=3D"sub-sub"><li><a =
href=3D"https://devmaster.myyard.co.uk/options/swp_changes">SWP Changes</a>=
</li><li><a href=3D"https://devmaster.myyard.co.uk/options/swp_categories">=
SWP Categories</a></li></ul></li></ul></li></ul><div class=3D"clear"></div>=
<h3 class=3D"title">Company invoices
<div class=3D"btn-group help_menu">
<a class=3D"btn dropdown-toggle" data-toggle=3D"dropdown" href=
=3D"https://devmaster.myyard.co.uk/accounts/customer_accounts#">
<i class=3D"icon-info"></i>Help
</a>
<ul class=3D"dropdown-menu pull-right">
<li><a href=3D"https://wastelogics.atlassian.net/servicedes=
k/customer/portal/1" target=3D"_blank"><i class=3D"icon-question-sign"></i>=
Service Desk</a></li>
<li><a href=3D"https://wastelogics.atlassian.net/wiki/displ=
ay/KB/Waste+Logic%27s+Library" target=3D"_blank"><i class=3D"icon-file-text=
"></i> Library</a></li>
<li><a href=3D"https://devmaster.myyard.co.uk/system/featur=
es_dashboard" target=3D"_blank"><i class=3D"icon-road"></i> Features list</=
a></li>
</ul>
</div></h3></div></div>
<div id=3D"_notebook" class=3D"notebook_min">
<header><span id=3D"nb_toggle" title=3D"Open Notebook" title2=3D"Hi=
de Notebook"><b>Notebook</b><i class=3D"icon-collapse-top"></i></span></hea=
der>
<form id=3D"frmNotebook" action=3D"https://devmaster.myyard.co.uk/a=
jax.php?ac=3Dsystem/notebook">
<section id=3D"frmNotebook_content"><ul></ul></section>
</form>
<div class=3D"footer">
<span>Saved...</span>
<button id=3D"nb_delete" class=3D"btn btn-small" title=3D"Remov=
e note" type=3D"button"><i class=3D"icon-trash"></i></button>
<button id=3D"nb_add" class=3D"btn btn-small" title=3D"Add note=
" type=3D"button"><i class=3D"icon-plus"></i></button>
</div>
</div>
<div id=3D"myyard-contents"><div class=3D"myyard-frame" id=3D"my_frame"=
><div id=3D"myyard-frame-contents" class=3D"myyard-frame-contents"><form id=
=3D"frm9576892351381" class=3D"myyard-form " style=3D"" action=3D"https://d=
evmaster.myyard.co.uk/accounts/customer_accounts"><div id=3D"div__sec957689=
2351642_" class=3D"clear " style=3D""><h3>Invoice criteria</h3><div id=3D"d=
iv__sec9576892351642_container" class=3D"mfs "><div id=3D"grp9576892351763=
_" class=3D"mfgv " style=3D""><div id=3D"_elm95768923535311_name" class=3D"=
mfec " style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm9576892=
3535311_name">Company name</label></div><div class=3D"mfei"><input id=3D"el=
m95768923535311_name" name=3D"name" type=3D"text" size=3D"30" maxlength=3D"=
30" value=3D"" autocomplete=3D"off"><i id=3D"elm95768923535311_name_working=
" class=3D"icon-spinner icon-spin" style=3D"display: none;"></i><span class=
=3D"suggest"><i class=3D"icon-double-angle-down"></i></span><div class=3D"m=
yyard-required">This is an <abbr title=3D"A list of possible matches will a=
ppear as you type.">Autocomplete</abbr> field.</div><div id=3D"elm957689235=
35311_name_autocomplete" class=3D"autocomplete first_load" style=3D"positio=
n: absolute; left: 0px; top: 30px; width: 230px; display: none;"><ul><li id=
=3D"7136" class=3D"selected">TEST CUSTOMER<span title=3D"Account customer" =
style=3D"margin-left: 6px" class=3D"informal customer-type-icon account">C+=
</span><span title=3D"Account supplier" class=3D"informal customer-type-ico=
n account">S+</span><div class=3D"informal">TEST ADDRESS, TEST TOWN, 111111=
</div></li></ul></div></div><div class=3D"clear"></div></div><div id=3D"_el=
m95768923537212_address_name" class=3D"mfec " style=3D""><div class=3D"dlab=
el horizontal"><label for=3D"elm95768923537212_address_name">Site</label></=
div><div class=3D"mfei">
<input id=3D"elm95768923537212_address_name" name=3D"addres=
s_name" type=3D"text" size=3D"30" maxlength=3D"30" value=3D"" autocomplete=
=3D"off"><i id=3D"elm95768923537212_address_name_working" class=3D"icon-spi=
nner icon-spin" style=3D"display:none;"></i><span class=3D"suggest" title=
=3D"This is an autocomplete field"><i class=3D"icon-double-angle-down"></i>=
</span><div id=3D"elm95768923537212_address_name_autocomplete" class=3D"aut=
ocomplete first_load" style=3D"display: none;"></div></div><div class=3D"cl=
ear"></div></div><div id=3D"_elm95768923533710_invoice_number" class=3D"mfe=
c " style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm9576892353=
3710_invoice_number">Invoice number</label></div><div class=3D"mfei"> <inpu=
t id=3D"elm95768923533710_invoice_number" name=3D"invoice_number" type=3D"t=
ext" size=3D"10" maxlength=3D"10"><span class=3D"myyard-form-left-input-tex=
t"></span> <i id=3D"elm95768923533710_invoice_number_working" class=3D"icon=
-spinner icon-spin" style=3D"display:none;"></i></div><div class=3D"clear">=
</div></div><div id=3D"_elm957689235318_date_start" class=3D"mfec " style=
=3D""><div class=3D"dlabel horizontal"><label for=3D"elm957689235318_date_s=
tart">Show invoices since</label></div><div class=3D"mfei"><input type=3D"t=
ext" id=3D"elm957689235318_date_start" class=3D"cal" name=3D"date_start" si=
ze=3D"10" maxlength=3D"10" value=3D"">
=20
<a href=3D"https://devmaster.myyard.co.uk/accounts/cust=
omer_accounts#" class=3D"btn btn-small cal"><i class=3D"icon-calendar"></i>=
</a>
<i id=3D"elm957689235318_date_start_working" class=3D"icon-=
spinner icon-spin" style=3D"display:none;"></i>
<div id=3D"elm957689235318_date_start_calendar_div" cla=
ss=3D" swat-calendar-div-hide"></div>
=20
</div><div class=3D"clear"></div></div><div id=3D"_elm95768=
92353239_date_end" class=3D"mfec " style=3D""><div class=3D"dlabel horizont=
al"><label for=3D"elm9576892353239_date_end">until</label></div><div class=
=3D"mfei"><input type=3D"text" id=3D"elm9576892353239_date_end" class=3D"ca=
l" name=3D"date_end" size=3D"10" maxlength=3D"10" value=3D"">
=20
<a href=3D"https://devmaster.myyard.co.uk/accounts/cust=
omer_accounts#" class=3D"btn btn-small cal"><i class=3D"icon-calendar"></i>=
</a>
<i id=3D"elm9576892353239_date_end_working" class=3D"icon-s=
pinner icon-spin" style=3D"display:none;"></i>
<div id=3D"elm9576892353239_date_end_calendar_div" clas=
s=3D" swat-calendar-div-hide"></div>
=20
</div><div class=3D"clear"></div></div><div id=3D"_elm95768=
923544116_invoice_period_id" class=3D"mfec " style=3D""><div class=3D"dlabe=
l horizontal"><label for=3D"elm95768923544116_invoice_period_id">Customer i=
nvoice period</label></div><div class=3D"mfei"><select id=3D"elm95768923544=
116_invoice_period_id" name=3D"invoice_period_id"><option value=3D" ">-----=
</option><option value=3D"1">Daily</option><option value=3D"2">Weekly</opti=
on><option value=3D"3">Fortnightly</option><option value=3D"4">Monthly</opt=
ion><option value=3D"5">Quarterly</option><option value=3D"6">Annually</opt=
ion></select><i id=3D"elm95768923544116_invoice_period_id_working" class=3D=
"icon-spinner icon-spin" style=3D"display:none;"></i></div><div class=3D"cl=
ear"></div></div><div id=3D"_elm95768923546517_invoice_by" class=3D"mfec " =
style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm95768923546517=
_invoice_by">Send invoice by</label></div><div class=3D"mfei"><select id=3D=
"elm95768923546517_invoice_by" name=3D"invoice_by"><option value=3D" ">----=
-</option><option value=3D"post">Post</option><option value=3D"customer_das=
hboard">Customer dashboard</option><option value=3D"not_required">Not requi=
red</option><option value=3D"email">Email</option></select><i id=3D"elm9576=
8923546517_invoice_by_working" class=3D"icon-spinner icon-spin" style=3D"di=
splay:none;"></i></div><div class=3D"clear"></div></div><div id=3D"_elm9576=
8923604123_currency" class=3D"mfec " style=3D""><div class=3D"dlabel horizo=
ntal"><label for=3D"elm95768923604123_currency" title=3D"This field is requ=
ired">Currency&nbsp;*</label></div><div class=3D"mfei"><i class=3D"icon-war=
ning-sign" id=3D"elm95768923604123_currency_req" style=3D"margin-right: 5px=
; display: none;" title=3D"This field is required"></i><select id=3D"elm957=
68923604123_currency" name=3D"currency" required=3D"true"><option value=3D"=
">-----</option><option value=3D"1" selected=3D"true">=C2=A3 GBP</option><=
option value=3D"2">=E2=82=AC EUR</option><option value=3D"3">$ USD</option>=
</select><i id=3D"elm95768923604123_currency_working" class=3D"icon-spinner=
icon-spin" style=3D"display:none;"></i></div><div class=3D"clear"></div></=
div><div id=3D"_elm95768923547818_order_id" class=3D"mfec " style=3D""><div=
class=3D"dlabel horizontal"><label for=3D"elm95768923547818_order_id">Orde=
r ID</label></div><div class=3D"mfei"><input id=3D"elm95768923547818_order_=
id_fir" autocomplete=3D"off" class=3D"myyard-form-number" name=3D"order_id"=
type=3D"text" size=3D"10" maxlength=3D"10" value=3D""><span class=3D"myyar=
d-form-left-input-text"></span><i id=3D"elm95768923547818_order_id_working"=
class=3D"icon-spinner icon-spin" style=3D"display:none;"></i></div><div cl=
ass=3D"clear"></div></div><div id=3D"_elm95768923549519_invoice_service_typ=
e" class=3D"mfec chosen_dropdown" style=3D""><div class=3D"dlabel horizonta=
l"><label for=3D"elm95768923549519_invoice_service_type">Invoice service ty=
pe</label></div><div class=3D"mfei"> <select id=3D"elm95768923549519_invoic=
e_service_type" name=3D"invoice_service_type[]" class=3D"chosen chzn-done" =
multiple=3D"multiple" style=3D"display: none;"> <option value=3D"*"> All </=
option> <option value=3D"1000"> Skip </option> <option value=3D"2000"> Unit=
</option> <option value=3D"4000"> Haulage </option> <option value=3D"4001"=
> Haulage Supply </option> <option value=3D"4200"> Bulk Haulage Parent </op=
tion> <option value=3D"4300"> Bulk Haulage Supply Parent </option> <option =
value=3D"6000"> Yard trade </option> <option value=3D"7000"> Bin </option> =
<option value=3D"8000"> Product </option> </select><div id=3D"elm9576892354=
9519_invoice_service_type_chzn" class=3D"chzn-container chzn-container-mult=
i" style=3D"width: 206px;" title=3D""><ul class=3D"chzn-choices"><li class=
=3D"search-field"><input type=3D"text" value=3D"Select Some Options" class=
=3D"default" autocomplete=3D"off" style=3D"width: 147px;"></li></ul><div cl=
ass=3D"chzn-drop" style=3D"left: -9000px; width: 204px; top: 29px;"><ul cla=
ss=3D"chzn-results"><li id=3D"elm95768923549519_invoice_service_type_chzn_o=
_0" class=3D"active-result" style=3D""> All </li><li id=3D"elm9576892354951=
9_invoice_service_type_chzn_o_1" class=3D"active-result" style=3D""> Skip <=
/li><li id=3D"elm95768923549519_invoice_service_type_chzn_o_2" class=3D"act=
ive-result" style=3D""> Unit </li><li id=3D"elm95768923549519_invoice_servi=
ce_type_chzn_o_3" class=3D"active-result" style=3D""> Haulage </li><li id=
=3D"elm95768923549519_invoice_service_type_chzn_o_4" class=3D"active-result=
" style=3D""> Haulage Supply </li><li id=3D"elm95768923549519_invoice_servi=
ce_type_chzn_o_5" class=3D"active-result" style=3D""> Bulk Haulage Parent <=
/li><li id=3D"elm95768923549519_invoice_service_type_chzn_o_6" class=3D"act=
ive-result" style=3D""> Bulk Haulage Supply Parent </li><li id=3D"elm957689=
23549519_invoice_service_type_chzn_o_7" class=3D"active-result" style=3D"">=
Yard trade </li><li id=3D"elm95768923549519_invoice_service_type_chzn_o_8"=
class=3D"active-result" style=3D""> Bin </li><li id=3D"elm95768923549519_i=
nvoice_service_type_chzn_o_9" class=3D"active-result" style=3D""> Product <=
/li></ul></div></div> <i id=3D"elm95768923549519_invoice_service_type_worki=
ng" class=3D"icon-spinner icon-spin" style=3D"display:none;"> </i> <div cl=
ass=3D"myyard-required">This is a <abbr title=3D"You can select multiple op=
tions.">Multiselect</abbr> dropdown.</div></div><div class=3D"clear"></div>=
</div><div id=3D"_elm95768923551320_invoice_po" class=3D"mfec " style=3D"">=
<div class=3D"dlabel horizontal"><label for=3D"elm95768923551320_invoice_po=
">Invoice PO</label></div><div class=3D"mfei"> <input id=3D"elm957689235513=
20_invoice_po" name=3D"invoice_po" type=3D"text" size=3D"30" maxlength=3D"3=
0"><span class=3D"myyard-form-left-input-text"></span> <i id=3D"elm95768923=
551320_invoice_po_working" class=3D"icon-spinner icon-spin" style=3D"displa=
y:none;"></i></div><div class=3D"clear"></div></div><div id=3D"" class=3D"m=
fec" style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm957689235=
39514_is_account">Type of customers</label></div><label class=3D"radio" for=
=3D"elm95768923539514_is_account"><input id=3D"elm95768923539514_is_account=
" name=3D"is_account" type=3D"radio" value=3D"1"> Account</label><i id=3D"e=
lm95768923539514_is_account_working" class=3D"icon-spinner icon-spin" style=
=3D"display:none;"></i><label class=3D"radio" for=3D"elm95768923940529_is_a=
ccount"><input id=3D"elm95768923940529_is_account" name=3D"is_account" type=
=3D"radio" value=3D"2"> Non-account</label><i id=3D"elm95768923940529_is_ac=
count_working" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i=
><label class=3D"radio" for=3D"elm95768923942730_is_account"><input id=3D"e=
lm95768923942730_is_account" name=3D"is_account" type=3D"radio" value=3D"0"=
checked=3D"true"> All</label><i id=3D"elm95768923942730_is_account_working=
" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i></div></div>=
<div id=3D"grp9576892351834_" class=3D"mfgv " style=3D""><div id=3D"" class=
=3D"mfec" style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm9576=
892352286_credit_debit">Show only</label></div><label class=3D"radio" for=
=3D"elm9576892352286_credit_debit"><input id=3D"elm9576892352286_credit_deb=
it" name=3D"credit_debit" type=3D"radio" value=3D"1" checked=3D"true"> Sale=
s</label><i id=3D"elm9576892352286_credit_debit_working" class=3D"icon-spin=
ner icon-spin" style=3D"display: none;"></i><label class=3D"radio" for=3D"e=
lm95768923953932_credit_debit"><input id=3D"elm95768923953932_credit_debit"=
name=3D"credit_debit" type=3D"radio" value=3D"2"> Purchases</label><i id=
=3D"elm95768923953932_credit_debit_working" class=3D"icon-spinner icon-spin=
" style=3D"display:none;"></i><label class=3D"radio" for=3D"elm957689239573=
33_credit_debit"><input id=3D"elm95768923957333_credit_debit" name=3D"credi=
t_debit" type=3D"radio" value=3D"0"> All</label><i id=3D"elm95768923957333_=
credit_debit_working" class=3D"icon-spinner icon-spin" style=3D"display: no=
ne;"></i></div><div id=3D"dumelm9576892352727"></div></div><div id=3D"grp95=
76892351885_" class=3D"mfgv " style=3D""><div id=3D"" class=3D"mfec" style=
=3D""><div class=3D"dlabel horizontal"><label for=3D"elm95768923541615_is_c=
losed">Show invoices that are</label></div><label class=3D"radio" for=3D"el=
m95768923541615_is_closed"><input id=3D"elm95768923541615_is_closed" name=
=3D"is_closed" type=3D"radio" value=3D"1"> Closed</label><i id=3D"elm957689=
23541615_is_closed_working" class=3D"icon-spinner icon-spin" style=3D"displ=
ay:none;"></i><label class=3D"radio" for=3D"elm95768923966635_is_closed"><i=
nput id=3D"elm95768923966635_is_closed" name=3D"is_closed" type=3D"radio" v=
alue=3D"2" checked=3D"true"> Open</label><i id=3D"elm95768923966635_is_clos=
ed_working" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i><l=
abel class=3D"radio" for=3D"elm95768923968136_is_closed"><input id=3D"elm95=
768923968136_is_closed" name=3D"is_closed" type=3D"radio" value=3D"0"> All<=
/label><i id=3D"elm95768923968136_is_closed_working" class=3D"icon-spinner =
icon-spin" style=3D"display:none;"></i></div><div id=3D"" class=3D"mfec" st=
yle=3D""><div class=3D"dlabel horizontal"><label for=3D"elm95768923552221_l=
etter_group">Customers starting with</label></div><label class=3D"radio" fo=
r=3D"elm95768923552221_letter_group"><input id=3D"elm95768923552221_letter_=
group" name=3D"letter_group" type=3D"radio" value=3D"1"> A - C</label><i id=
=3D"elm95768923552221_letter_group_working" class=3D"icon-spinner icon-spin=
" style=3D"display:none;"></i><label class=3D"radio" for=3D"elm957689239713=
38_letter_group"><input id=3D"elm95768923971338_letter_group" name=3D"lette=
r_group" type=3D"radio" value=3D"2"> D - J</label><i id=3D"elm9576892397133=
8_letter_group_working" class=3D"icon-spinner icon-spin" style=3D"display:n=
one;"></i><label class=3D"radio" for=3D"elm95768923972539_letter_group"><in=
put id=3D"elm95768923972539_letter_group" name=3D"letter_group" type=3D"rad=
io" value=3D"3"> K - P</label><i id=3D"elm95768923972539_letter_group_worki=
ng" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i><label cla=
ss=3D"radio" for=3D"elm95768923973740_letter_group"><input id=3D"elm9576892=
3973740_letter_group" name=3D"letter_group" type=3D"radio" value=3D"4"> Q -=
Z</label><i id=3D"elm95768923973740_letter_group_working" class=3D"icon-sp=
inner icon-spin" style=3D"display:none;"></i><label class=3D"radio" for=3D"=
elm95768923974841_letter_group"><input id=3D"elm95768923974841_letter_group=
" name=3D"letter_group" type=3D"radio" value=3D"0" checked=3D"true"> All</l=
abel><i id=3D"elm95768923974841_letter_group_working" class=3D"icon-spinner=
icon-spin" style=3D"display:none;"></i></div><div id=3D"" class=3D"mfec" s=
tyle=3D""><div class=3D"dlabel horizontal"><label for=3D"elm95768923554622_=
is_factored">Account Type</label></div><label class=3D"radio" for=3D"elm957=
68923554622_is_factored"><input id=3D"elm95768923554622_is_factored" name=
=3D"is_factored" type=3D"radio" value=3D"1"> Factored</label><i id=3D"elm95=
768923554622_is_factored_working" class=3D"icon-spinner icon-spin" style=3D=
"display:none;"></i><label class=3D"radio" for=3D"elm95768923977943_is_fact=
ored"><input id=3D"elm95768923977943_is_factored" name=3D"is_factored" type=
=3D"radio" value=3D"2"> Non-factored</label><i id=3D"elm95768923977943_is_f=
actored_working" class=3D"icon-spinner icon-spin" style=3D"display:none;"><=
/i><label class=3D"radio" for=3D"elm95768923979144_is_factored"><input id=
=3D"elm95768923979144_is_factored" name=3D"is_factored" type=3D"radio" valu=
e=3D"0" checked=3D"true"> All</label><i id=3D"elm95768923979144_is_factored=
_working" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i></di=
v><div id=3D"" class=3D"mfec" style=3D""><div class=3D"dlabel horizontal"><=
label for=3D"elm95768923605824_show_invoices">Show invoices</label></div><l=
abel class=3D"radio" for=3D"elm95768923605824_show_invoices"><input id=3D"e=
lm95768923605824_show_invoices" name=3D"show_invoices" type=3D"radio" value=
=3D"in_arrears" checked=3D"true"> In arrears</label><i id=3D"elm95768923605=
824_show_invoices_working" class=3D"icon-spinner icon-spin" style=3D"displa=
y:none;"></i><label class=3D"radio" for=3D"elm95768923982246_show_invoices"=
><input id=3D"elm95768923982246_show_invoices" name=3D"show_invoices" type=
=3D"radio" value=3D"in_advance"> In advance</label><i id=3D"elm957689239822=
46_show_invoices_working" class=3D"icon-spinner icon-spin" style=3D"display=
:none;"></i><label class=3D"radio" for=3D"elm95768923983347_show_invoices">=
<input id=3D"elm95768923983347_show_invoices" name=3D"show_invoices" type=
=3D"radio" value=3D"all"> All</label><i id=3D"elm95768923983347_show_invoic=
es_working" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i></=
div><div id=3D"" class=3D"mfec" style=3D""><div class=3D"dlabel horizontal"=
><label for=3D"elm95768923607825_limit">Limit results</label></div><label c=
lass=3D"radio" for=3D"elm95768923607825_limit"><input id=3D"elm957689236078=
25_limit" name=3D"limit" type=3D"radio" value=3D"100" checked=3D"true"> Max=
100 rows</label><i id=3D"elm95768923607825_limit_working" class=3D"icon-sp=
inner icon-spin" style=3D"display:none;"></i><label class=3D"radio" for=3D"=
elm95768923986349_limit"><input id=3D"elm95768923986349_limit" name=3D"limi=
t" type=3D"radio" value=3D"500"> Max 500 rows</label><i id=3D"elm9576892398=
6349_limit_working" class=3D"icon-spinner icon-spin" style=3D"display:none;=
"></i><label class=3D"radio" for=3D"elm95768923987450_limit"><input id=3D"e=
lm95768923987450_limit" name=3D"limit" type=3D"radio" value=3D"1000"> Max 1=
000 rows</label><i id=3D"elm95768923987450_limit_working" class=3D"icon-spi=
nner icon-spin" style=3D"display:none;"></i><label class=3D"radio" for=3D"e=
lm95768923988551_limit"><input id=3D"elm95768923988551_limit" name=3D"limit=
" type=3D"radio" value=3D"2000"> Max 2000 rows</label><i id=3D"elm957689239=
88551_limit_working" class=3D"icon-spinner icon-spin" style=3D"display:none=
;"></i><label class=3D"radio" for=3D"elm95768923989552_limit"><input id=3D"=
elm95768923989552_limit" name=3D"limit" type=3D"radio" value=3D"5000"> Max =
5000 rows</label><i id=3D"elm95768923989552_limit_working" class=3D"icon-sp=
inner icon-spin" style=3D"display:none;"></i></div><div id=3D"" class=3D"mf=
ec" style=3D""><div class=3D"dlabel horizontal"><label for=3D"elm9576892361=
26_order_by">Order by</label></div><label class=3D"radio" for=3D"elm9576892=
36126_order_by"><input id=3D"elm957689236126_order_by" name=3D"order_by" ty=
pe=3D"radio" value=3D"0" checked=3D"true"> Most recent first</label><i id=
=3D"elm957689236126_order_by_working" class=3D"icon-spinner icon-spin" styl=
e=3D"display:none;"></i><label class=3D"radio" for=3D"elm95768923992654_ord=
er_by"><input id=3D"elm95768923992654_order_by" name=3D"order_by" type=3D"r=
adio" value=3D"1"> Alphabetical</label><i id=3D"elm95768923992654_order_by_=
working" class=3D"icon-spinner icon-spin" style=3D"display:none;"></i></div=
><div id=3D"" class=3D"mfec" style=3D""><div class=3D"dlabel horizontal"><l=
abel for=3D"elm95768923611827_hide_sub_rows"></label></div><label class=3D"=
radio" for=3D"elm95768923613528_hide_sub_rows"><input id=3D"elm957689236135=
28_hide_sub_rows" name=3D"hide_sub_rows" type=3D"checkbox" value=3D"true" c=
hecked=3D"checked"> Show invoices headers only</label><i id=3D"elm957689236=
13528_hide_sub_rows_working" class=3D"icon-spinner icon-spin" style=3D"disp=
lay:none;"></i></div></div></div></div><div></div><div class=3D"clear"></di=
v><div id=3D"frm9576892351381_err" class=3D"alert alert-block" style=3D"dis=
play: none;">
<button class=3D"close" type=3D"button" title=3D"Dismiss this M=
essage">=C3=97</button>
<h4 class=3D"alert-heading">Missing fields</h4>
<p>There are missing fields which are required to continue.</p>
</div><div id=3D"frm9576892351381_buttonbar" class=3D"clear myy=
ard-footer-form-field" style=3D""><button id=3D"" type=3D"submit" class=3D"=
btn "><strong>Apply filter</strong></button><span class=3D"btn toggle_filt=
er_button btn-default" style=3D"">Toggle filter form</span></div><div id=3D=
"frm9576892351381_working" style=3D"display: none;" class=3D"working"><i cl=
ass=3D"icon-spinner icon-spin"></i><span>Working..</span></div><div class=
=3D"clear"></div></form><div id=3D"below_filter"><div id=3D"MyYardDisclosur=
e9577009378082" class=3D"dg_invoices"><div id=3D"MyYardDisclosure9577009378=
082_main" class=3D"myyard-disclosure extended-disclosure"><div id=3D"MyYard=
Disclosure9577009378082_header" class=3D"myyard-disclosure-header"><span cl=
ass=3D"myyard-disclosure-title"><i class=3D"icon-collapse-top"></i> Invoice=
s</span></div><div id=3D"MyYardDisclosure9577009378082_body" class=3D"myyar=
d-disclosure-container"><div class=3D"clear"><div class=3D"action-container=
"><h4 style=3D"margin:0 0 8px;">Results are limited to 100 rows</h4><select=
id=3D"MyYardDisclosure9577009378082_frm_slct_top"><option value=3D"">More =
Actions...</option><option class=3D"3" value=3D"https://devmaster.myyard.co=
.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dsend_invoice_by_=
email&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=3D"3" =
multi=3D"true">Email sales invoices</option><option class=3D"4" value=3D"ht=
tps://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;c=
ommand=3Dprint_sales_invoice&amp;invoice_by=3Dpost&amp;tabid=3Dgk40c" depen=
dent=3D"true" disabled=3D"true" target=3D"4" multi=3D"true">Print sales inv=
oices</option><option class=3D"3" value=3D"https://devmaster.myyard.co.uk/a=
jax.php?ac=3Daccounts/customer_accounts&amp;command=3Dsend_invoice_by_email=
&amp;type=3Dconsolidated&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"=
true" target=3D"3" multi=3D"true">Email consolidated invoice</option><optio=
n class=3D"4" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccount=
s/customer_accounts&amp;command=3Dprint_sales_invoice&amp;invoice_by=3Dpost=
&amp;type=3Dconsolidated&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"=
true" target=3D"4">Print consolidated invoice</option><option class=3D"1" v=
alue=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_acco=
unts&amp;command=3Dfrm_tax_code&amp;tabid=3Dgk40c" dependent=3D"true" disab=
led=3D"true" target=3D"1" multi=3D"true">Edit tax code</option><option clas=
s=3D"3" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/cust=
omer_accounts&amp;command=3Dfrm_adjustment_delete_temp_edits&amp;tabid=3Dgk=
40c" dependent=3D"true" disabled=3D"true" target=3D"3">Add credit/debit not=
e</option><option class=3D"3" value=3D"https://devmaster.myyard.co.uk/ajax.=
php?ac=3Daccounts/customer_accounts&amp;command=3Dfrm_adjustment_delete_tem=
p_edits&amp;writeoff=3D1&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"=
true" target=3D"3">Write invoice off as bad debt</option><option class=3D"3=
" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_a=
ccounts&amp;command=3Dfrm_edit_prices_setup&amp;tabid=3Dgk40c" dependent=3D=
"true" disabled=3D"true" target=3D"3">Edit open invoice</option><option cla=
ss=3D"4" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/cus=
tomer_accounts&amp;command=3Dprint_purchanse_invoice&amp;invoice_by=3Dpost&=
amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=3D"4" multi=
=3D"true">Print purchase invoice</option><option class=3D"3" value=3D"https=
://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;comm=
and=3Demail_purchanse_invoice&amp;tabid=3Dgk40c" dependent=3D"true" disable=
d=3D"true" target=3D"3" multi=3D"true">Email purchase invoice</option><opti=
on class=3D"1" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccoun=
ts/customer_accounts&amp;command=3Dfrm_change_invoice_date&amp;tabid=3Dgk40=
c" dependent=3D"true" disabled=3D"true" target=3D"1" multi=3D"true">Change =
invoice date</option><option class=3D"1" value=3D"https://devmaster.myyard.=
co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dsend_invoice_b=
y_bespoke_email&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" tar=
get=3D"1" multi=3D"true">Send copy to bespoke email</option><option class=
=3D"1" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/custo=
mer_accounts&amp;command=3Dfrm_update_invoice_details&amp;tabid=3Dgk40c" de=
pendent=3D"true" disabled=3D"true" target=3D"1">Update invoice details</opt=
ion><option class=3D"1" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=
=3Daccounts/customer_accounts&amp;command=3Dfrm_reopen_invoice&amp;tabid=3D=
gk40c" dependent=3D"true" disabled=3D"true" target=3D"1" multi=3D"true">Reo=
pen invoice</option></select></div><div class=3D"rows"><span>2</span> recor=
ds</div><div class=3D"btn-group responsive_dropdown" data-id=3D"MyYardDiscl=
osure9577009378082" data-count=3D"10" data-url=3D"https://devmaster.myyard.=
co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dsave_responsiv=
e_dropdown&amp;tabid=3Dgk40c">
<a href=3D"https://devmaster.myyard.co.uk/accounts/customer_account=
s#" data-toggle=3D"dropdown" class=3D"btn btn-small dropdown-toggle"><i cla=
ss=3D"icon-caret-down"></i> Display</a>
<ul class=3D"dropdown-menu pull-right">
<li><label><input class=3D"responsive" type=3D"checkbox" checked=3D=
"" name=3D"columns" value=3D"1">Invoice date</label></li><li><label><input =
class=3D"responsive" type=3D"checkbox" checked=3D"" name=3D"columns" value=
=3D"2">Invoice number</label></li><li><label><input class=3D"responsive" ty=
pe=3D"checkbox" checked=3D"" name=3D"columns" value=3D"3">Open / Closed</la=
bel></li><li><label><input class=3D"responsive" type=3D"checkbox" checked=
=3D"" name=3D"columns" value=3D"4">Quantity / In advance quantity</label></=
li><li><label><input class=3D"responsive" type=3D"checkbox" checked=3D"" na=
me=3D"columns" value=3D"5">Company</label></li><li><label><input class=3D"r=
esponsive" type=3D"checkbox" checked=3D"" name=3D"columns" value=3D"6">Invo=
ice address</label></li><li><label><input class=3D"responsive" type=3D"chec=
kbox" checked=3D"" name=3D"columns" value=3D"7">Price</label></li><li><labe=
l><input class=3D"responsive" type=3D"checkbox" checked=3D"" name=3D"column=
s" value=3D"8">Tax</label></li><li><label><input class=3D"responsive" type=
=3D"checkbox" checked=3D"" name=3D"columns" value=3D"9">Net total</label></=
li><li><label><input class=3D"responsive" type=3D"checkbox" checked=3D"" na=
me=3D"columns" value=3D"10">Foreign net total</label></li>
</ul>
</div><span id=3D"MyYardDisclosure9577009378082_frm_toggleRowsAll" clas=
s=3D"btn btn-small default-action " title=3D"Collapse/Expand rows"><i class=
=3D"icon-chevron-sign-right"></i></span><div class=3D"clear"></div><span cl=
ass=3D"btn btn-small default-action" title=3D"Select all rows"><i class=3D"=
icon-check"></i></span><span class=3D"btn btn-small default-action" title=
=3D"Deselect all rows"><i class=3D"icon-check-empty"></i></span><span class=
=3D"btn btn-small default-action selectable active" title=3D"Disables (enab=
les) multi-row selection (by dragging the mouse with clicked left mouse but=
ton)"><i class=3D"icon-resize-full"></i></span></div><table id=3D"MyYardDis=
closure9577009378082_frm" class=3D"myyard-table-view multilevel ui-selectab=
le" style=3D"padding: 0px;"><thead class=3D"tableFloatingHeaderOriginal"><t=
r class=3D"gl-0"><th class=3D"act " rowspan=3D"4"></th><th class=3D"gl-0 ca=
l fc ">Invoice date</th><th class=3D"gl-0 cal">Invoice number</th><th colsp=
an=3D"2" class=3D"gl-0 cal">Open / Closed</th><th class=3D"gl-0 cal">Compan=
y</th><th colspan=3D"2" class=3D"gl-0 cal">Invoice address</th><th class=3D=
"gl-0 car">Tax</th><th class=3D"gl-0 car">Net total</th><th class=3D"gl-0 c=
ar">Foreign net total</th></tr><tr class=3D"gl-1"><th class=3D"gl-1 cal fc =
">Job date</th><th class=3D"gl-1 cal">Order ID</th><th class=3D"gl-1 cal">P=
O</th><th class=3D"gl-1 cal">Quantity / In advance quantity</th><th class=
=3D"gl-1 cal">Service</th><th colspan=3D"3" class=3D"gl-1 cal">Address</th>=
<th class=3D"gl-1 car">Subtotal</th><th colspan=3D"2" class=3D"gl-1 car">Fo=
reign subtotal</th></tr><tr class=3D"gl-2"><th colspan=3D"7" class=3D"gl-2 =
cal fc ">Grade</th><th class=3D"gl-2 car">Weight</th><th colspan=3D"3" clas=
s=3D"gl-2 cal"></th></tr><tr class=3D"gl-3"><th class=3D"gl-3 cal fc ">Pric=
e entity</th><th colspan=3D"3" class=3D"gl-3 cal">Description</th><th class=
=3D"gl-3 car">After</th><th class=3D"gl-3 car">Quantity</th><th class=3D"gl=
-3 car">Price</th><th class=3D"gl-3 car">Foreign price</th><th class=3D"gl-=
3 car">Line total</th><th class=3D"gl-3 car">Foreign line total</th></tr></=
thead><thead class=3D"tableFloatingHeader" style=3D"display: none; opacity:=
0;"><tr class=3D"gl-0"><th class=3D"act " rowspan=3D"4"></th><th class=3D"=
gl-0 cal fc ">Invoice date</th><th class=3D"gl-0 cal">Invoice number</th><t=
h colspan=3D"2" class=3D"gl-0 cal">Open / Closed</th><th class=3D"gl-0 cal"=
>Company</th><th colspan=3D"2" class=3D"gl-0 cal">Invoice address</th><th c=
lass=3D"gl-0 car">Tax</th><th class=3D"gl-0 car">Net total</th><th class=3D=
"gl-0 car">Foreign net total</th></tr><tr class=3D"gl-1"><th class=3D"gl-1 =
cal fc ">Job date</th><th class=3D"gl-1 cal">Order ID</th><th class=3D"gl-1=
cal">PO</th><th class=3D"gl-1 cal">Quantity / In advance quantity</th><th =
class=3D"gl-1 cal">Service</th><th colspan=3D"3" class=3D"gl-1 cal">Address=
</th><th class=3D"gl-1 car">Subtotal</th><th colspan=3D"2" class=3D"gl-1 ca=
r">Foreign subtotal</th></tr><tr class=3D"gl-2"><th colspan=3D"7" class=3D"=
gl-2 cal fc ">Grade</th><th class=3D"gl-2 car">Weight</th><th colspan=3D"3"=
class=3D"gl-2 cal"></th></tr><tr class=3D"gl-3"><th class=3D"gl-3 cal fc "=
>Price entity</th><th colspan=3D"3" class=3D"gl-3 cal">Description</th><th =
class=3D"gl-3 car">After</th><th class=3D"gl-3 car">Quantity</th><th class=
=3D"gl-3 car">Price</th><th class=3D"gl-3 car">Foreign price</th><th class=
=3D"gl-3 car">Line total</th><th class=3D"gl-3 car">Foreign line total</th>=
</tr></thead><tbody class=3D"gl-0 tgl eo ui-selectee"><tr class=3D"gl-0"><t=
d class=3D"act "><input type=3D"checkbox" name=3D"x" enabledoptions=3D"0_('=
1','2','3','4','5','6','7','8','11','12','13','14')" value=3D"invoice_id[]=
=3D35426&amp;invoice_number_str[]=3DOUT-14302&amp;is_exported[]=3Df&amp;" d=
ata-row_data=3D"{&quot;invoice_id&quot;:&quot;35426&quot;,&quot;invoice_num=
ber_str&quot;:&quot;OUT-14302&quot;,&quot;is_exported&quot;:&quot;f&quot;}"=
></td><td class=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i=
>23/05/2019</td><td class=3D"cal">OUT-14302</td><td colspan=3D"2" class=3D"=
cal">Open</td><td class=3D"cal">TEST CUSTOMER</td><td colspan=3D"2" class=
=3D"cal">TEST ADDRESS, TEST TOWN, 111111</td><td class=3D"car">20.00%</td><=
td class=3D"car">=C2=A3100.00</td><td class=3D"car"></td></tr></tbody><tbod=
y class=3D" gl-1 "><tr class=3D"gl-1"><td class=3D"act "></td><td class=
=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i>23/05/2019</td=
><td class=3D"cal">146567</td><td class=3D"cal"></td><td class=3D"cal"></td=
><td class=3D"cal">NEWSK - 10 (Open)</td><td colspan=3D"3" class=3D"cal">TE=
ST ADDRESS, TEST TOWN, 111111&nbsp;<a href=3D"https://devmaster.myyard.co.u=
k/system/address&amp;customer_address_id=3D10322" title=3D"Set coordinates"=
target=3D"_blank"><i class=3D"icon-map-marker"></i></a></td><td class=3D"c=
ar">=C2=A3100.00</td><td colspan=3D"2" class=3D"car"></td></tr></tbody><tbo=
dy class=3D" gl-2 "><tr class=3D"gl-2"><td class=3D"act "></td><td colspa=
n=3D"7" class=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i><=
/td><td class=3D"car"></td><td colspan=3D"3" class=3D"cal"></td></tr></tbod=
y><tbody class=3D" gl-3 "><tr class=3D"gl-3"><td class=3D"act "></td><td =
class=3D"cal fc ">item</td><td colspan=3D"3" class=3D"cal">test price</td><=
td class=3D"car"></td><td class=3D"car"></td><td class=3D"car">=C2=A3 =
100.00</td><td class=3D"car"></td><td class=3D"car">=C2=A3100.00</td><td c=
lass=3D"car"></td></tr></tbody><tbody class=3D"gl-0 tgl eo ui-selectee"><tr=
class=3D"gl-0"><td class=3D"act "><input type=3D"checkbox" name=3D"x" enab=
ledoptions=3D"0_('1','2','3','4','5','6','7','8','11','12','13','14')" valu=
e=3D"invoice_id[]=3D35425&amp;invoice_number_str[]=3DOUT-14301&amp;is_expor=
ted[]=3Df&amp;" data-row_data=3D"{&quot;invoice_id&quot;:&quot;35425&quot;,=
&quot;invoice_number_str&quot;:&quot;OUT-14301&quot;,&quot;is_exported&quot=
;:&quot;f&quot;}"></td><td class=3D"cal fc "><i class=3D"bls icon-chevron-s=
ign-down blm"></i>23/05/2019</td><td class=3D"cal">OUT-14301</td><td colspa=
n=3D"2" class=3D"cal">Open</td><td class=3D"cal">TEST CUSTOMER</td><td cols=
pan=3D"2" class=3D"cal">TEST ADDRESS, TEST TOWN, 111111</td><td class=3D"ca=
r">20.00%</td><td class=3D"car">=C2=A3314.70</td><td class=3D"car"></td></t=
r></tbody><tbody class=3D" gl-1 "><tr class=3D"gl-1"><td class=3D"act "><=
/td><td class=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i>2=
3/05/2019</td><td class=3D"cal">146566</td><td class=3D"cal"></td><td class=
=3D"cal"></td><td class=3D"cal">HAU</td><td colspan=3D"3" class=3D"cal">TES=
T ADDRESS, TEST TOWN, 111111&nbsp;<a href=3D"https://devmaster.myyard.co.uk=
/system/address&amp;customer_address_id=3D10322" title=3D"Set coordinates" =
target=3D"_blank"><i class=3D"icon-map-marker"></i></a></td><td class=3D"ca=
r">=C2=A3214.70</td><td colspan=3D"2" class=3D"car"></td></tr></tbody><tbod=
y class=3D" gl-2 "><tr class=3D"gl-2"><td class=3D"act "></td><td colspan=
=3D"7" class=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i>Mi=
xed Municipal Waste</td><td class=3D"car">0.460 T</td><td colspan=3D"3" cla=
ss=3D"cal"></td></tr></tbody><tbody class=3D" gl-3 "><tr class=3D"gl-3"><=
td class=3D"act "></td><td class=3D"cal fc ">Flat charge</td><td colspan=3D=
"3" class=3D"cal"></td><td class=3D"car">0.000 T</td><td class=3D"car">0.00=
0</td><td class=3D"car">=C2=A3 100.00</td><td class=3D"car"></td><td =
class=3D"car">=C2=A3100.00</td><td class=3D"car"></td></tr></tbody><tbody c=
lass=3D" gl-3 "><tr class=3D"gl-3"><td class=3D"act "></td><td class=3D"c=
al fc ">per tonne</td><td colspan=3D"3" class=3D"cal"></td><td class=3D"car=
">0.000 T</td><td class=3D"car">0.460</td><td class=3D"car">=C2=A3 1=
0.00</td><td class=3D"car"></td><td class=3D"car">=C2=A34.60</td><td class=
=3D"car"></td></tr></tbody><tbody class=3D" gl-2 "><tr class=3D"gl-2"><td=
class=3D"act "></td><td colspan=3D"7" class=3D"cal fc "><i class=3D"bls ic=
on-chevron-sign-down blm"></i></td><td class=3D"car"></td><td colspan=3D"3"=
class=3D"cal"></td></tr></tbody><tbody class=3D" gl-3 "><tr class=3D"gl-=
3"><td class=3D"act "></td><td class=3D"cal fc ">Item</td><td colspan=3D"3"=
class=3D"cal"></td><td class=3D"car">0.000 T</td><td class=3D"car">0.000</=
td><td class=3D"car">=C2=A3 110.10</td><td class=3D"car"></td><td cla=
ss=3D"car">=C2=A3110.10</td><td class=3D"car"></td></tr></tbody><tbody clas=
s=3D" gl-1 "><tr class=3D"gl-1"><td class=3D"act "></td><td class=3D"cal =
fc "><i class=3D"bls icon-chevron-sign-down blm"></i>23/05/2019</td><td cla=
ss=3D"cal">146567</td><td class=3D"cal"></td><td class=3D"cal"></td><td cla=
ss=3D"cal">NEWSK - 10 (Open)</td><td colspan=3D"3" class=3D"cal">TEST ADDRE=
SS, TEST TOWN, 111111&nbsp;<a href=3D"https://devmaster.myyard.co.uk/system=
/address&amp;customer_address_id=3D10322" title=3D"Set coordinates" target=
=3D"_blank"><i class=3D"icon-map-marker"></i></a></td><td class=3D"car">=C2=
=A3100.00</td><td colspan=3D"2" class=3D"car"></td></tr></tbody><tbody clas=
s=3D" gl-2 "><tr class=3D"gl-2"><td class=3D"act "></td><td colspan=3D"7"=
class=3D"cal fc "><i class=3D"bls icon-chevron-sign-down blm"></i>.Foundry=
Sand</td><td class=3D"car"></td><td colspan=3D"3" class=3D"cal"></td></tr>=
</tbody><tbody class=3D" gl-3 "><tr class=3D"gl-3"><td class=3D"act "></t=
d><td class=3D"cal fc ">Flat charge</td><td colspan=3D"3" class=3D"cal"></t=
d><td class=3D"car">0.000 T</td><td class=3D"car">0.000</td><td class=3D"ca=
r">=C2=A3 100.00</td><td class=3D"car"></td><td class=3D"car">=C2=A31=
00.00</td><td class=3D"car"></td></tr></tbody></table><div id=3D"MyYardDisc=
losure9577009378082_frm_working" class=3D"bg-working visibility-hidden "><i=
class=3D"icon-spinner icon-spin" style=3D"vertical-align: middle;"></i><sp=
an style=3D"vertical-align: middle; padding-left: 8px">Working..</span></di=
v><div class=3D"clear"><div class=3D"clear"><div class=3D"action-container =
action-container-top"><select id=3D"MyYardDisclosure9577009378082_frm_slct"=
><option value=3D"">More Actions...</option><option class=3D"3" value=3D"ht=
tps://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;c=
ommand=3Dsend_invoice_by_email&amp;tabid=3Dgk40c" dependent=3D"true" disabl=
ed=3D"true" target=3D"3" multi=3D"true">Email sales invoices</option><optio=
n class=3D"4" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccount=
s/customer_accounts&amp;command=3Dprint_sales_invoice&amp;invoice_by=3Dpost=
&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=3D"4" multi=
=3D"true">Print sales invoices</option><option class=3D"3" value=3D"https:/=
/devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;comman=
d=3Dsend_invoice_by_email&amp;type=3Dconsolidated&amp;tabid=3Dgk40c" depend=
ent=3D"true" disabled=3D"true" target=3D"3" multi=3D"true">Email consolidat=
ed invoice</option><option class=3D"4" value=3D"https://devmaster.myyard.co=
.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dprint_sales_invo=
ice&amp;invoice_by=3Dpost&amp;type=3Dconsolidated&amp;tabid=3Dgk40c" depend=
ent=3D"true" disabled=3D"true" target=3D"4">Print consolidated invoice</opt=
ion><option class=3D"1" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=
=3Daccounts/customer_accounts&amp;command=3Dfrm_tax_code&amp;tabid=3Dgk40c"=
dependent=3D"true" disabled=3D"true" target=3D"1" multi=3D"true">Edit tax =
code</option><option class=3D"3" value=3D"https://devmaster.myyard.co.uk/aj=
ax.php?ac=3Daccounts/customer_accounts&amp;command=3Dfrm_adjustment_delete_=
temp_edits&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=
=3D"3">Add credit/debit note</option><option class=3D"3" value=3D"https://d=
evmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=
=3Dfrm_adjustment_delete_temp_edits&amp;writeoff=3D1&amp;tabid=3Dgk40c" dep=
endent=3D"true" disabled=3D"true" target=3D"3">Write invoice off as bad deb=
t</option><option class=3D"3" value=3D"https://devmaster.myyard.co.uk/ajax.=
php?ac=3Daccounts/customer_accounts&amp;command=3Dfrm_edit_prices_setup&amp=
;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=3D"3">Edit open=
invoice</option><option class=3D"4" value=3D"https://devmaster.myyard.co.u=
k/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dprint_purchanse_in=
voice&amp;invoice_by=3Dpost&amp;tabid=3Dgk40c" dependent=3D"true" disabled=
=3D"true" target=3D"4" multi=3D"true">Print purchase invoice</option><optio=
n class=3D"3" value=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccount=
s/customer_accounts&amp;command=3Demail_purchanse_invoice&amp;tabid=3Dgk40c=
" dependent=3D"true" disabled=3D"true" target=3D"3" multi=3D"true">Email pu=
rchase invoice</option><option class=3D"1" value=3D"https://devmaster.myyar=
d.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dfrm_change_i=
nvoice_date&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=
=3D"1" multi=3D"true">Change invoice date</option><option class=3D"1" value=
=3D"https://devmaster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts=
&amp;command=3Dsend_invoice_by_bespoke_email&amp;tabid=3Dgk40c" dependent=
=3D"true" disabled=3D"true" target=3D"1" multi=3D"true">Send copy to bespok=
e email</option><option class=3D"1" value=3D"https://devmaster.myyard.co.uk=
/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dfrm_update_invoice_=
details&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" target=3D"1=
">Update invoice details</option><option class=3D"1" value=3D"https://devma=
ster.myyard.co.uk/ajax.php?ac=3Daccounts/customer_accounts&amp;command=3Dfr=
m_reopen_invoice&amp;tabid=3Dgk40c" dependent=3D"true" disabled=3D"true" ta=
rget=3D"1" multi=3D"true">Reopen invoice</option></select></div><span id=3D=
"MyYardDisclosure9577009378082_frm_toggleRowsAll_bottom" class=3D"btn btn-s=
mall default-action"><i class=3D"icon-chevron-sign-right"></i></span><div c=
lass=3D"rows"><span>2</span> records</div></div><div class=3D"clear"></div>=
</div><div id=3D"MyYardDisclosure9577009378082_frm_err"></div></div></div><=
/div><div id=3D"MyYardDisclosure9577009378082_frm_output"></div></div></div=
></div></div><div id=3D"shadewin" class=3D"shadewin" style=3D"display: none=
;"></div><div id=3D"shadewin2" class=3D"shadewin2" style=3D"display: none;"=
></div><div id=3D"shadewin3" class=3D"shadewin3" style=3D"display: none;"><=
/div><div id=3D"shadewin_confirm" class=3D"shadewin_confirm" style=3D"displ=
ay: none;"></div><div id=3D"popup" class=3D"modal ui-draggable" style=3D"di=
splay: none;">
<div class=3D"modal-header">
<button type=3D"button" class=3D"close">=C3=97</button>
</div>
<div class=3D"modal-body" id=3D"popupcontent">
<p></p>
</div>
<div class=3D"modal-footer"></div>
</div><div id=3D"popup2" class=3D"modal ui-draggable" style=3D"display:=
none;">
<div class=3D"modal-header">
<button type=3D"button" class=3D"close">=C3=97</button>
</div>
<div class=3D"modal-body" id=3D"popupcontent2">
<p></p>
</div>
<div class=3D"modal-footer"></div>
</div><div id=3D"popup3" class=3D"modal ui-draggable" style=3D"display:=
none;">
<div class=3D"modal-header">
<button type=3D"button" class=3D"close">=C3=97</button>
</div>
<div class=3D"modal-body" id=3D"popupcontent3">
<p></p>
</div>
<div class=3D"modal-footer"></div>
</div>
<div id=3D"popup_confirm" class=3D"modal" style=3D"display: none;">
<div class=3D"modal-header">
<i class=3D"icon-question-sign"></i>
<button type=3D"button" class=3D"close">=C3=97</button>
</div>
<div class=3D"modal-body" id=3D"popupcontent_confirm">
<p></p>
</div>
<div class=3D"modal-footer"></div>
</div><div id=3D"to_the_top" style=3D"opacity: 0.05; left: -34px; displ=
ay: block;"><span>Go up</span></div>
<ul id=3D"context_menu" class=3D"context_menu"><li>Option 1</li><li=
>option 2</li></ul></body></html>
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: text/css
Content-Transfer-Encoding: quoted-printable
Content-Location: https://fonts.googleapis.com/css?family=Roboto:400,700,400italic,700italic
@charset "utf-8";
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2") format("woff2"); unic=
ode-range: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E=
-FE2F; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2") format("woff2"); unic=
ode-range: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2") format("woff2"); unic=
ode-range: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2") format("woff2"); unic=
ode-range: U+370-3FF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2") format("woff2"); unic=
ode-range: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2") format("woff2"); unic=
ode-range: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF,=
U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 400; src=
: local("Roboto Italic"), local("Roboto-Italic"), url("https://fonts.gstati=
c.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xIIzI.woff2") format("woff2"); unicode=
-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-20=
6F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;=
}
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2") format("=
woff2"); unicode-range: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640=
-A69F, U+FE2E-FE2F; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2") format("=
woff2"); unicode-range: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2") format("=
woff2"); unicode-range: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2") format("=
woff2"); unicode-range: U+370-3FF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2") format("=
woff2"); unicode-range: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2") format("=
woff2"); unicode-range: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB,=
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: italic; font-weight: 700; src=
: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("https://fon=
ts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2") format("wof=
f2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2=
DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+=
FEFF, U+FFFD; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu72xKOzY.woff2") format("woff2"); unicode-range=
: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu5mxKOzY.woff2") format("woff2"); unicode-range=
: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu7mxKOzY.woff2") format("woff2"); unicode-range=
: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu4WxKOzY.woff2") format("woff2"); unicode-range=
: U+370-3FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu7WxKOzY.woff2") format("woff2"); unicode-range=
: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu7GxKOzY.woff2") format("woff2"); unicode-range=
: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, =
U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v19/KFOmCnqEu92Fr1Mu4mxK.woff2") format("woff2"); unicode-range: U=
+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F, U+207=
4, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2") format("woff2"); unicode=
-range: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE=
2F; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2") format("woff2"); unicode=
-range: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2") format("woff2"); unicode=
-range: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2") format("woff2"); unicode=
-range: U+370-3FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2") format("woff2"); unicode=
-range: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2") format("woff2"); unicode=
-range: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+=
2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; src=
: local("Roboto Bold"), local("Roboto-Bold"), url("https://fonts.gstatic.co=
m/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBBc4.woff2") format("woff2"); unicode-ra=
nge: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F,=
U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: font/woff2
Content-Transfer-Encoding: base64
Content-Location: https://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xIIzI.woff2
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
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: font/woff2
Content-Transfer-Encoding: base64
Content-Location: https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu4mxK.woff2
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
0QAAAA==
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: font/woff2
Content-Transfer-Encoding: base64
Content-Location: https://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlfBBc4.woff2
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
Q5HBPfJ56Ur6M1yzP4AuGvuwh6ogjiyIjWEA
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: text/css
Content-Transfer-Encoding: quoted-printable
Content-Location: https://devmaster.myyard.co.uk/sheets/.min/common.css?v=0e29bd5a3c6d9e4a
@charset "utf-8";
.clearfix::after, .clearfix::before { display: table; content: ""; line-hei=
ght: 0; }
.clearfix::after { clear: both; }
.hide-text { font: 0px/0 a; color: transparent; text-shadow: none; backgrou=
nd-color: transparent; border: 0px; }
.input-block-level { display: block; width: 100%; min-height: 30px; box-siz=
ing: border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, s=
ection { display: block; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; }
html { font-size: 100%; text-size-adjust: 100%; }
a:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px;=
}
a:active, a:hover { outline: 0px; }
sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-ali=
gn: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img { height: auto; vertical-align: middle; border: 0px; }
#map_canvas img, .google-maps img { max-width: none; }
button, input, select, textarea { margin: 0px; font-size: 100%; vertical-al=
ign: middle; }
button, input { line-height: normal; }
button, html input[type=3D"button"], input[type=3D"reset"], input[type=3D"s=
ubmit"] { -webkit-appearance: button; cursor: pointer; }
button, input[type=3D"button"], input[type=3D"checkbox"], input[type=3D"rad=
io"], input[type=3D"reset"], input[type=3D"submit"], label, select { cursor=
: pointer; }
input[type=3D"search"] { box-sizing: content-box; -webkit-appearance: textf=
ield; }
input[type=3D"search"]::-webkit-search-cancel-button, input[type=3D"search"=
]::-webkit-search-decoration { -webkit-appearance: none; }
textarea { overflow: auto; vertical-align: top; }
@media print {
* { text-shadow: none !important; color: rgb(0, 0, 0) !important; backgro=
und: 0px 0px !important; box-shadow: none !important; }
a, a:visited { text-decoration: underline; }
a[href]::after { content: " (" attr(href) ")"; }
abbr[title]::after { content: " (" attr(title) ")"; }
.ir a::after, a[href^=3D"#"]::after, a[href^=3D"javascript:"]::after { co=
ntent: ""; }
blockquote, pre { border: 1px solid rgb(153, 153, 153); break-inside: avo=
id; }
thead { display: table-header-group; }
img, tr { break-inside: avoid; }
img { max-width: 100% !important; }
@page { margin: 0.5cm; }
h2, h3, p { orphans: 3; widows: 3; }
h2, h3 { break-after: avoid; }
}
body { margin: 0px; line-height: 20px; background-color: rgb(255, 255, 255)=
; }
a { color: rgb(0, 136, 204); text-decoration: none; display: inline-block; =
}
a:focus, a:hover { color: rgb(0, 85, 128); text-decoration: underline; }
.img-rounded { border-radius: 6px; }
.img-polaroid { padding: 4px; background-color: rgb(255, 255, 255); border:=
1px solid rgba(0, 0, 0, 0.2); box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px; =
}
.img-circle { border-radius: 500px; }
.row { margin-left: -20px; }
.row::after, .row::before { display: table; content: ""; line-height: 0; }
.row::after { clear: both; }
[class*=3D"span"] { float: left; min-height: 1px; margin-left: 20px; }
.container, .navbar-fixed-bottom .container, .navbar-fixed-top .container, =
.navbar-static-top .container { width: 940px; }
.span12 { width: 940px; }
.span11 { width: 860px; }
.span10 { width: 780px; }
.span9 { width: 700px; }
.span8 { width: 620px; }
.span7 { width: 540px; }
.span6 { width: 460px; }
.span5 { width: 380px; }
.span4 { width: 300px; }
.span3 { width: 220px; }
.span2 { width: 140px; }
.span1 { width: 60px; }
.offset12 { margin-left: 980px; }
.offset11 { margin-left: 900px; }
.offset10 { margin-left: 820px; }
.offset9 { margin-left: 740px; }
.offset8 { margin-left: 660px; }
.offset7 { margin-left: 580px; }
.offset6 { margin-left: 500px; }
.offset5 { margin-left: 420px; }
.offset4 { margin-left: 340px; }
.offset3 { margin-left: 260px; }
.offset2 { margin-left: 180px; }
.offset1 { margin-left: 100px; }
.row-fluid { width: 100%; }
.row-fluid::after, .row-fluid::before { display: table; content: ""; line-h=
eight: 0; }
.row-fluid::after { clear: both; }
.row-fluid [class*=3D"span"] { display: block; width: 100%; min-height: 30p=
x; box-sizing: border-box; float: left; margin-left: 2.12766%; }
.row-fluid [class*=3D"span"]:first-child { margin-left: 0px; }
.row-fluid .controls-row [class*=3D"span"] + [class*=3D"span"] { margin-lef=
t: 2.12766%; }
.row-fluid .span12 { width: 100%; }
.row-fluid .span11 { width: 91.4894%; }
.row-fluid .span10 { width: 82.9787%; }
.row-fluid .span9 { width: 74.4681%; }
.row-fluid .span8 { width: 65.9574%; }
.row-fluid .span7 { width: 57.4468%; }
.row-fluid .span6 { width: 48.9362%; }
.row-fluid .span5 { width: 40.4255%; }
.row-fluid .span4 { width: 31.9149%; }
.row-fluid .span3 { width: 23.4043%; }
.row-fluid .span2 { width: 14.8936%; }
.row-fluid .span1 { width: 6.38298%; }
.row-fluid .offset12 { margin-left: 104.255%; }
.row-fluid .offset12:first-child { margin-left: 102.128%; }
.row-fluid .offset11 { margin-left: 95.7447%; }
.row-fluid .offset11:first-child { margin-left: 93.617%; }
.row-fluid .offset10 { margin-left: 87.234%; }
.row-fluid .offset10:first-child { margin-left: 85.1064%; }
.row-fluid .offset9 { margin-left: 78.7234%; }
.row-fluid .offset9:first-child { margin-left: 76.5957%; }
.row-fluid .offset8 { margin-left: 70.2128%; }
.row-fluid .offset8:first-child { margin-left: 68.0851%; }
.row-fluid .offset7 { margin-left: 61.7021%; }
.row-fluid .offset7:first-child { margin-left: 59.5745%; }
.row-fluid .offset6 { margin-left: 53.1915%; }
.row-fluid .offset6:first-child { margin-left: 51.0638%; }
.row-fluid .offset5 { margin-left: 44.6809%; }
.row-fluid .offset5:first-child { margin-left: 42.5532%; }
.row-fluid .offset4 { margin-left: 36.1702%; }
.row-fluid .offset4:first-child { margin-left: 34.0426%; }
.row-fluid .offset3 { margin-left: 27.6596%; }
.row-fluid .offset3:first-child { margin-left: 25.5319%; }
.row-fluid .offset2 { margin-left: 19.1489%; }
.row-fluid .offset2:first-child { margin-left: 17.0213%; }
.row-fluid .offset1 { margin-left: 10.6383%; }
.row-fluid .offset1:first-child { margin-left: 8.51064%; }
.row-fluid [class*=3D"span"].hide, [class*=3D"span"].hide { display: none; =
}
.row-fluid [class*=3D"span"].pull-right, [class*=3D"span"].pull-right { flo=
at: right; }
.container { margin-right: auto; margin-left: auto; }
.container::after, .container::before { display: table; content: ""; line-h=
eight: 0; }
.container::after { clear: both; }
.container-fluid { padding-right: 20px; padding-left: 20px; }
.container-fluid::after, .container-fluid::before { display: table; content=
: ""; line-height: 0; }
.container-fluid::after { clear: both; }
p { margin: 0px 0px 10px; }
.lead { margin-bottom: 20px; font-size: 21px; font-weight: 200; line-height=
: 30px; }
small { font-size: 85%; }
strong { font-weight: 700; }
em { font-style: italic; }
cite { font-style: normal; }
.muted { color: rgb(153, 153, 153); }
a.muted:focus, a.muted:hover { color: grey; }
.myyard-table-view th.muted { color: rgb(153, 153, 153); }
.text-warning { color: rgb(192, 152, 83); }
a.text-warning:focus, a.text-warning:hover { color: rgb(164, 126, 60); }
.text-error { color: rgb(185, 74, 72); }
a.text-error:focus, a.text-error:hover { color: rgb(149, 59, 57); }
.text-info { color: rgb(58, 135, 173); }
a.text-info:focus, a.text-info:hover { color: rgb(45, 105, 135); }
.text-success { color: rgb(70, 136, 71); }
a.text-success:focus, a.text-success:hover { color: rgb(53, 102, 53); }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
h1, h2, h3, h4, h5, h6 { margin: 10px 0px; font-family: inherit; font-weigh=
t: 700; line-height: 20px; color: inherit; text-rendering: optimizelegibili=
ty; }
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-weight: 4=
00; line-height: 1; color: rgb(153, 153, 153); }
h1, h2, h3 { line-height: 30px; }
h1 { font-size: 38.5px; }
h2 { font-size: 25px; }
h3 { font-size: 20px; }
h4 { font-size: 17.5px; }
h5 { font-size: 14px; }
h6 { font-size: 11.9px; }
h1 small { font-size: 24.5px; }
h2 small { font-size: 17.5px; }
h3 small { font-size: 14px; }
h4 small { font-size: 14px; }
.page-header { padding-bottom: 9px; margin: 20px 0px 30px; border-bottom: 1=
px solid rgb(238, 238, 238); }
ol, ul { padding: 0px; margin: 0px 0px 10px 25px; }
ol ol, ol ul, ul ol, ul ul { margin-bottom: 0px; }
li { line-height: 20px; }
ol.unstyled, ul.unstyled { margin-left: 0px; list-style: none; }
ol.inline, ul.inline { margin-left: 0px; list-style: none; }
ol.inline > li, ul.inline > li { display: inline-block; padding-left: 5px; =
padding-right: 5px; }
dl { margin-bottom: 20px; }
dd, dt { line-height: 20px; }
dt { font-weight: 700; }
dd { margin-left: 10px; }
.dl-horizontal::after, .dl-horizontal::before { display: table; content: ""=
; line-height: 0; }
.dl-horizontal::after { clear: both; }
.dl-horizontal dt { float: left; width: 160px; clear: left; text-align: rig=
ht; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dl-horizontal dd { margin-left: 180px; }
hr { margin: 20px 0px; border-width: 1px 0px; border-right-style: initial; =
border-left-style: initial; border-right-color: initial; border-left-color:=
initial; border-image: initial; border-top-style: solid; border-top-color:=
rgb(238, 238, 238); border-bottom-style: solid; border-bottom-color: rgb(2=
55, 255, 255); }
abbr[data-original-title], abbr[title] { cursor: help; border-bottom: 1px d=
otted rgb(153, 153, 153); }
abbr.initialism { font-size: 90%; text-transform: uppercase; }
blockquote { padding: 0px 0px 0px 15px; margin: 0px 0px 20px; border-left: =
5px solid rgb(238, 238, 238); }
blockquote p { margin-bottom: 0px; font-size: 17.5px; font-weight: 300; lin=
e-height: 1.25; }
blockquote small { display: block; line-height: 20px; color: rgb(153, 153, =
153); }
blockquote small::before { content: "=E2=80=94=C2=A0"; }
blockquote.pull-right { float: right; padding-right: 15px; padding-left: 0p=
x; border-right: 5px solid rgb(238, 238, 238); border-left: 0px; }
blockquote.pull-right p, blockquote.pull-right small { text-align: right; }
blockquote.pull-right small::before { content: ""; }
blockquote.pull-right small::after { content: "=C2=A0=E2=80=94"; }
blockquote::after, blockquote::before, q::after, q::before { content: ""; }
address { display: block; margin-bottom: 20px; font-style: normal; line-hei=
ght: 20px; }
code, pre { padding: 0px 3px 2px; font-family: Monaco, Menlo, Consolas, "Co=
urier New", monospace; font-size: 12px; color: rgb(51, 51, 51); border-radi=
us: 3px; }
code { padding: 2px 4px; color: rgb(221, 17, 68); background-color: rgb(247=
, 247, 249); border: 1px solid rgb(225, 225, 232); white-space: nowrap; }
pre { display: block; padding: 9.5px; margin: 0px 0px 10px; font-size: 13px=
; line-height: 20px; word-break: break-all; overflow-wrap: break-word; whit=
e-space: pre-wrap; background-color: rgb(245, 245, 245); border: 1px solid =
rgba(0, 0, 0, 0.15); border-radius: 4px; }
pre.prettyprint { margin-bottom: 20px; }
pre code { padding: 0px; color: inherit; white-space: pre-wrap; background-=
color: transparent; border: 0px; }
.pre-scrollable { max-height: 340px; overflow-y: scroll; }
.badge, .label { display: inline-block; padding: 2px 4px; font-size: 11.844=
px; font-weight: 700; line-height: 14px; color: rgb(255, 255, 255); vertica=
l-align: baseline; white-space: nowrap; text-shadow: rgba(0, 0, 0, 0.25) 0p=
x -1px 0px; background-color: rgb(153, 153, 153); }
.label { border-radius: 3px; }
.badge { padding-left: 9px; padding-right: 9px; border-radius: 9px; }
.badge:empty, .label:empty { display: none; }
a.badge:focus, a.badge:hover, a.label:focus, a.label:hover { color: rgb(255=
, 255, 255); text-decoration: none; cursor: pointer; }
.badge-important, .label-important { background-color: rgb(185, 74, 72); }
.badge-important[href], .label-important[href] { background-color: rgb(149,=
59, 57); }
.badge-warning, .label-warning { background-color: rgb(248, 148, 6); }
.badge-warning[href], .label-warning[href] { background-color: rgb(198, 118=
, 5); }
.badge-success, .label-success { background-color: rgb(70, 136, 71); }
.badge-success[href], .label-success[href] { background-color: rgb(53, 102,=
53); }
.badge-info, .label-info { background-color: rgb(58, 135, 173); }
.badge-info[href], .label-info[href] { background-color: rgb(45, 105, 135);=
}
.badge-inverse, .label-inverse { background-color: rgb(51, 51, 51); }
.badge-inverse[href], .label-inverse[href] { background-color: rgb(26, 26, =
26); }
.btn .badge, .btn .label { position: relative; top: -1px; }
.btn-mini .badge, .btn-mini .label { top: 0px; }
table { max-width: 100%; background-color: transparent; border-collapse: co=
llapse; border-spacing: 0px; }
.table { width: 100%; margin-bottom: 20px; }
.table td, .table th { padding: 8px; line-height: 20px; text-align: left; v=
ertical-align: top; border-top: 1px solid rgb(221, 221, 221); }
.table th { font-weight: 700; }
.table thead th { vertical-align: bottom; }
.table caption + thead tr:first-child td, .table caption + thead tr:first-c=
hild th, .table colgroup + thead tr:first-child td, .table colgroup + thead=
tr:first-child th, .table thead:first-child tr:first-child td, .table thea=
d:first-child tr:first-child th { border-top: 0px; }
.table tbody + tbody { border-top: 2px solid rgb(221, 221, 221); }
.table .table { background-color: rgb(255, 255, 255); }
.table-condensed td, .table-condensed th { padding: 4px 5px; }
.table-bordered { border-width: 1px 1px 1px 0px; border-top-style: solid; b=
order-right-style: solid; border-bottom-style: solid; border-top-color: rgb=
(221, 221, 221); border-right-color: rgb(221, 221, 221); border-bottom-colo=
r: rgb(221, 221, 221); border-image: initial; border-collapse: separate; bo=
rder-left-style: initial; border-left-color: initial; border-radius: 4px; }
.table-bordered td, .table-bordered th { border-left: 1px solid rgb(221, 22=
1, 221); }
.table-bordered caption + tbody tr:first-child td, .table-bordered caption =
+ tbody tr:first-child th, .table-bordered caption + thead tr:first-child t=
h, .table-bordered colgroup + tbody tr:first-child td, .table-bordered colg=
roup + tbody tr:first-child th, .table-bordered colgroup + thead tr:first-c=
hild th, .table-bordered tbody:first-child tr:first-child td, .table-border=
ed tbody:first-child tr:first-child th, .table-bordered thead:first-child t=
r:first-child th { border-top: 0px; }
.table-bordered tbody:first-child tr:first-child > td:first-child, .table-b=
ordered tbody:first-child tr:first-child > th:first-child, .table-bordered =
thead:first-child tr:first-child > th:first-child { border-top-left-radius:=
4px; }
.table-bordered tbody:first-child tr:first-child > td:last-child, .table-bo=
rdered tbody:first-child tr:first-child > th:last-child, .table-bordered th=
ead:first-child tr:first-child > th:last-child { border-top-right-radius: 4=
px; }
.table-bordered tbody:last-child tr:last-child > td:first-child, .table-bor=
dered tbody:last-child tr:last-child > th:first-child, .table-bordered tfoo=
t:last-child tr:last-child > td:first-child, .table-bordered tfoot:last-chi=
ld tr:last-child > th:first-child, .table-bordered thead:last-child tr:last=
-child > th:first-child { border-bottom-left-radius: 4px; }
.table-bordered tbody:last-child tr:last-child > td:last-child, .table-bord=
ered tbody:last-child tr:last-child > th:last-child, .table-bordered tfoot:=
last-child tr:last-child > td:last-child, .table-bordered tfoot:last-child =
tr:last-child > th:last-child, .table-bordered thead:last-child tr:last-chi=
ld > th:last-child { border-bottom-right-radius: 4px; }
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { bor=
der-bottom-left-radius: 0px; }
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { bord=
er-bottom-right-radius: 0px; }
.table-bordered caption + tbody tr:first-child td:first-child, .table-borde=
red caption + thead tr:first-child th:first-child, .table-bordered colgroup=
+ tbody tr:first-child td:first-child, .table-bordered colgroup + thead tr=
:first-child th:first-child { border-top-left-radius: 4px; }
.table-bordered caption + tbody tr:first-child td:last-child, .table-border=
ed caption + thead tr:first-child th:last-child, .table-bordered colgroup +=
tbody tr:first-child td:last-child, .table-bordered colgroup + thead tr:fi=
rst-child th:last-child { border-top-right-radius: 4px; }
.table-striped tbody > tr:nth-child(2n+1) > td, .table-striped tbody > tr:n=
th-child(2n+1) > th { background-color: rgb(249, 249, 249); }
.table-hover tbody tr:hover > td, .table-hover tbody tr:hover > th { backgr=
ound-color: rgb(245, 245, 245); }
.row-fluid table td[class*=3D"span"], .row-fluid table th[class*=3D"span"],=
table td[class*=3D"span"], table th[class*=3D"span"] { display: table-cell=
; float: none; margin-left: 0px; }
.table td.span1, .table th.span1 { float: none; width: 44px; margin-left: 0=
px; }
.table td.span2, .table th.span2 { float: none; width: 124px; margin-left: =
0px; }
.table td.span3, .table th.span3 { float: none; width: 204px; margin-left: =
0px; }
.table td.span4, .table th.span4 { float: none; width: 284px; margin-left: =
0px; }
.table td.span5, .table th.span5 { float: none; width: 364px; margin-left: =
0px; }
.table td.span6, .table th.span6 { float: none; width: 444px; margin-left: =
0px; }
.table td.span7, .table th.span7 { float: none; width: 524px; margin-left: =
0px; }
.table td.span8, .table th.span8 { float: none; width: 604px; margin-left: =
0px; }
.table td.span9, .table th.span9 { float: none; width: 684px; margin-left: =
0px; }
.table td.span10, .table th.span10 { float: none; width: 764px; margin-left=
: 0px; }
.table td.span11, .table th.span11 { float: none; width: 844px; margin-left=
: 0px; }
.table td.span12, .table th.span12 { float: none; width: 924px; margin-left=
: 0px; }
.table tbody tr.success > td { background-color: rgb(223, 240, 216); }
.table tbody tr.error > td { background-color: rgb(242, 222, 222); }
.table tbody tr.warning > td { background-color: rgb(252, 248, 227); }
.table tbody tr.info > td { background-color: rgb(217, 237, 247); }
.table-hover tbody tr.success:hover > td { background-color: rgb(208, 233, =
198); }
.table-hover tbody tr.error:hover > td { background-color: rgb(235, 204, 20=
4); }
.table-hover tbody tr.warning:hover > td { background-color: rgb(250, 242, =
204); }
.table-hover tbody tr.info:hover > td { background-color: rgb(196, 227, 243=
); }
form { margin: 0px 0px 20px; }
fieldset { padding: 0px; margin: 0px; border: 0px; }
legend { display: block; width: 100%; padding: 0px; margin-bottom: 20px; fo=
nt-size: 21px; line-height: 40px; color: rgb(51, 51, 51); border-width: 0px=
0px 1px; border-top-style: initial; border-right-style: initial; border-le=
ft-style: initial; border-top-color: initial; border-right-color: initial; =
border-left-color: initial; border-image: initial; border-bottom-style: sol=
id; border-bottom-color: rgb(229, 229, 229); }
legend small { font-size: 15px; color: rgb(153, 153, 153); }
button, input, label, select, textarea { font-size: 14px; font-weight: 400;=
line-height: 20px; }
label { display: block; margin-bottom: 5px; }
.uneditable-input, input[type=3D"color"], input[type=3D"date"], input[type=
=3D"datetime-local"], input[type=3D"datetime"], input[type=3D"email"], inpu=
t[type=3D"month"], input[type=3D"number"], input[type=3D"password"], input[=
type=3D"search"], input[type=3D"tel"], input[type=3D"text"], input[type=3D"=
time"], input[type=3D"url"], input[type=3D"week"], select, textarea { displ=
ay: inline-block; height: 20px; padding: 4px 6px; margin-bottom: 10px; font=
-size: 14px; line-height: 20px; color: rgb(85, 85, 85); border-radius: 4px;=
vertical-align: middle; }
.uneditable-input, input, textarea { width: 206px; }
textarea { height: auto; }
.uneditable-input, input[type=3D"color"], input[type=3D"date"], input[type=
=3D"datetime-local"], input[type=3D"datetime"], input[type=3D"email"], inpu=
t[type=3D"month"], input[type=3D"number"], input[type=3D"password"], input[=
type=3D"search"], input[type=3D"tel"], input[type=3D"text"], input[type=3D"=
time"], input[type=3D"url"], input[type=3D"week"], textarea { background-co=
lor: rgb(255, 255, 255); border-width: 1px; border-style: solid; border-col=
or: rgb(204, 204, 204) rgb(204, 204, 204) rgb(179, 179, 179); box-shadow: r=
gba(0, 0, 0, 0.075) 0px 1px 1px inset; transition: border 0.2s linear 0s, b=
ox-shadow 0.2s linear 0s; }
.uneditable-input:focus, input[type=3D"color"]:focus, input[type=3D"date"]:=
focus, input[type=3D"datetime-local"]:focus, input[type=3D"datetime"]:focus=
, input[type=3D"email"]:focus, input[type=3D"month"]:focus, input[type=3D"n=
umber"]:focus, input[type=3D"password"]:focus, input[type=3D"search"]:focus=
, input[type=3D"tel"]:focus, input[type=3D"text"]:focus, input[type=3D"time=
"]:focus, input[type=3D"url"]:focus, input[type=3D"week"]:focus, select:foc=
us, textarea:focus { border-color: rgb(65, 64, 66); outline: 0px; }
input[type=3D"checkbox"], input[type=3D"radio"] { margin: 4px 0px 0px; line=
-height: normal; }
input[type=3D"button"], input[type=3D"checkbox"], input[type=3D"file"], inp=
ut[type=3D"image"], input[type=3D"radio"], input[type=3D"reset"], input[typ=
e=3D"submit"] { width: auto; }
input[type=3D"file"], select { height: 30px; line-height: 30px; }
select { width: 220px; border-width: 1px; border-style: solid; border-color=
: rgb(204, 204, 204) rgb(204, 204, 204) rgb(179, 179, 179); background-colo=
r: rgb(255, 255, 255); }
select[multiple], select[size] { height: auto; }
input[type=3D"checkbox"]:focus, input[type=3D"file"]:focus, input[type=3D"r=
adio"]:focus { outline: 0px; }
.uneditable-input, .uneditable-textarea { color: rgb(153, 153, 153); backgr=
ound-color: rgb(252, 252, 252); border-color: rgb(204, 204, 204); box-shado=
w: rgba(0, 0, 0, 0.024) 0px 1px 2px inset; cursor: not-allowed; }
.uneditable-input { overflow: hidden; white-space: nowrap; }
.uneditable-textarea { width: auto; height: auto; }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { col=
or: rgb(153, 153, 153); }
.checkbox, .radio { min-height: 20px; padding-left: 20px; }
.checkbox input[type=3D"checkbox"], .radio input[type=3D"radio"] { float: l=
eft; margin-left: -20px; }
.controls > .checkbox:first-child, .controls > .radio:first-child { padding=
-top: 5px; }
.checkbox.inline, .radio.inline { display: inline-block; padding-top: 5px; =
margin-bottom: 0px; vertical-align: middle; }
.checkbox.inline + .checkbox.inline, .radio.inline + .radio.inline { margin=
-left: 10px; }
.input-mini { width: 60px; }
.input-small { width: 90px; }
.input-medium { width: 150px; }
.input-large { width: 210px; }
.input-xlarge { width: 270px; }
.input-xxlarge { width: 530px; }
.row-fluid .uneditable-input[class*=3D"span"], .row-fluid input[class*=3D"s=
pan"], .row-fluid select[class*=3D"span"], .row-fluid textarea[class*=3D"sp=
an"], .uneditable-input[class*=3D"span"], input[class*=3D"span"], select[cl=
ass*=3D"span"], textarea[class*=3D"span"] { float: none; margin-left: 0px; =
}
.input-append .uneditable-input[class*=3D"span"], .input-append input[class=
*=3D"span"], .input-prepend .uneditable-input[class*=3D"span"], .input-prep=
end input[class*=3D"span"], .row-fluid .input-append [class*=3D"span"], .ro=
w-fluid .input-prepend [class*=3D"span"], .row-fluid .uneditable-input[clas=
s*=3D"span"], .row-fluid input[class*=3D"span"], .row-fluid select[class*=
=3D"span"], .row-fluid textarea[class*=3D"span"] { display: inline-block; }
.uneditable-input, input, textarea { margin-left: 0px; }
.controls-row [class*=3D"span"] + [class*=3D"span"] { margin-left: 20px; }
.uneditable-input.span12, input.span12, textarea.span12 { width: 926px; }
.uneditable-input.span11, input.span11, textarea.span11 { width: 846px; }
.uneditable-input.span10, input.span10, textarea.span10 { width: 766px; }
.uneditable-input.span9, input.span9, textarea.span9 { width: 686px; }
.uneditable-input.span8, input.span8, textarea.span8 { width: 606px; }
.uneditable-input.span7, input.span7, textarea.span7 { width: 526px; }
.uneditable-input.span6, input.span6, textarea.span6 { width: 446px; }
.uneditable-input.span5, input.span5, textarea.span5 { width: 366px; }
.uneditable-input.span4, input.span4, textarea.span4 { width: 286px; }
.uneditable-input.span3, input.span3, textarea.span3 { width: 206px; }
.uneditable-input.span2, input.span2, textarea.span2 { width: 126px; }
.uneditable-input.span1, input.span1, textarea.span1 { width: 46px; }
.controls-row::after, .controls-row::before { display: table; content: ""; =
line-height: 0; }
.controls-row::after { clear: both; }
.controls-row [class*=3D"span"], .row-fluid .controls-row [class*=3D"span"]=
{ float: left; }
.controls-row .checkbox[class*=3D"span"], .controls-row .radio[class*=3D"sp=
an"] { padding-top: 5px; }
input[disabled], input[readonly], select[disabled], select[readonly], texta=
rea[disabled], textarea[readonly] { cursor: not-allowed; background-color: =
rgb(238, 238, 238); }
input[type=3D"checkbox"][disabled], input[type=3D"checkbox"][readonly], inp=
ut[type=3D"radio"][disabled], input[type=3D"radio"][readonly] { background-=
color: transparent; }
.control-group.warning .control-label, .control-group.warning .help-block, =
.control-group.warning .help-inline { color: rgb(192, 152, 83); }
.control-group.warning .checkbox, .control-group.warning .radio, .control-g=
roup.warning input, .control-group.warning select, .control-group.warning t=
extarea { color: rgb(192, 152, 83); }
.control-group.warning input, .control-group.warning select, .control-group=
.warning textarea { border-color: rgb(192, 152, 83); box-shadow: rgba(0, 0,=
0, 0.075) 0px 1px 1px inset; }
.control-group.warning input:focus, .control-group.warning select:focus, .c=
ontrol-group.warning textarea:focus { border-color: rgb(164, 126, 60); }
.control-group.warning .input-append .add-on, .control-group.warning .input=
-prepend .add-on { color: rgb(192, 152, 83); background-color: rgb(252, 248=
, 227); border-color: rgb(192, 152, 83); }
.control-group.error .control-label, .control-group.error .help-block, .con=
trol-group.error .help-inline { color: rgb(185, 74, 72); }
.control-group.error .checkbox, .control-group.error .radio, .control-group=
.error input, .control-group.error select, .control-group.error textarea { =
color: rgb(185, 74, 72); }
.control-group.error input, .control-group.error select, .control-group.err=
or textarea { border-color: rgb(185, 74, 72); box-shadow: rgba(0, 0, 0, 0.0=
75) 0px 1px 1px inset; }
.control-group.error input:focus, .control-group.error select:focus, .contr=
ol-group.error textarea:focus { border-color: rgb(149, 59, 57); }
.control-group.error .input-append .add-on, .control-group.error .input-pre=
pend .add-on { color: rgb(185, 74, 72); background-color: rgb(242, 222, 222=
); border-color: rgb(185, 74, 72); }
.control-group.success .control-label, .control-group.success .help-block, =
.control-group.success .help-inline { color: rgb(70, 136, 71); }
.control-group.success .checkbox, .control-group.success .radio, .control-g=
roup.success input, .control-group.success select, .control-group.success t=
extarea { color: rgb(70, 136, 71); }
.control-group.success input, .control-group.success select, .control-group=
.success textarea { border-color: rgb(70, 136, 71); box-shadow: rgba(0, 0, =
0, 0.075) 0px 1px 1px inset; }
.control-group.success input:focus, .control-group.success select:focus, .c=
ontrol-group.success textarea:focus { border-color: rgb(53, 102, 53); }
.control-group.success .input-append .add-on, .control-group.success .input=
-prepend .add-on { color: rgb(70, 136, 71); background-color: rgb(223, 240,=
216); border-color: rgb(70, 136, 71); }
.control-group.info .control-label, .control-group.info .help-block, .contr=
ol-group.info .help-inline { color: rgb(58, 135, 173); }
.control-group.info .checkbox, .control-group.info .radio, .control-group.i=
nfo input, .control-group.info select, .control-group.info textarea { color=
: rgb(58, 135, 173); }
.control-group.info input, .control-group.info select, .control-group.info =
textarea { border-color: rgb(58, 135, 173); box-shadow: rgba(0, 0, 0, 0.075=
) 0px 1px 1px inset; }
.control-group.info input:focus, .control-group.info select:focus, .control=
-group.info textarea:focus { border-color: rgb(45, 105, 135); }
.control-group.info .input-append .add-on, .control-group.info .input-prepe=
nd .add-on { color: rgb(58, 135, 173); background-color: rgb(217, 237, 247)=
; border-color: rgb(58, 135, 173); }
.form-actions { padding: 19px 20px 20px; margin-top: 20px; margin-bottom: 2=
0px; background-color: rgb(245, 245, 245); border-top: 1px solid rgb(229, 2=
29, 229); }
.form-actions::after, .form-actions::before { display: table; content: ""; =
line-height: 0; }
.form-actions::after { clear: both; }
.input-append, .input-prepend { display: inline-block; margin-bottom: 10px;=
vertical-align: middle; font-size: 0px; }
.input-append .dropdown-menu, .input-append .popover, .input-append .unedit=
able-input, .input-append input, .input-append select, .input-prepend .drop=
down-menu, .input-prepend .popover, .input-prepend .uneditable-input, .inpu=
t-prepend input, .input-prepend select { font-size: 14px; }
.input-append .uneditable-input, .input-append input, .input-append select,=
.input-prepend .uneditable-input, .input-prepend input, .input-prepend sel=
ect { position: relative; margin-bottom: 0px; vertical-align: top; border-r=
adius: 0px 4px 4px 0px; }
.input-append .uneditable-input:focus, .input-append input:focus, .input-ap=
pend select:focus, .input-prepend .uneditable-input:focus, .input-prepend i=
nput:focus, .input-prepend select:focus { z-index: 2; }
.input-append .add-on, .input-prepend .add-on { display: inline-block; widt=
h: auto; height: 20px; min-width: 16px; padding: 4px 5px; font-size: 14px; =
font-weight: 400; line-height: 20px; text-align: center; text-shadow: rgb(2=
55, 255, 255) 0px 1px 0px; background-color: rgb(238, 238, 238); border: 1p=
x solid rgb(204, 204, 204); }
.input-append .add-on, .input-append .btn, .input-append .btn-group > .drop=
down-toggle, .input-prepend .add-on, .input-prepend .btn, .input-prepend .b=
tn-group > .dropdown-toggle { vertical-align: top; border-radius: 0px; }
.input-prepend .add-on, .input-prepend .btn { margin-right: -1px; }
.input-prepend .add-on:first-child, .input-prepend .btn:first-child { borde=
r-radius: 4px 0px 0px 4px; }
.input-append .uneditable-input, .input-append input, .input-append select =
{ border-radius: 4px 0px 0px 4px; }
.input-append .uneditable-input + .btn-group .btn:last-child, .input-append=
input + .btn-group .btn:last-child, .input-append select + .btn-group .btn=
:last-child { border-radius: 0px 4px 4px 0px; }
.input-append .add-on, .input-append .btn, .input-append .btn-group { margi=
n-left: -1px; }
.input-append .add-on:last-child, .input-append .btn-group:last-child > .dr=
opdown-toggle, .input-append .btn:last-child { border-radius: 0px 4px 4px 0=
px; }
.input-prepend.input-append .uneditable-input, .input-prepend.input-append =
input, .input-prepend.input-append select { border-radius: 0px; }
.input-prepend.input-append .uneditable-input + .btn-group .btn, .input-pre=
pend.input-append input + .btn-group .btn, .input-prepend.input-append sele=
ct + .btn-group .btn { border-radius: 0px 4px 4px 0px; }
.input-prepend.input-append .add-on:first-child, .input-prepend.input-appen=
d .btn:first-child { margin-right: -1px; border-radius: 4px 0px 0px 4px; }
.input-prepend.input-append .add-on:last-child, .input-prepend.input-append=
.btn:last-child { margin-left: -1px; border-radius: 0px 4px 4px 0px; }
.input-prepend.input-append .btn-group:first-child { margin-left: 0px; }
input.search-query { padding-right: 14px; padding-left: 14px; margin-bottom=
: 0px; border-radius: 15px; }
.form-search .input-append .search-query, .form-search .input-prepend .sear=
ch-query { border-radius: 0px; }
.form-search .input-append .search-query { border-radius: 14px 0px 0px 14px=
; }
.form-search .input-append .btn { border-radius: 0px 14px 14px 0px; }
.form-search .input-prepend .search-query { border-radius: 0px 14px 14px 0p=
x; }
.form-search .input-prepend .btn { border-radius: 14px 0px 0px 14px; }
.form-horizontal .help-inline, .form-horizontal .input-append, .form-horizo=
ntal .input-prepend, .form-horizontal .uneditable-input, .form-horizontal i=
nput, .form-horizontal select, .form-horizontal textarea, .form-inline .hel=
p-inline, .form-inline .input-append, .form-inline .input-prepend, .form-in=
line .uneditable-input, .form-inline input, .form-inline select, .form-inli=
ne textarea, .form-search .help-inline, .form-search .input-append, .form-s=
earch .input-prepend, .form-search .uneditable-input, .form-search input, .=
form-search select, .form-search textarea { display: inline-block; margin-b=
ottom: 0px; vertical-align: middle; }
.form-horizontal .hide, .form-inline .hide, .form-search .hide { display: n=
one; }
.form-inline .btn-group, .form-inline label, .form-search .btn-group, .form=
-search label { display: inline-block; }
.form-inline .input-append, .form-inline .input-prepend, .form-search .inpu=
t-append, .form-search .input-prepend { margin-bottom: 0px; }
.form-inline .checkbox, .form-inline .radio, .form-search .checkbox, .form-=
search .radio { padding-left: 0px; margin-bottom: 0px; vertical-align: midd=
le; }
.form-inline .checkbox input[type=3D"checkbox"], .form-inline .radio input[=
type=3D"radio"], .form-search .checkbox input[type=3D"checkbox"], .form-sea=
rch .radio input[type=3D"radio"] { float: left; margin-right: 3px; margin-l=
eft: 0px; }
.control-group { margin-bottom: 10px; }
legend + .control-group { margin-top: 20px; -webkit-margin-top-collapse: se=
parate; }
.form-horizontal .control-group { margin-bottom: 20px; }
.form-horizontal .control-group::after, .form-horizontal .control-group::be=
fore { display: table; content: ""; line-height: 0; }
.form-horizontal .control-group::after { clear: both; }
.form-horizontal .control-label { float: left; width: 160px; padding-top: 5=
px; text-align: right; }
.form-horizontal .controls { margin-left: 180px; }
.form-horizontal .help-block { margin-bottom: 0px; }
.form-horizontal .input-append + .help-block, .form-horizontal .input-prepe=
nd + .help-block, .form-horizontal .uneditable-input + .help-block, .form-h=
orizontal input + .help-block, .form-horizontal select + .help-block, .form=
-horizontal textarea + .help-block { margin-top: 10px; }
.form-horizontal .form-actions { padding-left: 180px; }
.btn { display: inline-block; padding: 4px 12px; margin-bottom: 0px; font-s=
ize: 14px; line-height: 20px; text-align: center; vertical-align: middle; c=
ursor: pointer; color: rgb(51, 51, 51); text-shadow: rgba(255, 255, 255, 0.=
75) 0px 1px 1px; background-color: rgb(245, 245, 245); background-image: li=
near-gradient(rgb(255, 255, 255), rgb(230, 230, 230)); background-repeat: r=
epeat-x; border-width: 1px; border-style: solid; border-color: rgb(204, 204=
, 204) rgb(204, 204, 204) rgb(179, 179, 179); border-image: initial; border=
-radius: 4px; box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px inset, rgba(=
0, 0, 0, 0.05) 0px 1px 2px; }
.btn.active, .btn.disabled, .btn:active, .btn:focus, .btn:hover, .btn[disab=
led] { color: rgb(51, 51, 51); background-color: rgb(230, 230, 230); }
.btn:focus, .btn:hover { color: rgb(51, 51, 51); text-decoration: none; bac=
kground-position: 0px -15px; transition: background-position 0.1s linear 0s=
; }
.btn:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -2=
px; }
.btn.active, .btn:active { background-image: none; outline: 0px; box-shadow=
: rgba(0, 0, 0, 0.15) 0px 2px 4px inset, rgba(0, 0, 0, 0.05) 0px 1px 2px; }
.btn.disabled, .btn[disabled] { cursor: default; background-image: none; op=
acity: 0.65; box-shadow: none; }
.btn-large { padding: 11px 19px; font-size: 17.5px; border-radius: 6px; }
.btn-large [class*=3D" icon-"], .btn-large [class^=3D"icon-"] { margin-top:=
4px; }
.btn-small { padding: 2px 10px; font-size: 11.9px; border-radius: 3px; }
.btn-small [class*=3D" icon-"], .btn-small [class^=3D"icon-"] { margin-top:=
0px; }
.btn-mini [class*=3D" icon-"], .btn-mini [class^=3D"icon-"] { margin-top: -=
1px; }
.btn-mini { padding: 0px 6px; font-size: 10.5px; border-radius: 3px; }
.btn-block { display: block; width: 100%; padding-left: 0px; padding-right:=
0px; box-sizing: border-box; }
.btn-block + .btn-block { margin-top: 5px; }
input[type=3D"button"].btn-block, input[type=3D"reset"].btn-block, input[ty=
pe=3D"submit"].btn-block { width: 100%; }
.btn-danger.active, .btn-info.active, .btn-inverse.active, .btn-primary.act=
ive, .btn-success.active, .btn-warning.active { color: rgba(255, 255, 255, =
0.75); }
.btn-primary { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) =
0px -1px 0px; background-color: rgb(0, 109, 204); background-image: linear-=
gradient(rgb(213, 213, 215), rgb(0, 68, 204)); background-repeat: repeat-x;=
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
.btn-primary.active, .btn-primary.disabled, .btn-primary:active, .btn-prima=
ry:focus, .btn-primary:hover, .btn-primary[disabled] { color: rgb(255, 255,=
255); background-color: rgb(0, 68, 204); }
.btn-warning { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) =
0px -1px 0px; background-color: rgb(250, 167, 50); background-image: linear=
-gradient(rgb(251, 180, 80), rgb(248, 148, 6)); background-repeat: repeat-x=
; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); =
}
.btn-warning.active, .btn-warning.disabled, .btn-warning:active, .btn-warni=
ng:focus, .btn-warning:hover, .btn-warning[disabled] { color: rgb(255, 255,=
255); background-color: rgb(248, 148, 6); }
.btn-danger { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) 0=
px -1px 0px; background-color: rgb(218, 79, 73); background-image: linear-g=
radient(rgb(238, 95, 91), rgb(189, 54, 47)); background-repeat: repeat-x; b=
order-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
.btn-danger.active, .btn-danger.disabled, .btn-danger:active, .btn-danger:f=
ocus, .btn-danger:hover, .btn-danger[disabled] { color: rgb(255, 255, 255);=
background-color: rgb(189, 54, 47); }
.btn-success { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) =
0px -1px 0px; background-color: rgb(91, 183, 91); background-image: linear-=
gradient(rgb(98, 196, 98), rgb(81, 163, 81)); background-repeat: repeat-x; =
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
.btn-success.active, .btn-success.disabled, .btn-success:active, .btn-succe=
ss:focus, .btn-success:hover, .btn-success[disabled] { color: rgb(255, 255,=
255); background-color: rgb(81, 163, 81); }
.btn-info { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) 0px=
-1px 0px; background-color: rgb(73, 175, 205); background-image: linear-gr=
adient(rgb(91, 192, 222), rgb(47, 150, 180)); background-repeat: repeat-x; =
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
.btn-info.active, .btn-info.disabled, .btn-info:active, .btn-info:focus, .b=
tn-info:hover, .btn-info[disabled] { color: rgb(255, 255, 255); background-=
color: rgb(47, 150, 180); }
.btn-inverse { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.25) =
0px -1px 0px; background-color: rgb(54, 54, 54); background-image: linear-g=
radient(rgb(68, 68, 68), rgb(34, 34, 34)); background-repeat: repeat-x; bor=
der-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
.btn-inverse.active, .btn-inverse.disabled, .btn-inverse:active, .btn-inver=
se:focus, .btn-inverse:hover, .btn-inverse[disabled] { color: rgb(255, 255,=
255); background-color: rgb(34, 34, 34); }
.btn-link, .btn-link:active, .btn-link[disabled] { background-color: transp=
arent; background-image: none; box-shadow: none; }
.btn-link { border-color: transparent; cursor: pointer; color: rgb(213, 213=
, 215); border-radius: 0px; }
.btn-link:focus, .btn-link:hover { color: rgb(0, 85, 128); text-decoration:=
underline; background-color: transparent; }
.btn-link[disabled]:focus, .btn-link[disabled]:hover { color: rgb(51, 51, 5=
1); text-decoration: none; }
.btn-group { position: relative; display: inline-block; font-size: 1em; ver=
tical-align: middle; white-space: nowrap; }
.btn-group + .btn-group { margin-left: 5px; }
.btn-toolbar { font-size: 0px; margin-top: 10px; margin-bottom: 10px; }
.btn-toolbar > .btn + .btn, .btn-toolbar > .btn + .btn-group, .btn-toolbar =
> .btn-group + .btn { margin-left: 5px; }
.btn-group > .btn { position: relative; border-radius: 0px; float: left; }
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover { fon=
t-size: 14px; }
.btn-group > .btn-mini { font-size: 10.5px; }
.btn-group > .btn-small { font-size: 11.9px; }
.btn-group > .btn-large { font-size: 17.5px; }
.btn-group > .btn:first-child { margin-left: 0px; border-top-left-radius: 4=
px; border-bottom-left-radius: 4px; }
.btn-group > .btn:last-child, .btn-group > .dropdown-toggle { border-top-ri=
ght-radius: 4px; border-bottom-right-radius: 4px; }
.btn-group > .btn.large:first-child { margin-left: 0px; border-top-left-rad=
ius: 6px; border-bottom-left-radius: 6px; }
.btn-group > .btn.large:last-child, .btn-group > .large.dropdown-toggle { b=
order-top-right-radius: 6px; border-bottom-right-radius: 6px; }
.btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus=
, .btn-group > .btn:hover { z-index: 2; }
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outl=
ine: 0px; }
.btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8p=
x; box-shadow: rgba(255, 255, 255, 0.125) 1px 0px 0px inset, rgba(255, 255,=
255, 0.2) 0px 1px 0px inset, rgba(0, 0, 0, 0.05) 0px 1px 2px; }
.btn-group > .btn-mini + .dropdown-toggle { padding-left: 5px; padding-righ=
t: 5px; }
.btn-group > .btn-large + .dropdown-toggle { padding-left: 12px; padding-ri=
ght: 12px; }
.btn-group.open .dropdown-toggle { background-image: none; box-shadow: rgba=
(0, 0, 0, 0.15) 0px 2px 4px inset, rgba(0, 0, 0, 0.05) 0px 1px 2px; }
.btn-group.open .btn.dropdown-toggle { background-color: rgb(230, 230, 230)=
; }
.btn-group.open .btn-primary.dropdown-toggle { background-color: rgb(0, 68,=
204); }
.btn-group.open .btn-warning.dropdown-toggle { background-color: rgb(248, 1=
48, 6); }
.btn-group.open .btn-danger.dropdown-toggle { background-color: rgb(189, 54=
, 47); }
.btn-group.open .btn-success.dropdown-toggle { background-color: rgb(81, 16=
3, 81); }
.btn-group.open .btn-info.dropdown-toggle { background-color: rgb(47, 150, =
180); }
.btn-group.open .btn-inverse.dropdown-toggle { background-color: rgb(34, 34=
, 34); }
.btn .caret { margin-top: 8px; margin-left: 0px; }
.btn-large .caret { margin-top: 6px; }
.btn-large .caret { border-left-width: 5px; border-right-width: 5px; border=
-top-width: 5px; }
.btn-mini .caret, .btn-small .caret { margin-top: 8px; }
.dropup .btn-large .caret { border-bottom-width: 5px; }
.btn-danger .caret, .btn-info .caret, .btn-inverse .caret, .btn-primary .ca=
ret, .btn-success .caret, .btn-warning .caret { border-top-color: rgb(255, =
255, 255); border-bottom-color: rgb(255, 255, 255); }
.btn-group-vertical { display: inline-block; }
.btn-group-vertical > .btn { display: block; float: none; max-width: 100%; =
border-radius: 0px; }
.btn-group-vertical > .btn + .btn { margin-left: 0px; margin-top: -1px; }
.btn-group-vertical > .btn:first-child { border-radius: 4px 4px 0px 0px; }
.btn-group-vertical > .btn:last-child { border-radius: 0px 0px 4px 4px; }
.btn-group-vertical > .btn-large:first-child { border-radius: 6px 6px 0px 0=
px; }
.btn-group-vertical > .btn-large:last-child { border-radius: 0px 0px 6px 6p=
x; }
.nav { margin-left: 0px; margin-bottom: 20px; list-style: none; }
.nav > li > a { display: block; }
.nav > li > a:focus, .nav > li > a:hover { text-decoration: none; backgroun=
d-color: rgb(238, 238, 238); }
.nav > li > a > img { max-width: none; }
.nav > .pull-right { float: right; }
.nav-header { display: block; padding: 3px 15px; font-size: 11px; font-weig=
ht: 700; line-height: 20px; color: rgb(153, 153, 153); text-shadow: rgba(25=
5, 255, 255, 0.5) 0px 1px 0px; text-transform: uppercase; }
.nav li + .nav-header { margin-top: 9px; }
.nav-list { padding-left: 15px; padding-right: 15px; margin-bottom: 0px; }
.nav-list .nav-header, .nav-list > li > a { margin-left: -15px; margin-righ=
t: -15px; text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px; }
.nav-list > li > a { padding: 3px 15px; }
.nav-list > .active > a, .nav-list > .active > a:focus, .nav-list > .active=
> a:hover { color: rgb(255, 255, 255); text-shadow: rgba(0, 0, 0, 0.2) 0px=
-1px 0px; background-color: rgb(213, 213, 215); }
.nav-list [class*=3D" icon-"], .nav-list [class^=3D"icon-"] { margin-right:=
2px; }
.nav-list .divider { height: 1px; margin: 9px 1px; overflow: hidden; backgr=
ound-color: rgb(229, 229, 229); border-bottom: 1px solid rgb(255, 255, 255)=
; }
.nav-pills::after, .nav-pills::before, .nav-tabs::after, .nav-tabs::before =
{ display: table; content: ""; line-height: 0; }
.nav-pills::after, .nav-tabs::after { clear: both; }
.nav-pills > li, .nav-tabs > li { float: left; }
.nav-pills > li > a, .nav-tabs > li > a { padding-right: 12px; padding-left=
: 12px; margin-right: 2px; line-height: 14px; }
.nav-tabs { border-bottom: 1px solid rgb(221, 221, 221); }
.nav-tabs > li { margin-bottom: -1px; }
.nav-tabs > li > a { padding-top: 8px; padding-bottom: 8px; line-height: 20=
px; border: 1px solid transparent; border-radius: 4px 4px 0px 0px; }
.nav-tabs > li > a:focus, .nav-tabs > li > a:hover { border-color: rgb(238,=
238, 238) rgb(238, 238, 238) rgb(221, 221, 221); }
.nav-tabs > .active > a, .nav-tabs > .active > a:focus, .nav-tabs > .active=
> a:hover { color: rgb(85, 85, 85); background-color: rgb(255, 255, 255); =
border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221) rg=
b(221, 221, 221) transparent; border-image: initial; cursor: default; }
.nav-pills > li > a { padding-top: 8px; padding-bottom: 8px; margin-top: 2p=
x; margin-bottom: 2px; border-radius: 5px; }
.nav-pills > .active > a, .nav-pills > .active > a:focus, .nav-pills > .act=
ive > a:hover { color: rgb(255, 255, 255); background-color: rgb(213, 213, =
215); }
.nav-stacked > li { float: none; }
.nav-stacked > li > a { margin-right: 0px; }
.nav-tabs.nav-stacked { border-bottom: 0px; }
.nav-tabs.nav-stacked > li > a { border: 1px solid rgb(221, 221, 221); bord=
er-radius: 0px; }
.nav-tabs.nav-stacked > li:first-child > a { border-top-right-radius: 4px; =
border-top-left-radius: 4px; }
.nav-tabs.nav-stacked > li:last-child > a { border-bottom-right-radius: 4px=
; border-bottom-left-radius: 4px; }
.nav-tabs.nav-stacked > li > a:focus, .nav-tabs.nav-stacked > li > a:hover =
{ border-color: rgb(221, 221, 221); z-index: 2; }
.nav-pills.nav-stacked > li > a { margin-bottom: 3px; }
.nav-pills.nav-stacked > li:last-child > a { margin-bottom: 1px; }
.nav-tabs .dropdown-menu { border-radius: 0px 0px 6px 6px; }
.nav-pills .dropdown-menu { border-radius: 6px; }
.nav .dropdown-toggle .caret { border-top-color: rgb(213, 213, 215); border=
-bottom-color: rgb(213, 213, 215); margin-top: 6px; }
.nav .dropdown-toggle:focus .caret, .nav .dropdown-toggle:hover .caret { bo=
rder-top-color: rgb(0, 85, 128); border-bottom-color: rgb(0, 85, 128); }
.nav-tabs .dropdown-toggle .caret { margin-top: 8px; }
.nav .active .dropdown-toggle .caret { border-top-color: rgb(255, 255, 255)=
; border-bottom-color: rgb(255, 255, 255); }
.nav-tabs .active .dropdown-toggle .caret { border-top-color: rgb(85, 85, 8=
5); border-bottom-color: rgb(85, 85, 85); }
.nav > .dropdown.active > a:focus, .nav > .dropdown.active > a:hover { curs=
or: pointer; }
.nav-pills .open .dropdown-toggle, .nav-tabs .open .dropdown-toggle, .nav >=
li.dropdown.open.active > a:focus, .nav > li.dropdown.open.active > a:hove=
r { color: rgb(255, 255, 255); background-color: rgb(153, 153, 153); border=
-color: rgb(153, 153, 153); }
.nav li.dropdown.open .caret, .nav li.dropdown.open a:focus .caret, .nav li=
.dropdown.open a:hover .caret, .nav li.dropdown.open.active .caret { border=
-top-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); op=
acity: 1; }
.tabs-stacked .open > a:focus, .tabs-stacked .open > a:hover { border-color=
: rgb(153, 153, 153); }
.tabbable::after, .tabbable::before { display: table; content: ""; line-hei=
ght: 0; }
.tabbable::after { clear: both; }
.tab-content { overflow: auto; }
.tabs-below > .nav-tabs, .tabs-left > .nav-tabs, .tabs-right > .nav-tabs { =
border-bottom: 0px; }
.pill-content > .pill-pane, .tab-content > .tab-pane { display: none; }
.pill-content > .active, .tab-content > .active { display: block; }
.tabs-below > .nav-tabs { border-top: 1px solid rgb(221, 221, 221); }
.tabs-below > .nav-tabs > li { margin-top: -1px; margin-bottom: 0px; }
.tabs-below > .nav-tabs > li > a { border-radius: 0px 0px 4px 4px; }
.tabs-below > .nav-tabs > li > a:focus, .tabs-below > .nav-tabs > li > a:ho=
ver { border-bottom-color: transparent; border-top-color: rgb(221, 221, 221=
); }
.tabs-below > .nav-tabs > .active > a, .tabs-below > .nav-tabs > .active > =
a:focus, .tabs-below > .nav-tabs > .active > a:hover { border-color: transp=
arent rgb(221, 221, 221) rgb(221, 221, 221); }
.tabs-left > .nav-tabs > li, .tabs-right > .nav-tabs > li { float: none; }
.tabs-left > .nav-tabs > li > a, .tabs-right > .nav-tabs > li > a { min-wid=
th: 74px; margin-right: 0px; margin-bottom: 3px; }
.tabs-left > .nav-tabs { float: left; margin-right: 19px; border-right: 1px=
solid rgb(221, 221, 221); }
.tabs-left > .nav-tabs > li > a { margin-right: -1px; border-radius: 4px 0p=
x 0px 4px; }
.tabs-left > .nav-tabs > li > a:focus, .tabs-left > .nav-tabs > li > a:hove=
r { border-color: rgb(238, 238, 238) rgb(221, 221, 221) rgb(238, 238, 238) =
rgb(238, 238, 238); }
.tabs-left > .nav-tabs .active > a, .tabs-left > .nav-tabs .active > a:focu=
s, .tabs-left > .nav-tabs .active > a:hover { border-color: rgb(221, 221, 2=
21) transparent rgb(221, 221, 221) rgb(221, 221, 221); }
.tabs-right > .nav-tabs { float: right; margin-left: 19px; border-left: 1px=
solid rgb(221, 221, 221); }
.tabs-right > .nav-tabs > li > a { margin-left: -1px; border-radius: 0px 4p=
x 4px 0px; }
.tabs-right > .nav-tabs > li > a:focus, .tabs-right > .nav-tabs > li > a:ho=
ver { border-color: rgb(238, 238, 238) rgb(238, 238, 238) rgb(238, 238, 238=
) rgb(221, 221, 221); }
.tabs-right > .nav-tabs .active > a, .tabs-right > .nav-tabs .active > a:fo=
cus, .tabs-right > .nav-tabs .active > a:hover { border-color: rgb(221, 221=
, 221) rgb(221, 221, 221) rgb(221, 221, 221) transparent; }
.nav > .disabled > a { color: rgb(153, 153, 153); }
.nav > .disabled > a:focus, .nav > .disabled > a:hover { text-decoration: n=
one; background-color: transparent; cursor: default; }
.navbar { overflow: visible; margin-bottom: 20px; }
.navbar-inner { min-height: 40px; padding-left: 20px; padding-right: 20px; =
background-color: rgb(250, 250, 250); background-image: linear-gradient(rgb=
(255, 255, 255), rgb(242, 242, 242)); background-repeat: repeat-x; border: =
1px solid rgb(212, 212, 212); border-radius: 4px; box-shadow: rgba(0, 0, 0,=
0.067) 0px 1px 4px; }
.navbar-inner::after, .navbar-inner::before { display: table; content: ""; =
line-height: 0; }
.navbar-inner::after { clear: both; }
.navbar .container { width: auto; }
.nav-collapse.collapse { height: auto; overflow: visible; }
.navbar .brand { float: left; display: block; padding: 10px 20px; margin-le=
ft: -20px; font-size: 20px; font-weight: 200; color: rgb(119, 119, 119); te=
xt-shadow: rgb(255, 255, 255) 0px 1px 0px; }
.navbar .brand:focus, .navbar .brand:hover { text-decoration: none; }
.navbar-text { margin-bottom: 0px; line-height: 40px; color: rgb(119, 119, =
119); }
.navbar-link { color: rgb(119, 119, 119); }
.navbar-link:focus, .navbar-link:hover { color: rgb(51, 51, 51); }
.navbar .divider-vertical { height: 40px; margin: 0px 9px; border-left: 1px=
solid rgb(242, 242, 242); border-right: 1px solid rgb(255, 255, 255); }
.navbar .btn, .navbar .btn-group { margin-top: 5px; }
.navbar .btn-group .btn, .navbar .input-append .btn, .navbar .input-append =
.btn-group, .navbar .input-prepend .btn, .navbar .input-prepend .btn-group =
{ margin-top: 0px; }
.navbar-form { margin-bottom: 0px; }
.navbar-form::after, .navbar-form::before { display: table; content: ""; li=
ne-height: 0; }
.navbar-form::after { clear: both; }
.navbar-form .checkbox, .navbar-form .radio, .navbar-form input, .navbar-fo=
rm select { margin-top: 5px; }
.navbar-form .btn, .navbar-form input, .navbar-form select { display: inlin=
e-block; margin-bottom: 0px; }
.navbar-form input[type=3D"checkbox"], .navbar-form input[type=3D"image"], =
.navbar-form input[type=3D"radio"] { margin-top: 3px; }
.navbar-form .input-append, .navbar-form .input-prepend { margin-top: 5px; =
white-space: nowrap; }
.navbar-form .input-append input, .navbar-form .input-prepend input { margi=
n-top: 0px; }
.navbar-search { position: relative; float: left; margin-top: 5px; margin-b=
ottom: 0px; }
.navbar-search .search-query { margin-bottom: 0px; padding: 4px 14px; font-=
size: 13px; font-weight: 400; line-height: 1; border-radius: 15px; }
.navbar-static-top { position: static; margin-bottom: 0px; }
.navbar-static-top .navbar-inner { border-radius: 0px; }
.navbar-fixed-bottom, .navbar-fixed-top { position: fixed; right: 0px; left=
: 0px; z-index: 1030; margin-bottom: 0px; }
.navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner { border-=
width: 0px 0px 1px; }
.navbar-fixed-bottom .navbar-inner { border-width: 1px 0px 0px; }
.navbar-fixed-bottom .navbar-inner, .navbar-fixed-top .navbar-inner { paddi=
ng-left: 0px; padding-right: 0px; border-radius: 0px; }
.navbar-fixed-bottom .container, .navbar-fixed-top .container, .navbar-stat=
ic-top .container { width: 940px; }
.navbar-fixed-top { top: 0px; }
.navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner { box-sha=
dow: rgba(0, 0, 0, 0.1) 0px 1px 10px; }
.navbar-fixed-bottom { bottom: 0px; }
.navbar-fixed-bottom .navbar-inner { box-shadow: rgba(0, 0, 0, 0.1) 0px -1p=
x 10px; }
.navbar .nav { position: relative; left: 0px; display: block; float: left; =
margin: 0px 10px 0px 0px; }
.navbar .nav.pull-right { float: right; margin-right: 0px; }
.navbar .nav > li { float: left; }
.navbar .nav > li > a { float: none; padding: 10px 15px; color: rgb(119, 11=
9, 119); text-decoration: none; text-shadow: rgb(255, 255, 255) 0px 1px 0px=
; }
.navbar .nav .dropdown-toggle .caret { margin-top: 8px; }
.navbar .nav > li > a:focus, .navbar .nav > li > a:hover { background-color=
: transparent; color: rgb(51, 51, 51); text-decoration: none; }
.navbar .nav > .active > a, .navbar .nav > .active > a:focus, .navbar .nav =
> .active > a:hover { color: rgb(85, 85, 85); text-decoration: none; backgr=
ound-color: rgb(229, 229, 229); box-shadow: rgba(0, 0, 0, 0.125) 0px 3px 8p=
x inset; }
.navbar .btn-navbar { display: none; float: right; padding: 7px 10px; margi=
n-left: 5px; margin-right: 5px; color: rgb(255, 255, 255); text-shadow: rgb=
a(0, 0, 0, 0.25) 0px -1px 0px; background-color: rgb(237, 237, 237); backgr=
ound-image: linear-gradient(rgb(242, 242, 242), rgb(229, 229, 229)); backgr=
ound-repeat: repeat-x; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) =
rgba(0, 0, 0, 0.25); box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px inset=
, rgba(255, 255, 255, 0.075) 0px 1px 0px; }
.navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navb=
ar:active, .navbar .btn-navbar:focus, .navbar .btn-navbar:hover, .navbar .b=
tn-navbar[disabled] { color: rgb(255, 255, 255); background-color: rgb(229,=
229, 229); }
.navbar .btn-navbar .icon-bar { display: block; width: 18px; height: 2px; b=
ackground-color: rgb(245, 245, 245); border-radius: 1px; box-shadow: rgba(0=
, 0, 0, 0.25) 0px 1px 0px; }
.btn-navbar .icon-bar + .icon-bar { margin-top: 3px; }
.navbar .nav > li > .dropdown-menu::before { content: ""; display: inline-b=
lock; border-left: 7px solid transparent; border-right: 7px solid transpare=
nt; border-bottom: 7px solid rgba(0, 0, 0, 0.2); position: absolute; top: -=
7px; left: 9px; }
.navbar .nav > li > .dropdown-menu::after { content: ""; display: inline-bl=
ock; border-left: 6px solid transparent; border-right: 6px solid transparen=
t; border-bottom: 6px solid rgb(255, 255, 255); position: absolute; top: -6=
px; left: 10px; }
.navbar-fixed-bottom .nav > li > .dropdown-menu::before { border-top: 7px s=
olid rgba(0, 0, 0, 0.2); border-bottom: 0px; bottom: -7px; top: auto; }
.navbar-fixed-bottom .nav > li > .dropdown-menu::after { border-top: 6px so=
lid rgb(255, 255, 255); border-bottom: 0px; bottom: -6px; top: auto; }
.navbar .nav li.dropdown > a:focus .caret, .navbar .nav li.dropdown > a:hov=
er .caret { border-top-color: rgb(51, 51, 51); border-bottom-color: rgb(51,=
51, 51); }
.navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdow=
n.open.active > .dropdown-toggle, .navbar .nav li.dropdown.open > .dropdown=
-toggle { background-color: rgb(229, 229, 229); color: rgb(85, 85, 85); }
.navbar .nav li.dropdown > .dropdown-toggle .caret { border-top-color: rgb(=
119, 119, 119); border-bottom-color: rgb(119, 119, 119); }
.navbar .nav li.dropdown.active > .dropdown-toggle .caret, .navbar .nav li.=
dropdown.open.active > .dropdown-toggle .caret, .navbar .nav li.dropdown.op=
en > .dropdown-toggle .caret { border-top-color: rgb(85, 85, 85); border-bo=
ttom-color: rgb(85, 85, 85); }
.navbar .nav > li > .dropdown-menu.pull-right, .navbar .pull-right > li > .=
dropdown-menu { left: auto; right: 0px; }
.navbar .nav > li > .dropdown-menu.pull-right::before, .navbar .pull-right =
> li > .dropdown-menu::before { left: auto; right: 12px; }
.navbar .nav > li > .dropdown-menu.pull-right::after, .navbar .pull-right >=
li > .dropdown-menu::after { left: auto; right: 13px; }
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu, .navbar .pull=
-right > li > .dropdown-menu .dropdown-menu { left: auto; right: 100%; marg=
in-left: 0px; margin-right: -1px; border-radius: 6px 0px 6px 6px; }
.navbar-inverse .navbar-inner { background-color: rgb(27, 27, 27); backgrou=
nd-image: linear-gradient(rgb(34, 34, 34), rgb(17, 17, 17)); background-rep=
eat: repeat-x; border-color: rgb(37, 37, 37); }
.navbar-inverse .brand, .navbar-inverse .nav > li > a { color: rgb(153, 153=
, 153); text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px; }
.navbar-inverse .brand:focus, .navbar-inverse .brand:hover, .navbar-inverse=
.nav > li > a:focus, .navbar-inverse .nav > li > a:hover { color: rgb(255,=
255, 255); }
.navbar-inverse .brand { color: rgb(153, 153, 153); }
.navbar-inverse .navbar-text { color: rgb(153, 153, 153); }
.navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover { =
background-color: transparent; color: rgb(255, 255, 255); }
.navbar-inverse .nav .active > a, .navbar-inverse .nav .active > a:focus, .=
navbar-inverse .nav .active > a:hover { color: rgb(255, 255, 255); backgrou=
nd-color: rgb(17, 17, 17); }
.navbar-inverse .navbar-link { color: rgb(153, 153, 153); }
.navbar-inverse .navbar-link:focus, .navbar-inverse .navbar-link:hover { co=
lor: rgb(255, 255, 255); }
.navbar-inverse .divider-vertical { border-left-color: rgb(17, 17, 17); bor=
der-right-color: rgb(34, 34, 34); }
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse=
.nav li.dropdown.open.active > .dropdown-toggle, .navbar-inverse .nav li.d=
ropdown.open > .dropdown-toggle { background-color: rgb(17, 17, 17); color:=
rgb(255, 255, 255); }
.navbar-inverse .nav li.dropdown > a:focus .caret, .navbar-inverse .nav li.=
dropdown > a:hover .caret { border-top-color: rgb(255, 255, 255); border-bo=
ttom-color: rgb(255, 255, 255); }
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { border-top-col=
or: rgb(153, 153, 153); border-bottom-color: rgb(153, 153, 153); }
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, .navbar-=
inverse .nav li.dropdown.open.active > .dropdown-toggle .caret, .navbar-inv=
erse .nav li.dropdown.open > .dropdown-toggle .caret { border-top-color: rg=
b(255, 255, 255); border-bottom-color: rgb(255, 255, 255); }
.navbar-inverse .navbar-search .search-query { color: rgb(255, 255, 255); b=
ackground-color: rgb(81, 81, 81); border-color: rgb(17, 17, 17); box-shadow=
: rgba(0, 0, 0, 0.1) 0px 1px 2px inset, rgba(255, 255, 255, 0.15) 0px 1px 0=
px; transition: none 0s ease 0s; }
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { c=
olor: rgb(204, 204, 204); }
.navbar-inverse .navbar-search .search-query.focused, .navbar-inverse .navb=
ar-search .search-query:focus { padding: 5px 15px; color: rgb(51, 51, 51); =
text-shadow: rgb(255, 255, 255) 0px 1px 0px; background-color: rgb(255, 255=
, 255); border: 0px; box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 3px; outline: =
0px; }
.navbar-inverse .btn-navbar { color: rgb(255, 255, 255); text-shadow: rgba(=
0, 0, 0, 0.25) 0px -1px 0px; background-color: rgb(14, 14, 14); background-=
image: linear-gradient(rgb(21, 21, 21), rgb(4, 4, 4)); background-repeat: r=
epeat-x; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, =
0.25); }
.navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar.disabled, .=
navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar:focus, .navb=
ar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar[disabled] { color=
: rgb(255, 255, 255); background-color: rgb(4, 4, 4); }
.breadcrumb { padding: 8px 15px; margin: 0px 0px 20px; list-style: none; ba=
ckground-color: rgb(245, 245, 245); border-radius: 4px; }
.breadcrumb > li { display: inline-block; text-shadow: rgb(255, 255, 255) 0=
px 1px 0px; }
.breadcrumb > li > .divider { padding: 0px 5px; color: rgb(204, 204, 204); =
}
.breadcrumb > .active { color: rgb(153, 153, 153); }
.pagination { margin: 20px 0px; }
.pagination ul { display: inline-block; margin-left: 0px; margin-bottom: 0p=
x; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px; }
.pagination ul > li { display: inline; }
.pagination ul > li > a, .pagination ul > li > span { float: left; padding:=
4px 12px; line-height: 20px; text-decoration: none; background-color: rgb(=
255, 255, 255); border-width: 1px 1px 1px 0px; border-style: solid; border-=
color: rgb(221, 221, 221); border-image: initial; }
.pagination ul > .active > a, .pagination ul > .active > span, .pagination =
ul > li > a:focus, .pagination ul > li > a:hover { background-color: rgb(24=
5, 245, 245); }
.pagination ul > .active > a, .pagination ul > .active > span { color: rgb(=
153, 153, 153); cursor: default; }
.pagination ul > .disabled > a, .pagination ul > .disabled > a:focus, .pagi=
nation ul > .disabled > a:hover, .pagination ul > .disabled > span { color:=
rgb(153, 153, 153); background-color: transparent; cursor: default; }
.pagination ul > li:first-child > a, .pagination ul > li:first-child > span=
{ border-left-width: 1px; border-top-left-radius: 4px; border-bottom-left-=
radius: 4px; }
.pagination ul > li:last-child > a, .pagination ul > li:last-child > span {=
border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.pagination-centered { text-align: center; }
.pagination-right { text-align: right; }
.pagination-large ul > li > a, .pagination-large ul > li > span { padding: =
11px 19px; font-size: 17.5px; }
.pagination-large ul > li:first-child > a, .pagination-large ul > li:first-=
child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px;=
}
.pagination-large ul > li:last-child > a, .pagination-large ul > li:last-ch=
ild > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px;=
}
.pagination-mini ul > li:first-child > a, .pagination-mini ul > li:first-ch=
ild > span, .pagination-small ul > li:first-child > a, .pagination-small ul=
> li:first-child > span { border-top-left-radius: 3px; border-bottom-left-=
radius: 3px; }
.pagination-mini ul > li:last-child > a, .pagination-mini ul > li:last-chil=
d > span, .pagination-small ul > li:last-child > a, .pagination-small ul > =
li:last-child > span { border-top-right-radius: 3px; border-bottom-right-ra=
dius: 3px; }
.pagination-small ul > li > a, .pagination-small ul > li > span { padding: =
2px 10px; font-size: 11.9px; }
.pagination-mini ul > li > a, .pagination-mini ul > li > span { padding: 0p=
x 6px; font-size: 10.5px; }
.pager { margin: 20px 0px; list-style: none; text-align: center; }
.pager::after, .pager::before { display: table; content: ""; line-height: 0=
; }
.pager::after { clear: both; }
.pager li { display: inline; }
.pager li > a, .pager li > span { display: inline-block; padding: 5px 14px;=
background-color: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221)=
; border-radius: 15px; }
.pager li > a:focus, .pager li > a:hover { text-decoration: none; backgroun=
d-color: rgb(245, 245, 245); }
.pager .next > a, .pager .next > span { float: right; }
.pager .previous > a, .pager .previous > span { float: left; }
.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hove=
r, .pager .disabled > span { color: rgb(153, 153, 153); background-color: r=
gb(255, 255, 255); cursor: default; }
.thumbnails { margin-left: -20px; list-style: none; }
.thumbnails::after, .thumbnails::before { display: table; content: ""; line=
-height: 0; }
.thumbnails::after { clear: both; }
.row-fluid .thumbnails { margin-left: 0px; }
.thumbnails > li { float: left; margin-bottom: 20px; margin-left: 20px; }
.thumbnail { display: block; padding: 4px; line-height: 20px; border: 1px s=
olid rgb(221, 221, 221); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.05=
5) 0px 1px 3px; transition: all 0.2s ease-in-out 0s; }
a.thumbnail:focus, a.thumbnail:hover { border-color: rgb(213, 213, 215); bo=
x-shadow: rgba(0, 105, 214, 0.25) 0px 1px 4px; }
.thumbnail > img { display: block; max-width: 100%; margin-left: auto; marg=
in-right: auto; }
.thumbnail .caption { padding: 9px; color: rgb(85, 85, 85); }
.alert { padding: 8px 35px 8px 14px; margin-bottom: 5px; text-shadow: rgba(=
255, 255, 255, 0.5) 0px 1px 0px; background-color: rgb(252, 248, 227); bord=
er: 1px solid rgb(216, 151, 44); border-radius: 4px; }
.alert, .alert h4, .myyard-form .alert h4 { color: rgb(216, 151, 44); font-=
size: 17px; }
.alert h4 { margin: 0px; }
.alert .close { position: relative; top: -2px; right: -21px; line-height: 2=
0px; }
.alert-success { background-color: rgb(223, 240, 216); border-color: rgb(21=
4, 233, 198); color: rgb(70, 136, 71); }
.alert-success h4, .myyard-form .alert-success h4 { color: rgb(70, 136, 71)=
; }
.alert-danger, .alert-error { background-color: rgb(242, 222, 222); border-=
color: rgb(238, 211, 215); color: rgb(185, 74, 72); }
.alert-danger h4, .alert-error h4, .myyard-form .alert-danger h4, .myyard-f=
orm .alert-error h4 { color: rgb(185, 74, 72); }
.alert-info { background-color: rgb(217, 237, 247); border-color: rgb(188, =
232, 241); color: rgb(58, 135, 173); }
.alert-info h4, .myyard-form .alert-info h4 { color: rgb(58, 135, 173); }
.alert-info a { font-weight: 700; }
.alert-block { padding-top: 14px; padding-bottom: 14px; }
.alert-block > p, .alert-block > ul { margin-bottom: 0px; }
.alert-block p + p { margin-top: 5px; }
@-webkit-keyframes progress-bar-stripes {=20
0% { background-position: 40px 0px; }
100% { background-position: 0px 0px; }
}
@keyframes progress-bar-stripes {=20
0% { background-position: 40px 0px; }
100% { background-position: 0px 0px; }
}
.progress { overflow: hidden; height: 20px; margin-bottom: 20px; background=
-color: rgb(247, 247, 247); background-image: linear-gradient(rgb(245, 245,=
245), rgb(249, 249, 249)); background-repeat: repeat-x; box-shadow: rgba(0=
, 0, 0, 0.1) 0px 1px 2px inset; border-radius: 4px; }
.progress .bar { width: 0%; height: 100%; color: rgb(255, 255, 255); float:=
left; font-size: 12px; text-align: center; text-shadow: rgba(0, 0, 0, 0.25=
) 0px -1px 0px; background-color: rgb(14, 144, 210); background-image: line=
ar-gradient(rgb(20, 155, 223), rgb(4, 128, 190)); background-repeat: repeat=
-x; box-shadow: rgba(0, 0, 0, 0.15) 0px -1px 0px inset; box-sizing: border-=
box; transition: width 0.6s ease 0s; }
.progress .bar + .bar { box-shadow: rgba(0, 0, 0, 0.15) 1px 0px 0px inset, =
rgba(0, 0, 0, 0.15) 0px -1px 0px inset; }
.progress-striped .bar { background-color: rgb(20, 155, 223); background-im=
age: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%,=
transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) =
75%, transparent 75%, transparent); background-size: 40px 40px; }
.progress.active .bar { animation: 2s linear 0s infinite normal none runnin=
g progress-bar-stripes; }
.progress .bar-danger, .progress-danger .bar { background-color: rgb(221, 8=
1, 76); background-image: linear-gradient(rgb(238, 95, 91), rgb(196, 60, 53=
)); background-repeat: repeat-x; }
.progress-danger.progress-striped .bar, .progress-striped .bar-danger { bac=
kground-color: rgb(238, 95, 91); background-image: linear-gradient(45deg, r=
gba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 2=
55, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transpa=
rent); }
.progress .bar-success, .progress-success .bar { background-color: rgb(94, =
185, 94); background-image: linear-gradient(rgb(98, 196, 98), rgb(87, 169, =
87)); background-repeat: repeat-x; }
.progress-striped .bar-success, .progress-success.progress-striped .bar { b=
ackground-color: rgb(98, 196, 98); background-image: linear-gradient(45deg,=
rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255,=
255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, trans=
parent); }
.progress .bar-info, .progress-info .bar { background-color: rgb(75, 177, 2=
07); background-image: linear-gradient(rgb(91, 192, 222), rgb(51, 155, 185)=
); background-repeat: repeat-x; }
.progress-info.progress-striped .bar, .progress-striped .bar-info { backgro=
und-color: rgb(91, 192, 222); background-image: linear-gradient(45deg, rgba=
(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255,=
255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparen=
t); }
.progress .bar-warning, .progress-warning .bar { background-color: rgb(250,=
167, 50); background-image: linear-gradient(rgb(251, 180, 80), rgb(248, 14=
8, 6)); background-repeat: repeat-x; }
.progress-striped .bar-warning, .progress-warning.progress-striped .bar { b=
ackground-color: rgb(251, 180, 80); background-image: linear-gradient(45deg=
, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255=
, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, tran=
sparent); }
.hero-unit { padding: 60px; margin-bottom: 30px; font-size: 18px; font-weig=
ht: 200; line-height: 30px; color: inherit; background-color: rgb(238, 238,=
238); border-radius: 6px; }
.hero-unit h1 { margin-bottom: 0px; font-size: 60px; line-height: 1; color:=
inherit; letter-spacing: -1px; }
.hero-unit li { line-height: 30px; }
.media, .media-body { overflow: hidden; zoom: 1; }
.media, .media .media { margin-top: 15px; }
.media:first-child { margin-top: 0px; }
.media-object { display: block; }
.media-heading { margin: 0px 0px 5px; }
.media > .pull-left { margin-right: 10px; }
.media > .pull-right { margin-left: 10px; }
.media-list { margin-left: 0px; list-style: none; }
.tooltip { position: absolute; z-index: 1030; display: block; visibility: v=
isible; font-size: 11px; line-height: 1.4; opacity: 0; }
.tooltip.in { opacity: 0.8; }
.tooltip.top { margin-top: -3px; padding: 5px 0px; }
.tooltip.right { margin-left: 3px; padding: 0px 5px; }
.tooltip.bottom { margin-top: 3px; padding: 5px 0px; }
.tooltip.left { margin-left: -3px; padding: 0px 5px; }
.tooltip-inner { max-width: 200px; padding: 8px; color: rgb(255, 255, 255);=
text-align: center; text-decoration: none; background-color: rgb(0, 0, 0);=
border-radius: 4px; }
.tooltip-arrow { position: absolute; width: 0px; height: 0px; border-color:=
transparent; border-style: solid; }
.tooltip.top .tooltip-arrow { bottom: 0px; left: 50%; margin-left: -5px; bo=
rder-width: 5px 5px 0px; border-top-color: rgb(0, 0, 0); }
.tooltip.right .tooltip-arrow { top: 50%; left: 0px; margin-top: -5px; bord=
er-width: 5px 5px 5px 0px; border-right-color: rgb(0, 0, 0); }
.tooltip.left .tooltip-arrow { top: 50%; right: 0px; margin-top: -5px; bord=
er-width: 5px 0px 5px 5px; border-left-color: rgb(0, 0, 0); }
.tooltip.bottom .tooltip-arrow { top: 0px; left: 50%; margin-left: -5px; bo=
rder-width: 0px 5px 5px; border-bottom-color: rgb(0, 0, 0); }
.tooltip.top.datagrid-tooltip { padding-bottom: 9px; }
.datagrid-tooltip .tooltip-inner { background: rgb(255, 255, 255); color: r=
gb(51, 51, 51); max-width: none; font-size: 13px; text-align: left; padding=
: 12px; border: 1px solid rgb(204, 204, 204); box-shadow: rgb(102, 102, 102=
) 2px 2px 10px -2px; }
.tooltip.datagrid-tooltip.top .tooltip-arrow { bottom: -4px; margin-left: -=
5px; border-width: 15px 5px 0px; border-top-color: rgb(255, 255, 255); left=
: 50% !important; }
.tooltip-inner h3 { font-size: 16px; margin: 0px; padding-bottom: 10px; lin=
e-height: normal; text-align: center; }
.tooltip-inner > div, .tooltip-inner > table { max-width: 800px; }
.wl-simple-table td, .wl-simple-table th { padding: 1px 20px; text-align: l=
eft; }
.wl-simple-table th { padding-bottom: 4px; }
.wl-simple-table tr:nth-child(2n) { background: rgb(240, 240, 240); }
.popover { position: absolute; top: 0px; left: 0px; z-index: 1010; display:=
none; max-width: 265px; padding: 1px; text-align: left; background-color: =
rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgba(0,=
0, 0, 0.2); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10p=
x; white-space: normal; }
.popover.top { margin-top: -10px; }
.popover.right { margin-left: 10px; }
.popover.bottom { margin-top: 10px; }
.popover.left { margin-left: -10px; }
.popover-title { margin: 0px; padding: 8px 14px; font-size: 14px; font-weig=
ht: 400; line-height: 18px; background-color: rgb(247, 247, 247); border-bo=
ttom: 1px solid rgb(235, 235, 235); border-radius: 5px 5px 0px 0px; }
.popover-title:empty { display: none; }
.popover-content { padding: 9px 14px; min-height: 36px; }
.popover-action { margin: 0px; padding: 8px 14px; font-size: 14px; font-wei=
ght: 400; line-height: 18px; background-color: rgb(247, 247, 247); border-t=
op: 1px solid rgb(235, 235, 235); border-radius: 0px 0px 5px 5px; }
.popover-action:empty { display: none; }
.popover-action a { display: block; margin-bottom: 5px; }
.popover .arrow, .popover .arrow::after { position: absolute; display: bloc=
k; width: 0px; height: 0px; border-color: transparent; border-style: solid;=
}
.popover .arrow { border-width: 11px; }
.popover .arrow::after { border-width: 10px; content: ""; }
.popover.top .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0=
px; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; }
.popover.top .arrow::after { bottom: 1px; margin-left: -10px; border-bottom=
-width: 0px; border-top-color: rgb(255, 255, 255); }
.popover.right .arrow { top: 50%; left: -11px; margin-top: -11px; border-le=
ft-width: 0px; border-right-color: rgba(0, 0, 0, 0.25); }
.popover.right .arrow::after { left: 1px; bottom: -10px; border-left-width:=
0px; border-right-color: rgb(255, 255, 255); }
.popover.bottom .arrow { left: 50%; margin-left: -11px; border-top-width: 0=
px; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; }
.popover.bottom .arrow::after { top: 1px; margin-left: -10px; border-top-wi=
dth: 0px; border-bottom-color: rgb(255, 255, 255); }
.popover.left .arrow { top: 50%; right: -11px; margin-top: -11px; border-ri=
ght-width: 0px; border-left-color: rgba(0, 0, 0, 0.25); }
.popover.left .arrow::after { right: 1px; border-right-width: 0px; border-l=
eft-color: rgb(255, 255, 255); bottom: -10px; }
.modal-backdrop { position: fixed; top: 0px; right: 0px; bottom: 0px; left:=
0px; z-index: 1040; background-color: rgb(0, 0, 0); }
.modal-backdrop.fade { opacity: 0; }
.modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; }
.modal { position: fixed; top: 10%; left: 50%; z-index: 1050; background-co=
lor: rgb(255, 255, 255); border: 1px solid rgba(0, 0, 0, 0.3); border-radiu=
s: 6px; box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 7px; background-clip: paddin=
g-box; outline: 0px; }
.modal.fade { transition: opacity 0.3s linear 0s, top 0.3s ease-out 0s; top=
: -25%; }
.modal.fade.in { top: 10%; }
.modal-header { cursor: move; padding: 9px 15px; height: 30px; border-botto=
m: 1px solid rgb(238, 238, 238); }
.modal-header .close { margin-top: 2px; font-size: 26px; z-index: 10; posit=
ion: relative; }
.modal-body form:first-child h2 { position: absolute; top: 0px; cursor: mov=
e; line-height: 24px; }
.modal-body .myyard-footer-form-field { padding: 10px; margin-bottom: 50px;=
}
.modal-body > .myyard-form > .myyard-footer-form-field { border: none; bott=
om: 0px; padding: 0px 0px 15px; position: absolute; margin: 0px; border-rad=
ius: 0px; z-index: 5; }
.modal-body form { margin-top: -10px; }
.modal-header h3 { margin: 0px; line-height: 30px; }
.modal-body { padding: 15px; }
.modal-form { margin-bottom: 0px; }
.modal-footer { height: 30px; padding: 14px 15px 15px; margin-bottom: 0px; =
text-align: right; background-color: rgb(245, 245, 245); border-top: 1px so=
lid rgb(221, 221, 221); border-radius: 0px 0px 6px 6px; box-shadow: rgb(255=
, 255, 255) 0px 1px 0px inset; }
.modal-footer::after, .modal-footer::before { display: table; content: ""; =
line-height: 0; }
.modal-footer::after { clear: both; }
.modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0px; }
.modal-footer .btn-group .btn + .btn { margin-left: -1px; }
.modal-footer .btn-block + .btn-block { margin-left: 0px; }
.dropdown, .dropup { position: relative; }
.dropdown-toggle:active, .open .dropdown-toggle { outline: 0px; }
.caret { display: inline-block; width: 0px; height: 0px; vertical-align: to=
p; border-top: 4px solid rgb(0, 0, 0); border-right: 4px solid transparent;=
border-left: 4px solid transparent; content: ""; }
.dropdown .caret { margin-top: 8px; margin-left: 2px; }
.dropdown-menu { position: absolute; top: 100%; left: 0px; z-index: 1000; d=
isplay: none; float: left; padding: 5px 0px; margin: 2px 0px 0px; list-styl=
e: none; background-color: rgb(255, 255, 255); border: 1px solid rgba(0, 0,=
0, 0.2); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px; =
background-clip: padding-box; }
.dropdown-menu.pull-right { right: 0px; left: auto; }
.dropdown-menu .divider { height: 1px; margin: 9px 1px; overflow: hidden; b=
ackground-color: rgb(229, 229, 229); border-bottom: 1px solid rgb(255, 255,=
255); }
.dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; f=
ont-weight: 400; line-height: 20px; color: rgb(51, 51, 51); white-space: no=
wrap; }
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover, .dropdown-sub=
menu:focus > a, .dropdown-submenu:hover > a { text-decoration: none; color:=
rgb(65, 64, 66); background-color: rgb(201, 201, 203); background-image: l=
inear-gradient(rgb(213, 213, 215), rgb(188, 187, 191)); background-repeat: =
repeat-x; }
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown=
-menu > .active > a:hover { color: rgb(65, 64, 66); text-decoration: none; =
outline: 0px; background-color: rgb(201, 201, 203); background-image: linea=
r-gradient(rgb(213, 213, 215), rgb(188, 187, 191)); background-repeat: repe=
at-x; }
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .drop=
down-menu > .disabled > a:hover { color: rgb(153, 153, 153); }
.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover =
{ text-decoration: none; background-color: transparent; background-image: n=
one; cursor: default; }
.open > .dropdown-menu { display: block; }
.pull-right > .dropdown-menu { right: 0px; left: auto; }
.dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0px; bo=
rder-bottom: 4px solid rgb(0, 0, 0); content: ""; }
.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top=
: auto; bottom: 100%; margin-bottom: 1px; }
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu { top: 0px; left: 100%; margin-top: -6px=
; margin-left: -1px; border-radius: 0px 6px 6px; }
.dropdown-submenu:hover > .dropdown-menu { display: block; }
.dropup .dropdown-submenu > .dropdown-menu { top: auto; bottom: 0px; margin=
-top: 0px; margin-bottom: -2px; border-radius: 5px 5px 5px 0px; }
.dropdown-submenu > a::after { display: block; content: " "; float: right; =
width: 0px; height: 0px; border-color: transparent transparent transparent =
rgb(204, 204, 204); border-style: solid; border-width: 5px 0px 5px 5px; mar=
gin-top: 5px; margin-right: -10px; }
.dropdown-submenu:hover > a::after { border-left-color: rgb(255, 255, 255);=
}
.dropdown-submenu.pull-left { float: none; }
.dropdown-submenu.pull-left > .dropdown-menu { left: -100%; margin-left: 10=
px; border-radius: 6px 0px 6px 6px; }
.dropdown .dropdown-menu .nav-header { padding-left: 20px; padding-right: 2=
0px; }
.typeahead { z-index: 1051; margin-top: 2px; border-radius: 4px; }
.accordion { margin-bottom: 20px; }
.accordion-group { margin-bottom: 2px; border: 1px solid rgb(229, 229, 229)=
; border-radius: 4px; }
.accordion-heading { border-bottom: 0px; }
.accordion-heading .accordion-toggle { display: block; padding: 8px 15px; }
.accordion-toggle { cursor: pointer; }
.accordion-inner { padding: 9px 15px; border-top: 1px solid rgb(229, 229, 2=
29); }
.carousel { position: relative; margin-bottom: 20px; line-height: 1; }
.carousel-inner { overflow: hidden; width: 100%; position: relative; }
.carousel-inner > .item { display: none; position: relative; transition: le=
ft 0.6s ease-in-out 0s; }
.carousel-inner > .item > a > img, .carousel-inner > .item > img { display:=
block; line-height: 1; }
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev=
{ display: block; }
.carousel-inner > .active { left: 0px; }
.carousel-inner > .next, .carousel-inner > .prev { position: absolute; top:=
0px; width: 100%; }
.carousel-inner > .next { left: 100%; }
.carousel-inner > .prev { left: -100%; }
.carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0px; }
.carousel-inner > .active.left { left: -100%; }
.carousel-inner > .active.right { left: 100%; }
.carousel-control { position: absolute; top: 40%; left: 15px; width: 40px; =
height: 40px; margin-top: -20px; font-size: 60px; font-weight: 100; line-he=
ight: 30px; color: rgb(255, 255, 255); text-align: center; background: rgb(=
34, 34, 34); border: 3px solid rgb(255, 255, 255); border-radius: 23px; opa=
city: 0.5; }
.carousel-control.right { left: auto; right: 15px; }
.carousel-control:focus, .carousel-control:hover { color: rgb(255, 255, 255=
); text-decoration: none; opacity: 0.9; }
.carousel-indicators { position: absolute; top: 15px; right: 15px; z-index:=
5; margin: 0px; list-style: none; }
.carousel-indicators li { display: block; float: left; width: 10px; height:=
10px; margin-left: 5px; text-indent: -999px; background-color: rgba(255, 2=
55, 255, 0.25); border-radius: 5px; }
.carousel-indicators .active { background-color: rgb(255, 255, 255); }
.carousel-caption { position: absolute; left: 0px; right: 0px; bottom: 0px;=
padding: 15px; background: rgba(0, 0, 0, 0.75); }
.carousel-caption h4, .carousel-caption p { color: rgb(255, 255, 255); line=
-height: 20px; }
.carousel-caption h4 { margin: 0px 0px 5px; }
.carousel-caption p { margin-bottom: 0px; }
.well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-co=
lor: rgb(245, 245, 245); border: 1px solid rgb(227, 227, 227); border-radiu=
s: 4px; box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 1px inset; }
.well blockquote { border-color: rgba(0, 0, 0, 0.15); }
.well-large { padding: 24px; border-radius: 6px; }
.well-small { padding: 9px; border-radius: 3px; }
.close { float: right; font-size: 20px; font-weight: 700; line-height: 20px=
; color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity=
: 0.2; }
.close:focus, .close:hover { color: rgb(0, 0, 0); text-decoration: none; cu=
rsor: pointer; opacity: 0.4; }
button.close { padding: 0px; cursor: pointer; background: 0px 0px; border: =
0px; -webkit-appearance: none; }
.pull-right { float: right; }
.pull-left { float: left; }
.hide { display: none !important; }
.show { display: block; }
.invisible { visibility: hidden; }
.fade { opacity: 0; transition: opacity 0.15s linear 0s; }
.fade.in { opacity: 1; }
.collapse { position: relative; height: 0px; overflow: hidden; transition: =
height 0.35s ease 0s; }
.collapse.in { height: auto; }
.hidden { display: none; }
.visible-phone { display: none !important; }
.visible-tablet { display: none !important; }
.hidden-desktop { display: none !important; }
.visible-desktop { display: inherit !important; }
@media screen and (max-width: 979px) and (min-width: 768px) {
.hidden-desktop { display: inherit !important; }
.visible-desktop { display: none !important; }
.visible-tablet { display: inherit !important; }
.hidden-tablet { display: none !important; }
}
@media screen and (max-width: 767px) {
.hidden-desktop { display: inherit !important; }
.visible-desktop { display: none !important; }
.visible-phone { display: inherit !important; }
.hidden-phone { display: none !important; }
}
.visible-print { display: none !important; }
@media print {
.visible-print { display: inherit !important; }
.hidden-print { display: none !important; }
}
@media screen and (max-width: 767px) {
.navbar-fixed-bottom, .navbar-fixed-top, .navbar-static-top { margin-left=
: -20px; margin-right: -20px; }
.container-fluid { padding: 0px; }
.dl-horizontal dt { float: none; clear: none; width: auto; text-align: le=
ft; }
.dl-horizontal dd { margin-left: 0px; }
.container { width: auto; }
.row-fluid { width: 100%; }
.row, .thumbnails { margin-left: 0px; }
.thumbnails > li { float: none; margin-left: 0px; }
.row-fluid [class*=3D"span"], .uneditable-input[class*=3D"span"], [class*=
=3D"span"] { float: none; display: block; width: 100%; margin-left: 0px; bo=
x-sizing: border-box; }
.row-fluid .span12, .span12 { width: 100%; box-sizing: border-box; }
.row-fluid [class*=3D"offset"]:first-child { margin-left: 0px; }
.input-large, .input-xlarge, .input-xxlarge, .uneditable-input, input[cla=
ss*=3D"span"], select[class*=3D"span"], textarea[class*=3D"span"] { display=
: block; width: 100%; min-height: 30px; box-sizing: border-box; }
.input-append input, .input-append input[class*=3D"span"], .input-prepend=
input, .input-prepend input[class*=3D"span"] { display: inline-block; widt=
h: auto; }
.controls-row [class*=3D"span"] + [class*=3D"span"] { margin-left: 0px; }
.modal { position: fixed; top: 20px; left: 20px; right: 20px; width: auto=
; margin: 0px; }
.modal.fade { top: -100px; }
.modal.fade.in { top: 20px; }
}
@media screen and (max-width: 480px) {
.nav-collapse { transform: translate3d(0px, 0px, 0px); }
.page-header h1 small { display: block; line-height: 20px; }
input[type=3D"checkbox"], input[type=3D"radio"] { border: 1px solid rgb(2=
04, 204, 204); }
.form-horizontal .control-label { float: none; width: auto; padding-top: =
0px; text-align: left; }
.form-horizontal .controls { margin-left: 0px; }
.form-horizontal .control-list { padding-top: 0px; }
.form-horizontal .form-actions { padding-left: 10px; padding-right: 10px;=
}
.media .pull-left, .media .pull-right { float: none; display: block; marg=
in-bottom: 10px; }
.media-object { margin-right: 0px; margin-left: 0px; }
.modal { top: 10px; left: 10px; right: 10px; }
.modal-header .close { padding: 10px; margin: -10px; }
.carousel-caption { position: static; }
}
@media screen and (max-width: 979px) and (min-width: 768px) {
.row { margin-left: -20px; }
.row::after, .row::before { display: table; content: ""; line-height: 0; =
}
.row::after { clear: both; }
[class*=3D"span"] { float: left; min-height: 1px; margin-left: 20px; }
.container, .navbar-fixed-bottom .container, .navbar-fixed-top .container=
, .navbar-static-top .container { width: 724px; }
.span12 { width: 724px; }
.span11 { width: 662px; }
.span10 { width: 600px; }
.span9 { width: 538px; }
.span8 { width: 476px; }
.span7 { width: 414px; }
.span6 { width: 352px; }
.span5 { width: 290px; }
.span4 { width: 228px; }
.span3 { width: 166px; }
.span2 { width: 104px; }
.span1 { width: 42px; }
.offset12 { margin-left: 764px; }
.offset11 { margin-left: 702px; }
.offset10 { margin-left: 640px; }
.offset9 { margin-left: 578px; }
.offset8 { margin-left: 516px; }
.offset7 { margin-left: 454px; }
.offset6 { margin-left: 392px; }
.offset5 { margin-left: 330px; }
.offset4 { margin-left: 268px; }
.offset3 { margin-left: 206px; }
.offset2 { margin-left: 144px; }
.offset1 { margin-left: 82px; }
.row-fluid { width: 100%; }
.row-fluid::after, .row-fluid::before { display: table; content: ""; line=
-height: 0; }
.row-fluid::after { clear: both; }
.row-fluid [class*=3D"span"] { display: block; width: 100%; min-height: 3=
0px; box-sizing: border-box; float: left; margin-left: 2.76243%; }
.row-fluid [class*=3D"span"]:first-child { margin-left: 0px; }
.row-fluid .controls-row [class*=3D"span"] + [class*=3D"span"] { margin-l=
eft: 2.76243%; }
.row-fluid .span12 { width: 100%; }
.row-fluid .span11 { width: 91.4365%; }
.row-fluid .span10 { width: 82.8729%; }
.row-fluid .span9 { width: 74.3094%; }
.row-fluid .span8 { width: 65.7459%; }
.row-fluid .span7 { width: 57.1823%; }
.row-fluid .span6 { width: 48.6188%; }
.row-fluid .span5 { width: 40.0552%; }
.row-fluid .span4 { width: 31.4917%; }
.row-fluid .span3 { width: 22.9282%; }
.row-fluid .span2 { width: 14.3646%; }
.row-fluid .span1 { width: 5.8011%; }
.row-fluid .offset12 { margin-left: 105.525%; }
.row-fluid .offset12:first-child { margin-left: 102.762%; }
.row-fluid .offset11 { margin-left: 96.9613%; }
.row-fluid .offset11:first-child { margin-left: 94.1989%; }
.row-fluid .offset10 { margin-left: 88.3978%; }
.row-fluid .offset10:first-child { margin-left: 85.6354%; }
.row-fluid .offset9 { margin-left: 79.8343%; }
.row-fluid .offset9:first-child { margin-left: 77.0718%; }
.row-fluid .offset8 { margin-left: 71.2707%; }
.row-fluid .offset8:first-child { margin-left: 68.5083%; }
.row-fluid .offset7 { margin-left: 62.7072%; }
.row-fluid .offset7:first-child { margin-left: 59.9448%; }
.row-fluid .offset6 { margin-left: 54.1436%; }
.row-fluid .offset6:first-child { margin-left: 51.3812%; }
.row-fluid .offset5 { margin-left: 45.5801%; }
.row-fluid .offset5:first-child { margin-left: 42.8177%; }
.row-fluid .offset4 { margin-left: 37.0166%; }
.row-fluid .offset4:first-child { margin-left: 34.2541%; }
.row-fluid .offset3 { margin-left: 28.453%; }
.row-fluid .offset3:first-child { margin-left: 25.6906%; }
.row-fluid .offset2 { margin-left: 19.8895%; }
.row-fluid .offset2:first-child { margin-left: 17.1271%; }
.row-fluid .offset1 { margin-left: 11.326%; }
.row-fluid .offset1:first-child { margin-left: 8.56354%; }
.uneditable-input, input, textarea { margin-left: 0px; }
.controls-row [class*=3D"span"] + [class*=3D"span"] { margin-left: 20px; =
}
.uneditable-input.span12, input.span12, textarea.span12 { width: 710px; }
.uneditable-input.span11, input.span11, textarea.span11 { width: 648px; }
.uneditable-input.span10, input.span10, textarea.span10 { width: 586px; }
.uneditable-input.span9, input.span9, textarea.span9 { width: 524px; }
.uneditable-input.span8, input.span8, textarea.span8 { width: 462px; }
.uneditable-input.span7, input.span7, textarea.span7 { width: 400px; }
.uneditable-input.span6, input.span6, textarea.span6 { width: 338px; }
.uneditable-input.span5, input.span5, textarea.span5 { width: 276px; }
.uneditable-input.span4, input.span4, textarea.span4 { width: 214px; }
.uneditable-input.span3, input.span3, textarea.span3 { width: 152px; }
.uneditable-input.span2, input.span2, textarea.span2 { width: 90px; }
.uneditable-input.span1, input.span1, textarea.span1 { width: 28px; }
}
@media screen and (min-width: 1200px) {
.row { margin-left: -30px; }
.row::after, .row::before { display: table; content: ""; line-height: 0; =
}
.row::after { clear: both; }
[class*=3D"span"] { float: left; min-height: 1px; margin-left: 30px; }
.container, .navbar-fixed-bottom .container, .navbar-fixed-top .container=
, .navbar-static-top .container { width: 1170px; }
.span12 { width: 1170px; }
.span11 { width: 1070px; }
.span10 { width: 970px; }
.span9 { width: 870px; }
.span8 { width: 770px; }
.span7 { width: 670px; }
.span6 { width: 570px; }
.span5 { width: 470px; }
.span4 { width: 370px; }
.span3 { width: 270px; }
.span2 { width: 170px; }
.span1 { width: 70px; }
.offset12 { margin-left: 1230px; }
.offset11 { margin-left: 1130px; }
.offset10 { margin-left: 1030px; }
.offset9 { margin-left: 930px; }
.offset8 { margin-left: 830px; }
.offset7 { margin-left: 730px; }
.offset6 { margin-left: 630px; }
.offset5 { margin-left: 530px; }
.offset4 { margin-left: 430px; }
.offset3 { margin-left: 330px; }
.offset2 { margin-left: 230px; }
.offset1 { margin-left: 130px; }
.row-fluid { width: 100%; }
.row-fluid::after, .row-fluid::before { display: table; content: ""; line=
-height: 0; }
.row-fluid::after { clear: both; }
.row-fluid [class*=3D"span"] { display: block; width: 100%; min-height: 3=
0px; box-sizing: border-box; float: left; margin-left: 2.5641%; }
.row-fluid [class*=3D"span"]:first-child { margin-left: 0px; }
.row-fluid .controls-row [class*=3D"span"] + [class*=3D"span"] { margin-l=
eft: 2.5641%; }
.row-fluid .span12 { width: 100%; }
.row-fluid .span11 { width: 91.453%; }
.row-fluid .span10 { width: 82.906%; }
.row-fluid .span9 { width: 74.359%; }
.row-fluid .span8 { width: 65.812%; }
.row-fluid .span7 { width: 57.265%; }
.row-fluid .span6 { width: 48.7179%; }
.row-fluid .span5 { width: 40.1709%; }
.row-fluid .span4 { width: 31.6239%; }
.row-fluid .span3 { width: 23.0769%; }
.row-fluid .span2 { width: 14.5299%; }
.row-fluid .span1 { width: 5.98291%; }
.row-fluid .offset12 { margin-left: 105.128%; }
.row-fluid .offset12:first-child { margin-left: 102.564%; }
.row-fluid .offset11 { margin-left: 96.5812%; }
.row-fluid .offset11:first-child { margin-left: 94.0171%; }
.row-fluid .offset10 { margin-left: 88.0342%; }
.row-fluid .offset10:first-child { margin-left: 85.4701%; }
.row-fluid .offset9 { margin-left: 79.4872%; }
.row-fluid .offset9:first-child { margin-left: 76.9231%; }
.row-fluid .offset8 { margin-left: 70.9402%; }
.row-fluid .offset8:first-child { margin-left: 68.3761%; }
.row-fluid .offset7 { margin-left: 62.3932%; }
.row-fluid .offset7:first-child { margin-left: 59.8291%; }
.row-fluid .offset6 { margin-left: 53.8462%; }
.row-fluid .offset6:first-child { margin-left: 51.2821%; }
.row-fluid .offset5 { margin-left: 45.2991%; }
.row-fluid .offset5:first-child { margin-left: 42.735%; }
.row-fluid .offset4 { margin-left: 36.7521%; }
.row-fluid .offset4:first-child { margin-left: 34.188%; }
.row-fluid .offset3 { margin-left: 28.2051%; }
.row-fluid .offset3:first-child { margin-left: 25.641%; }
.row-fluid .offset2 { margin-left: 19.6581%; }
.row-fluid .offset2:first-child { margin-left: 17.094%; }
.row-fluid .offset1 { margin-left: 11.1111%; }
.row-fluid .offset1:first-child { margin-left: 8.54701%; }
.uneditable-input, input, textarea { margin-left: 0px; }
.controls-row [class*=3D"span"] + [class*=3D"span"] { margin-left: 30px; =
}
.uneditable-input.span12, input.span12, textarea.span12 { width: 1156px; =
}
.uneditable-input.span11, input.span11, textarea.span11 { width: 1056px; =
}
.uneditable-input.span10, input.span10, textarea.span10 { width: 956px; }
.uneditable-input.span9, input.span9, textarea.span9 { width: 856px; }
.uneditable-input.span8, input.span8, textarea.span8 { width: 756px; }
.uneditable-input.span7, input.span7, textarea.span7 { width: 656px; }
.uneditable-input.span6, input.span6, textarea.span6 { width: 556px; }
.uneditable-input.span5, input.span5, textarea.span5 { width: 456px; }
.uneditable-input.span4, input.span4, textarea.span4 { width: 356px; }
.uneditable-input.span3, input.span3, textarea.span3 { width: 256px; }
.uneditable-input.span2, input.span2, textarea.span2 { width: 156px; }
.uneditable-input.span1, input.span1, textarea.span1 { width: 56px; }
.thumbnails { margin-left: -30px; }
.thumbnails > li { margin-left: 30px; }
.row-fluid .thumbnails { margin-left: 0px; }
}
@media screen and (max-width: 979px) {
body { padding-top: 0px; }
.navbar-fixed-bottom, .navbar-fixed-top { position: static; }
.navbar-fixed-top { margin-bottom: 20px; }
.navbar-fixed-bottom { margin-top: 20px; }
.navbar-fixed-bottom .navbar-inner, .navbar-fixed-top .navbar-inner { pad=
ding: 5px; }
.navbar .container { width: auto; padding: 0px; }
.navbar .brand { padding-left: 10px; padding-right: 10px; margin: 0px 0px=
0px -5px; }
.nav-collapse { clear: both; }
.nav-collapse .nav { float: none; margin: 0px 0px 10px; }
.nav-collapse .nav > li { float: none; }
.nav-collapse .nav > li > a { margin-bottom: 2px; }
.nav-collapse .nav > .divider-vertical { display: none; }
.nav-collapse .nav .nav-header { color: rgb(119, 119, 119); text-shadow: =
none; }
.nav-collapse .dropdown-menu a, .nav-collapse .nav > li > a { padding: 9p=
x 15px; font-weight: 700; color: rgb(119, 119, 119); border-radius: 3px; }
.nav-collapse .btn { padding: 4px 10px; font-weight: 400; border-radius: =
4px; }
.nav-collapse .dropdown-menu li + li a { margin-bottom: 2px; }
.nav-collapse .dropdown-menu a:focus, .nav-collapse .dropdown-menu a:hove=
r, .nav-collapse .nav > li > a:focus, .nav-collapse .nav > li > a:hover { b=
ackground-color: rgb(242, 242, 242); }
.navbar-inverse .nav-collapse .dropdown-menu a, .navbar-inverse .nav-coll=
apse .nav > li > a { color: rgb(153, 153, 153); }
.navbar-inverse .nav-collapse .dropdown-menu a:focus, .navbar-inverse .na=
v-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .nav > li =
> a:focus, .navbar-inverse .nav-collapse .nav > li > a:hover { background-c=
olor: rgb(17, 17, 17); }
.nav-collapse.in .btn-group { margin-top: 5px; padding: 0px; }
.nav-collapse .dropdown-menu { position: static; top: auto; left: auto; f=
loat: none; display: none; max-width: none; margin: 0px 15px; padding: 0px;=
background-color: transparent; border: none; border-radius: 0px; box-shado=
w: none; }
.nav-collapse .open > .dropdown-menu { display: block; }
.nav-collapse .dropdown-menu::after, .nav-collapse .dropdown-menu::before=
{ display: none; }
.nav-collapse .dropdown-menu .divider { display: none; }
.nav-collapse .nav > li > .dropdown-menu::after, .nav-collapse .nav > li =
> .dropdown-menu::before { display: none; }
.nav-collapse .navbar-form, .nav-collapse .navbar-search { float: none; p=
adding: 10px 15px; margin: 10px 0px; border-top: 1px solid rgb(242, 242, 24=
2); border-bottom: 1px solid rgb(242, 242, 242); box-shadow: rgba(255, 255,=
255, 0.1) 0px 1px 0px inset, rgba(255, 255, 255, 0.1) 0px 1px 0px; }
.navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse=
.navbar-search { border-top-color: rgb(17, 17, 17); border-bottom-color: r=
gb(17, 17, 17); }
.navbar .nav-collapse .nav.pull-right { float: none; margin-left: 0px; }
.nav-collapse, .nav-collapse.collapse { overflow: hidden; height: 0px; }
.navbar .btn-navbar { display: block; }
.navbar-static .navbar-inner { padding-left: 10px; padding-right: 10px; }
}
@media screen and (min-width: 980px) {
.nav-collapse.collapse { height: auto !important; overflow: visible !impo=
rtant; }
}
@font-face { font-family: FontAwesome; src: url("/sheets/font/fontawesome-w=
ebfont.eot?#iefix&v=3D4.6.3") format("embedded-opentype"), url("/sheets/fon=
t/fontawesome-webfont.woff?v=3D4.6.3") format("woff"), url("/sheets/font/fo=
ntawesome-webfont.ttf?v=3D4.6.3") format("truetype"), url("/sheets/font/fon=
tawesome-webfont.svg#fontawesomeregular?v=3D4.6.3") format("svg"); font-wei=
ght: 400; font-style: normal; }
[class*=3D" icon-"], [class^=3D"icon-"] { font-family: FontAwesome; font-we=
ight: 400; font-style: normal; text-decoration: inherit; -webkit-font-smoot=
hing: antialiased; }
[class*=3D" icon-"]::before, [class^=3D"icon-"]::before { text-decoration: =
inherit; display: inline-block; speak: none; }
.icon-large::before { vertical-align: -10%; font-size: 1.33333em; }
a [class*=3D" icon-"], a [class^=3D"icon-"] { display: inline; }
[class*=3D" icon-"].icon-fixed-width, [class^=3D"icon-"].icon-fixed-width {=
display: inline-block; width: 1.14286em; text-align: right; padding-right:=
0.285714em; }
[class*=3D" icon-"].icon-fixed-width.icon-large, [class^=3D"icon-"].icon-fi=
xed-width.icon-large { width: 1.42857em; }
.icons-ul { margin-left: 2.14286em; list-style-type: none; }
.icons-ul > li { position: relative; }
.icons-ul .icon-li { position: absolute; left: -2.14286em; width: 2.14286em=
; text-align: center; line-height: inherit; }
[class*=3D" icon-"].hide, [class^=3D"icon-"].hide { display: none; }
.icon-muted { color: rgb(238, 238, 238); }
.icon-light { color: rgb(255, 255, 255); }
.icon-dark { color: rgb(51, 51, 51); }
.icon-border { border: 1px solid rgb(238, 238, 238); padding: 0.2em 0.25em =
0.15em; border-radius: 3px; }
.icon-2x { font-size: 2em; }
.icon-2x.icon-border { border-width: 2px; border-radius: 4px; }
.icon-3x { font-size: 3em; }
.icon-3x.icon-border { border-width: 3px; border-radius: 5px; }
.icon-4x { font-size: 4em; }
.icon-4x.icon-border { border-width: 4px; border-radius: 6px; }
.icon-5x { font-size: 5em; }
.icon-5x.icon-border { border-width: 5px; border-radius: 7px; }
.pull-right { float: right; }
.pull-left { float: left; }
[class*=3D" icon-"].pull-left, [class^=3D"icon-"].pull-left { margin-right:=
0.3em; }
[class*=3D" icon-"].pull-right, [class^=3D"icon-"].pull-right { margin-left=
: 0.3em; }
[class*=3D" icon-"], [class^=3D"icon-"] { display: inline; width: auto; hei=
ght: auto; line-height: normal; vertical-align: baseline; background-image:=
none; background-position: 0px 0px; background-repeat: repeat; margin-top:=
0px; }
.dropdown-menu > .active > a > [class*=3D" icon-"], .dropdown-menu > .activ=
e > a > [class^=3D"icon-"], .dropdown-menu > li > a:hover > [class*=3D" ico=
n-"], .dropdown-menu > li > a:hover > [class^=3D"icon-"], .dropdown-submenu=
:hover > a > [class*=3D" icon-"], .dropdown-submenu:hover > a > [class^=3D"=
icon-"], .icon-white, .nav-list > .active > a > [class*=3D" icon-"], .nav-l=
ist > .active > a > [class^=3D"icon-"], .nav-pills > .active > a > [class*=
=3D" icon-"], .nav-pills > .active > a > [class^=3D"icon-"], .navbar-invers=
e .nav > .active > a > [class*=3D" icon-"], .navbar-inverse .nav > .active =
> a > [class^=3D"icon-"] { background-image: none; }
.btn [class*=3D" icon-"].icon-large, .btn [class^=3D"icon-"].icon-large, .n=
av [class*=3D" icon-"].icon-large, .nav [class^=3D"icon-"].icon-large { lin=
e-height: 0.9em; }
.btn [class*=3D" icon-"].icon-spin, .btn [class^=3D"icon-"].icon-spin, .nav=
[class*=3D" icon-"].icon-spin, .nav [class^=3D"icon-"].icon-spin { display=
: inline-block; }
.nav-pills [class*=3D" icon-"], .nav-pills [class*=3D" icon-"].icon-large, =
.nav-pills [class^=3D"icon-"], .nav-pills [class^=3D"icon-"].icon-large, .n=
av-tabs [class*=3D" icon-"], .nav-tabs [class*=3D" icon-"].icon-large, .nav=
-tabs [class^=3D"icon-"], .nav-tabs [class^=3D"icon-"].icon-large { line-he=
ight: 0.9em; }
.btn [class*=3D" icon-"].pull-left.icon-2x, .btn [class*=3D" icon-"].pull-r=
ight.icon-2x, .btn [class^=3D"icon-"].pull-left.icon-2x, .btn [class^=3D"ic=
on-"].pull-right.icon-2x { margin-top: 0.18em; }
.btn [class*=3D" icon-"].icon-spin.icon-large, .btn [class^=3D"icon-"].icon=
-spin.icon-large { line-height: 0.8em; }
.btn.btn-small [class*=3D" icon-"].pull-left.icon-2x, .btn.btn-small [class=
*=3D" icon-"].pull-right.icon-2x, .btn.btn-small [class^=3D"icon-"].pull-le=
ft.icon-2x, .btn.btn-small [class^=3D"icon-"].pull-right.icon-2x { margin-t=
op: 0.25em; }
.btn.btn-large [class*=3D" icon-"], .btn.btn-large [class^=3D"icon-"] { mar=
gin-top: 0px; }
.btn.btn-large [class*=3D" icon-"].pull-left.icon-2x, .btn.btn-large [class=
*=3D" icon-"].pull-right.icon-2x, .btn.btn-large [class^=3D"icon-"].pull-le=
ft.icon-2x, .btn.btn-large [class^=3D"icon-"].pull-right.icon-2x { margin-t=
op: 0.05em; }
.btn.btn-large [class*=3D" icon-"].pull-left.icon-2x, .btn.btn-large [class=
^=3D"icon-"].pull-left.icon-2x { margin-right: 0.2em; }
.btn.btn-large [class*=3D" icon-"].pull-right.icon-2x, .btn.btn-large [clas=
s^=3D"icon-"].pull-right.icon-2x { margin-left: 0.2em; }
.nav-list [class*=3D" icon-"], .nav-list [class^=3D"icon-"] { line-height: =
inherit; }
.icon-stack { position: relative; display: inline-block; width: 2em; height=
: 2em; line-height: 2em; vertical-align: -35%; }
.icon-stack [class*=3D" icon-"], .icon-stack [class^=3D"icon-"] { display: =
block; text-align: center; position: absolute; width: 100%; height: 100%; f=
ont-size: 1em; line-height: inherit; }
.icon-stack .icon-stack-base { font-size: 2em; }
.icon-spin { display: inline-block; animation: 1.5s linear 0s infinite norm=
al none running spin; }
a .icon-spin, a .icon-stack { display: inline-block; text-decoration: none;=
}
@-webkit-keyframes spin {=20
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
@keyframes spin {=20
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
.icon-rotate-90::before { transform: rotate(90deg); }
.icon-rotate-45::before { transform: rotate(45deg); }
.icon-rotate-135::before { transform: rotate(135deg); }
.icon-rotate-180::before { transform: rotate(180deg); }
.icon-rotate-270::before { transform: rotate(270deg); }
.icon-flip-horizontal::before { transform: scale(-1, 1); }
.icon-flip-vertical::before { transform: scale(1, -1); }
a .icon-flip-horizontal::before, a .icon-flip-vertical::before, a .icon-rot=
ate-180::before, a .icon-rotate-270::before, a .icon-rotate-90::before { di=
splay: inline-block; }
.icon-glass::before { content: "=EF=80=80"; }
.icon-music::before { content: "=EF=80=81"; }
.icon-search::before { content: "=EF=80=82"; }
.icon-envelope-alt::before { content: "=EF=80=83"; }
.icon-heart::before { content: "=EF=80=84"; }
.icon-star::before { content: "=EF=80=85"; }
.icon-star-empty::before { content: "=EF=80=86"; }
.icon-user::before { content: "=EF=80=87"; }
.icon-film::before { content: "=EF=80=88"; }
.icon-th-large::before { content: "=EF=80=89"; }
.icon-th::before { content: "=EF=80=8A"; }
.icon-th-list::before { content: "=EF=80=8B"; }
.icon-ok::before { content: "=EF=80=8C"; }
.icon-remove::before { content: "=EF=80=8D"; }
.icon-zoom-in::before { content: "=EF=80=8E"; }
.icon-zoom-out::before { content: "=EF=80=90"; }
.icon-off::before, .icon-power-off::before { content: "=EF=80=91"; }
.icon-signal::before { content: "=EF=80=92"; }
.icon-cog::before, .icon-gear::before { content: "=EF=80=93"; }
.icon-trash::before { content: "=EF=80=94"; }
.icon-home::before { content: "=EF=80=95"; }
.icon-file-alt::before { content: "=EF=80=96"; }
.icon-time::before { content: "=EF=80=97"; }
.icon-road::before { content: "=EF=80=98"; }
.icon-download-alt::before { content: "=EF=80=99"; }
.icon-download::before { content: "=EF=80=9A"; }
.icon-upload::before { content: "=EF=80=9B"; }
.icon-inbox::before { content: "=EF=80=9C"; }
.icon-play-circle::before { content: "=EF=80=9D"; }
.icon-repeat::before, .icon-rotate-right::before { content: "=EF=80=9E"; }
.icon-refresh::before { content: "=EF=80=A1"; }
.icon-list-alt::before { content: "=EF=80=A2"; }
.icon-lock::before { content: "=EF=80=A3"; }
.icon-flag::before { content: "=EF=80=A4"; }
.icon-headphones::before { content: "=EF=80=A5"; }
.icon-volume-off::before { content: "=EF=80=A6"; }
.icon-volume-down::before { content: "=EF=80=A7"; }
.icon-volume-up::before { content: "=EF=80=A8"; }
.icon-qrcode::before { content: "=EF=80=A9"; }
.icon-barcode::before { content: "=EF=80=AA"; }
.icon-tag::before { content: "=EF=80=AB"; }
.icon-tags::before { content: "=EF=80=AC"; }
.icon-book::before { content: "=EF=80=AD"; }
.icon-bookmark::before { content: "=EF=80=AE"; }
.icon-print::before { content: "=EF=80=AF"; }
.icon-camera::before { content: "=EF=80=B0"; }
.icon-font::before { content: "=EF=80=B1"; }
.icon-bold::before { content: "=EF=80=B2"; }
.icon-italic::before { content: "=EF=80=B3"; }
.icon-text-height::before { content: "=EF=80=B4"; }
.icon-text-width::before { content: "=EF=80=B5"; }
.icon-align-left::before { content: "=EF=80=B6"; }
.icon-align-center::before { content: "=EF=80=B7"; }
.icon-align-right::before { content: "=EF=80=B8"; }
.icon-align-justify::before { content: "=EF=80=B9"; }
.icon-list::before { content: "=EF=80=BA"; }
.icon-indent-left::before { content: "=EF=80=BB"; }
.icon-indent-right::before { content: "=EF=80=BC"; }
.icon-facetime-video::before { content: "=EF=80=BD"; }
.icon-picture::before { content: "=EF=80=BE"; }
.icon-pencil::before { content: "=EF=81=80"; }
.icon-map-marker::before { content: "=EF=81=81"; }
.icon-adjust::before { content: "=EF=81=82"; }
.icon-tint::before { content: "=EF=81=83"; }
.icon-edit::before { content: "=EF=81=84"; }
.icon-share::before { content: "=EF=81=85"; }
.icon-check::before { content: "=EF=81=86"; }
.icon-move::before { content: "=EF=81=87"; }
.icon-step-backward::before { content: "=EF=81=88"; }
.icon-fast-backward::before { content: "=EF=81=89"; }
.icon-backward::before { content: "=EF=81=8A"; }
.icon-play::before { content: "=EF=81=8B"; }
.icon-pause::before { content: "=EF=81=8C"; }
.icon-stop::before { content: "=EF=81=8D"; }
.icon-forward::before { content: "=EF=81=8E"; }
.icon-fast-forward::before { content: "=EF=81=90"; }
.icon-step-forward::before { content: "=EF=81=91"; }
.icon-eject::before { content: "=EF=81=92"; }
.icon-chevron-left::before { content: "=EF=81=93"; }
.icon-chevron-right::before { content: "=EF=81=94"; }
.icon-plus-sign::before { content: "=EF=81=95"; }
.icon-minus-sign::before { content: "=EF=81=96"; }
.icon-remove-sign::before { content: "=EF=81=97"; }
.icon-ok-sign::before { content: "=EF=81=98"; }
.icon-question-sign::before { content: "=EF=81=99"; }
.icon-info-sign::before { content: "=EF=81=9A"; }
.icon-screenshot::before { content: "=EF=81=9B"; }
.icon-remove-circle::before { content: "=EF=81=9C"; }
.icon-ok-circle::before { content: "=EF=81=9D"; }
.icon-ban-circle::before { content: "=EF=81=9E"; }
.icon-arrow-left::before { content: "=EF=81=A0"; }
.icon-arrow-right::before { content: "=EF=81=A1"; }
.icon-arrow-up::before { content: "=EF=81=A2"; }
.icon-arrow-down::before { content: "=EF=81=A3"; }
.icon-mail-forward::before, .icon-share-alt::before { content: "=EF=81=A4";=
}
.icon-resize-full::before { content: "=EF=81=A5"; }
.icon-resize-small::before { content: "=EF=81=A6"; }
.icon-plus::before { content: "=EF=81=A7"; }
.icon-minus::before { content: "=EF=81=A8"; }
.icon-asterisk::before { content: "=EF=81=A9"; }
.icon-exclamation-sign::before { content: "=EF=81=AA"; }
.icon-gift::before { content: "=EF=81=AB"; }
.icon-leaf::before { content: "=EF=81=AC"; }
.icon-fire::before { content: "=EF=81=AD"; }
.icon-eye-open::before { content: "=EF=81=AE"; }
.icon-eye-close::before { content: "=EF=81=B0"; }
.icon-warning-sign::before { content: "=EF=81=B1"; }
.icon-plane::before { content: "=EF=81=B2"; }
.icon-calendar::before { content: "=EF=81=B3"; }
.icon-random::before { content: "=EF=81=B4"; }
.icon-comment::before { content: "=EF=81=B5"; }
.icon-magnet::before { content: "=EF=81=B6"; }
.icon-chevron-up::before { content: "=EF=81=B7"; }
.icon-chevron-down::before { content: "=EF=81=B8"; }
.icon-retweet::before { content: "=EF=81=B9"; }
.icon-shopping-cart::before { content: "=EF=81=BA"; }
.icon-folder-close::before { content: "=EF=81=BB"; }
.icon-folder-open::before { content: "=EF=81=BC"; }
.icon-resize-vertical::before { content: "=EF=81=BD"; }
.icon-resize-horizontal::before { content: "=EF=81=BE"; }
.icon-bar-chart::before { content: "=EF=82=80"; }
.icon-twitter-sign::before { content: "=EF=82=81"; }
.icon-facebook-sign::before { content: "=EF=82=82"; }
.icon-camera-retro::before { content: "=EF=82=83"; }
.icon-key::before { content: "=EF=82=84"; }
.icon-cogs::before, .icon-gears::before { content: "=EF=82=85"; }
.icon-comments::before { content: "=EF=82=86"; }
.icon-thumbs-up-alt::before { content: "=EF=82=87"; }
.icon-thumbs-down-alt::before { content: "=EF=82=88"; }
.icon-star-half::before { content: "=EF=82=89"; }
.icon-heart-empty::before { content: "=EF=82=8A"; }
.icon-signout::before { content: "=EF=82=8B"; }
.icon-linkedin-sign::before { content: "=EF=82=8C"; }
.icon-pushpin::before { content: "=EF=82=8D"; }
.icon-external-link::before { content: "=EF=82=8E"; }
.icon-signin::before { content: "=EF=82=90"; }
.icon-trophy::before { content: "=EF=82=91"; }
.icon-github-sign::before { content: "=EF=82=92"; }
.icon-upload-alt::before { content: "=EF=82=93"; }
.icon-lemon::before { content: "=EF=82=94"; }
.icon-phone::before { content: "=EF=82=95"; }
.icon-check-empty::before, .icon-unchecked::before { content: "=EF=82=96"; =
}
.icon-bookmark-empty::before { content: "=EF=82=97"; }
.icon-phone-sign::before { content: "=EF=82=98"; }
.icon-twitter::before { content: "=EF=82=99"; }
.icon-facebook::before { content: "=EF=82=9A"; }
.icon-github::before { content: "=EF=82=9B"; }
.icon-unlock::before { content: "=EF=82=9C"; }
.icon-credit-card::before { content: "=EF=82=9D"; }
.icon-rss::before { content: "=EF=82=9E"; }
.icon-hdd::before { content: "=EF=82=A0"; }
.icon-bullhorn::before { content: "=EF=82=A1"; }
.icon-bell::before { content: "=EF=82=A2"; }
.icon-certificate::before { content: "=EF=82=A3"; }
.icon-hand-right::before { content: "=EF=82=A4"; }
.icon-hand-left::before { content: "=EF=82=A5"; }
.icon-hand-up::before { content: "=EF=82=A6"; }
.icon-hand-down::before { content: "=EF=82=A7"; }
.icon-circle-arrow-left::before { content: "=EF=82=A8"; }
.icon-circle-arrow-right::before { content: "=EF=82=A9"; }
.icon-circle-arrow-up::before { content: "=EF=82=AA"; }
.icon-circle-arrow-down::before { content: "=EF=82=AB"; }
.icon-globe::before { content: "=EF=82=AC"; }
.icon-wrench::before { content: "=EF=82=AD"; }
.icon-tasks::before { content: "=EF=82=AE"; }
.icon-filter::before { content: "=EF=82=B0"; }
.icon-briefcase::before { content: "=EF=82=B1"; }
.icon-fullscreen::before { content: "=EF=82=B2"; }
.icon-group::before { content: "=EF=83=80"; }
.icon-link::before { content: "=EF=83=81"; }
.icon-cloud::before { content: "=EF=83=82"; }
.icon-beaker::before { content: "=EF=83=83"; }
.icon-cut::before { content: "=EF=83=84"; }
.icon-copy::before { content: "=EF=83=85"; }
.icon-paper-clip::before, .icon-paperclip::before { content: "=EF=83=86"; }
.icon-save::before { content: "=EF=83=87"; }
.icon-sign-blank::before { content: "=EF=83=88"; }
.icon-reorder::before { content: "=EF=83=89"; }
.icon-list-ul::before { content: "=EF=83=8A"; }
.icon-list-ol::before { content: "=EF=83=8B"; }
.icon-strikethrough::before { content: "=EF=83=8C"; }
.icon-underline::before { content: "=EF=83=8D"; }
.icon-table::before { content: "=EF=83=8E"; }
.icon-magic::before { content: "=EF=83=90"; }
.icon-truck::before { content: "=EF=83=91"; }
.icon-pinterest::before { content: "=EF=83=92"; }
.icon-pinterest-sign::before { content: "=EF=83=93"; }
.icon-google-plus-sign::before { content: "=EF=83=94"; }
.icon-google-plus::before { content: "=EF=83=95"; }
.icon-money::before { content: "=EF=83=96"; }
.icon-caret-down::before { content: "=EF=83=97"; }
.icon-caret-up::before { content: "=EF=83=98"; }
.icon-caret-left::before { content: "=EF=83=99"; }
.icon-caret-right::before { content: "=EF=83=9A"; }
.icon-columns::before { content: "=EF=83=9B"; }
.icon-sort::before { content: "=EF=83=9C"; }
.icon-sort-down::before { content: "=EF=83=9D"; }
.icon-sort-up::before { content: "=EF=83=9E"; }
.icon-envelope::before { content: "=EF=83=A0"; }
.icon-linkedin::before { content: "=EF=83=A1"; }
.icon-rotate-left::before, .icon-undo::before { content: "=EF=83=A2"; }
.icon-legal::before { content: "=EF=83=A3"; }
.icon-dashboard::before { content: "=EF=83=A4"; }
.icon-comment-alt::before { content: "=EF=83=A5"; }
.icon-comments-alt::before { content: "=EF=83=A6"; }
.icon-bolt::before { content: "=EF=83=A7"; }
.icon-sitemap::before { content: "=EF=83=A8"; }
.icon-umbrella::before { content: "=EF=83=A9"; }
.icon-paste::before { content: "=EF=83=AA"; }
.icon-lightbulb::before { content: "=EF=83=AB"; }
.icon-exchange::before { content: "=EF=83=AC"; }
.icon-cloud-download::before { content: "=EF=83=AD"; }
.icon-cloud-upload::before { content: "=EF=83=AE"; }
.icon-user-md::before { content: "=EF=83=B0"; }
.icon-stethoscope::before { content: "=EF=83=B1"; }
.icon-suitcase::before { content: "=EF=83=B2"; }
.icon-bell-alt::before { content: "=EF=83=B3"; }
.icon-coffee::before { content: "=EF=83=B4"; }
.icon-food::before { content: "=EF=83=B5"; }
.icon-file-text-alt::before { content: "=EF=83=B6"; }
.icon-building::before { content: "=EF=83=B7"; }
.icon-hospital::before { content: "=EF=83=B8"; }
.icon-ambulance::before { content: "=EF=83=B9"; }
.icon-medkit::before { content: "=EF=83=BA"; }
.icon-fighter-jet::before { content: "=EF=83=BB"; }
.icon-beer::before { content: "=EF=83=BC"; }
.icon-h-sign::before { content: "=EF=83=BD"; }
.icon-plus-sign-alt::before { content: "=EF=83=BE"; }
.icon-double-angle-left::before { content: "=EF=84=80"; }
.icon-double-angle-right::before { content: "=EF=84=81"; }
.icon-double-angle-up::before { content: "=EF=84=82"; }
.icon-double-angle-down::before { content: "=EF=84=83"; }
.icon-angle-left::before { content: "=EF=84=84"; }
.icon-angle-right::before { content: "=EF=84=85"; }
.icon-angle-up::before { content: "=EF=84=86"; }
.icon-angle-down::before { content: "=EF=84=87"; }
.icon-desktop::before { content: "=EF=84=88"; }
.icon-laptop::before { content: "=EF=84=89"; }
.icon-tablet::before { content: "=EF=84=8A"; }
.icon-mobile-phone::before { content: "=EF=84=8B"; }
.icon-circle-blank::before { content: "=EF=84=8C"; }
.icon-quote-left::before { content: "=EF=84=8D"; }
.icon-quote-right::before { content: "=EF=84=8E"; }
.icon-spinner::before { content: "=EF=84=90"; }
.icon-circle::before { content: "=EF=84=91"; }
.icon-mail-reply::before, .icon-reply::before { content: "=EF=84=92"; }
.icon-github-alt::before { content: "=EF=84=93"; }
.icon-folder-close-alt::before { content: "=EF=84=94"; }
.icon-folder-open-alt::before { content: "=EF=84=95"; }
.icon-expand-alt::before { content: "=EF=84=96"; }
.icon-collapse-alt::before { content: "=EF=84=97"; }
.icon-smile::before { content: "=EF=84=98"; }
.icon-frown::before { content: "=EF=84=99"; }
.icon-meh::before { content: "=EF=84=9A"; }
.icon-gamepad::before { content: "=EF=84=9B"; }
.icon-keyboard::before { content: "=EF=84=9C"; }
.icon-flag-alt::before { content: "=EF=84=9D"; }
.icon-flag-checkered::before { content: "=EF=84=9E"; }
.icon-terminal::before { content: "=EF=84=A0"; }
.icon-code::before { content: "=EF=84=A1"; }
.icon-reply-all::before { content: "=EF=84=A2"; }
.icon-mail-reply-all::before { content: "=EF=84=A2"; }
.icon-star-half-empty::before, .icon-star-half-full::before { content: "=EF=
=84=A3"; }
.icon-location-arrow::before { content: "=EF=84=A4"; }
.icon-crop::before { content: "=EF=84=A5"; }
.icon-code-fork::before { content: "=EF=84=A6"; }
.icon-unlink::before { content: "=EF=84=A7"; }
.icon-question::before { content: "=EF=84=A8"; }
.icon-info::before { content: "=EF=84=A9"; }
.icon-exclamation::before { content: "=EF=84=AA"; }
.icon-superscript::before { content: "=EF=84=AB"; }
.icon-subscript::before { content: "=EF=84=AC"; }
.icon-eraser::before { content: "=EF=84=AD"; }
.icon-puzzle-piece::before { content: "=EF=84=AE"; }
.icon-microphone::before { content: "=EF=84=B0"; }
.icon-microphone-off::before { content: "=EF=84=B1"; }
.icon-shield::before { content: "=EF=84=B2"; }
.icon-calendar-empty::before { content: "=EF=84=B3"; }
.icon-fire-extinguisher::before { content: "=EF=84=B4"; }
.icon-rocket::before { content: "=EF=84=B5"; }
.icon-maxcdn::before { content: "=EF=84=B6"; }
.icon-chevron-sign-left::before { content: "=EF=84=B7"; }
.icon-chevron-sign-right::before { content: "=EF=84=B8"; }
.icon-chevron-sign-up::before { content: "=EF=84=B9"; }
.icon-chevron-sign-down::before { content: "=EF=84=BA"; }
.icon-html5::before { content: "=EF=84=BB"; }
.icon-css3::before { content: "=EF=84=BC"; }
.icon-anchor::before { content: "=EF=84=BD"; }
.icon-unlock-alt::before { content: "=EF=84=BE"; }
.icon-bullseye::before { content: "=EF=85=80"; }
.icon-ellipsis-horizontal::before { content: "=EF=85=81"; }
.icon-ellipsis-vertical::before { content: "=EF=85=82"; }
.icon-rss-sign::before { content: "=EF=85=83"; }
.icon-play-sign::before { content: "=EF=85=84"; }
.icon-ticket::before { content: "=EF=85=85"; }
.icon-minus-sign-alt::before { content: "=EF=85=86"; }
.icon-check-minus::before { content: "=EF=85=87"; }
.icon-level-up::before { content: "=EF=85=88"; }
.icon-level-down::before { content: "=EF=85=89"; }
.icon-check-sign::before { content: "=EF=85=8A"; }
.icon-edit-sign::before { content: "=EF=85=8B"; }
.icon-external-link-sign::before { content: "=EF=85=8C"; }
.icon-share-sign::before { content: "=EF=85=8D"; }
.icon-compass::before { content: "=EF=85=8E"; }
.icon-collapse::before { content: "=EF=85=90"; }
.icon-collapse-top::before { content: "=EF=85=91"; }
.icon-expand::before { content: "=EF=85=92"; }
.icon-eur::before, .icon-euro::before { content: "=EF=85=93"; }
.icon-gbp::before { content: "=EF=85=94"; }
.icon-dollar::before, .icon-usd::before { content: "=EF=85=95"; }
.icon-inr::before, .icon-rupee::before { content: "=EF=85=96"; }
.icon-jpy::before, .icon-yen::before { content: "=EF=85=97"; }
.icon-cny::before, .icon-renminbi::before { content: "=EF=85=98"; }
.icon-krw::before, .icon-won::before { content: "=EF=85=99"; }
.icon-bitcoin::before, .icon-btc::before { content: "=EF=85=9A"; }
.icon-file::before { content: "=EF=85=9B"; }
.icon-file-text::before { content: "=EF=85=9C"; }
.icon-sort-by-alphabet::before { content: "=EF=85=9D"; }
.icon-sort-by-alphabet-alt::before { content: "=EF=85=9E"; }
.icon-sort-by-attributes::before { content: "=EF=85=A0"; }
.icon-sort-by-attributes-alt::before { content: "=EF=85=A1"; }
.icon-sort-by-order::before { content: "=EF=85=A2"; }
.icon-sort-by-order-alt::before { content: "=EF=85=A3"; }
.icon-thumbs-up::before { content: "=EF=85=A4"; }
.icon-thumbs-down::before { content: "=EF=85=A5"; }
.icon-youtube-sign::before { content: "=EF=85=A6"; }
.icon-youtube::before { content: "=EF=85=A7"; }
.icon-xing::before { content: "=EF=85=A8"; }
.icon-xing-sign::before { content: "=EF=85=A9"; }
.icon-youtube-play::before { content: "=EF=85=AA"; }
.icon-dropbox::before { content: "=EF=85=AB"; }
.icon-stackexchange::before { content: "=EF=85=AC"; }
.icon-instagram::before { content: "=EF=85=AD"; }
.icon-flickr::before { content: "=EF=85=AE"; }
.icon-adn::before { content: "=EF=85=B0"; }
.icon-bitbucket::before { content: "=EF=85=B1"; }
.icon-bitbucket-sign::before { content: "=EF=85=B2"; }
.icon-tumblr::before { content: "=EF=85=B3"; }
.icon-tumblr-sign::before { content: "=EF=85=B4"; }
.icon-long-arrow-down::before { content: "=EF=85=B5"; }
.icon-long-arrow-up::before { content: "=EF=85=B6"; }
.icon-long-arrow-left::before { content: "=EF=85=B7"; }
.icon-long-arrow-right::before { content: "=EF=85=B8"; }
.icon-apple::before { content: "=EF=85=B9"; }
.icon-windows::before { content: "=EF=85=BA"; }
.icon-android::before { content: "=EF=85=BB"; }
.icon-linux::before { content: "=EF=85=BC"; }
.icon-dribbble::before { content: "=EF=85=BD"; }
.icon-skype::before { content: "=EF=85=BE"; }
.icon-foursquare::before { content: "=EF=86=80"; }
.icon-trello::before { content: "=EF=86=81"; }
.icon-female::before { content: "=EF=86=82"; }
.icon-male::before { content: "=EF=86=83"; }
.icon-gittip::before { content: "=EF=86=84"; }
.icon-sun::before { content: "=EF=86=85"; }
.icon-moon::before { content: "=EF=86=86"; }
.icon-archive::before { content: "=EF=86=87"; }
.icon-bug::before { content: "=EF=86=88"; }
.icon-vk::before { content: "=EF=86=89"; }
.icon-weibo::before { content: "=EF=86=8A"; }
.icon-renren::before { content: "=EF=86=8B"; }
html { height: 100%; }
body { margin: 0px; padding: 0px; font-family: Roboto, Arial, sans-serif; c=
olor: rgb(65, 64, 66); font-size: 11.8px; min-height: 100%; height: 100% !i=
mportant; }
a:active { outline: 0px; }
a:focus { }
.btn.helper { cursor: help; background-color: rgb(248, 248, 248); backgroun=
d-image: none; opacity: 1; box-shadow: none; }
.btn.btn-text { cursor: default; background-color: rgb(248, 248, 248); back=
ground-image: none; opacity: 1; box-shadow: none; }
span.helper + span.helper { margin-left: 10px; }
.map_lat_lon input { width: 100px !important; }
div.head-sys-error { padding: 20px; font-size: 12px; }
div.head-sys-error p.header { font-size: 16px; color: red; }
div.head-sys-error p.header a { font-size: 16px; }
div.head-sys-error p.instructions { color: rgb(255, 255, 255); }
#myyard-contents { font-size: 11.8px; }
div.state { width: 15px; height: 15px; border-radius: 100%; background-colo=
r: rgb(204, 204, 204); }
div.state.green { background-color: rgb(76, 158, 94); }
div.state.red { background-color: rgb(204, 0, 0); }
.color_red { color: rgb(204, 0, 0) !important; }
.color_green { color: rgb(76, 158, 94) !important; }
.color_gold { color: rgb(221, 141, 22) !important; }
.bg_red { background-color: rgb(204, 0, 0) !important; color: rgb(255, 255,=
255) !important; }
.bg_green { background-color: rgb(76, 158, 94) !important; color: rgb(255, =
255, 255) !important; }
.bg_orange { background-color: rgb(245, 216, 152) !important; }
.bg_gold { background-color: rgb(221, 141, 22) !important; }
.bg_green a, .bg_red a { color: rgb(255, 255, 255) !important; }
.help-accordion { width: 100%; background-color: rgb(245, 245, 245); border=
: 1px solid rgb(221, 221, 221); border-radius: 6px; margin: 10px 0px; paddi=
ng: 6px 0px; }
.help-accordion > ul { margin: 0px; }
.help-accordion > ul > li { list-style: none; display: block; }
.help-accordion h5 { padding: 5px 10px; cursor: pointer; margin: 0px; borde=
r-bottom: 1px solid rgb(221, 221, 221); transition: all 0.2s ease-in-out 0s=
; }
.help-accordion table { width: 100%; text-align: center; }
.help-accordion .table-with-border, .help-accordion .table-with-border td, =
.help-accordion .table-with-border th { border: 1px solid rgb(221, 221, 221=
); }
.help-accordion thead { font-size: 14px; }
.help-accordion tbody { letter-spacing: 0.01em; word-spacing: 0.03em; font-=
size: 13px; }
.fast-animate { transition: all 0.2s ease-in-out 0s; }
.animate { transition: all 0.5s ease-in-out 0s; }
.long-animate { transition: all 2s ease-in-out 0s; }
.help-accordion li:last-child h5 { border-bottom: none; }
.help-accordion > ul > li > div { padding: 5px 15px; margin: 0px; display: =
none; background-color: rgb(255, 255, 255); border-left: 6px solid rgb(242,=
242, 242); }
.help-accordion h5:hover { background-color: rgb(221, 221, 221); }
.help-accordion h5.active { box-shadow: rgb(167, 167, 167) 0px 0px 4px inse=
t; background-color: rgb(221, 221, 221); }
.lnk { font-size: 11px; font-variant: normal; letter-spacing: normal; font-=
weight: 400; padding: 2px; text-decoration: underline; color: rgb(30, 107, =
245); cursor: pointer; }
.lnk + .lnk { margin-left: 5px; }
.btn.btn-mini + .btn.btn-mini { margin-left: 5px; }
.lnk-cancel-link { color: red; }
.lnk-cancel-link:hover { background-color: red; color: rgb(255, 255, 255); =
}
.lnk-green-link { color: rgb(0, 187, 34); }
.lnk-green-link:hover { background-color: rgb(0, 187, 34); color: rgb(255, =
255, 255); }
.lnk-class { padding-left: 18px; }
.lnk-class + .lnk-class { margin-left: 10px; }
.bls { width: 15px; margin-right: 3px; cursor: pointer; opacity: 0.7; }
.bls:hover { opacity: 0.9; }
.bls:active { opacity: 1; }
.drag-n-drop { cursor: move; }
.tag { background: url("sheet-img/bg/tag.png") no-repeat; padding-left: 18p=
x; }
.shadewin, .shadewin2, .shadewin3, .shadewin_confirm { float: left; top: 0p=
x; left: 0px; width: 100%; height: 100%; background: rgb(221, 221, 221); op=
acity: 0.5; position: fixed; }
.shadewin { z-index: 799; }
.shadewin2 { z-index: 1051; }
.shadewin3 { z-index: 1099; }
.shadewin_confirm { z-index: 1150; background: rgb(97, 54, 10); opacity: 0.=
7; }
.shadewin-spinner { position: absolute; top: 50%; left: 50%; margin-top: -1=
6px; margin-left: -16px; font-size: 32px !important; }
#popup { position: absolute; padding: 0px; background-position: 8px 8px; z-=
index: 800; }
#popup2 { position: absolute; padding: 0px; background-position: 8px 8px; z=
-index: 1052; }
#popup3 { position: absolute; padding: 0px; background-position: 8px 8px; z=
-index: 1100; }
#popup_confirm { z-index: 1151; position: absolute; }
#popup_confirm .myyard-form-title { padding-left: 10px; }
#popup_confirm i.icon-question-sign { color: rgb(252, 176, 52); font-size: =
19px; margin-left: -8px; }
label.radio { padding-right: 10px; font-size: 12px; }
#popup #popupcontent-container #popupcontent #popup2 #popupcontent-containe=
r2 #popupcontent2 .myyard-form input, #popup #popupcontent-container #popup=
content #popup2 #popupcontent-container2 #popupcontent2 .myyard-form select=
, #popup #popupcontent-container #popupcontent #popup2 #popupcontent-contai=
ner2 #popupcontent2 .myyard-form textarea { padding: 0.1em; }
#popup #popupcontent-container #popupcontent #popup2 #popupcontent-containe=
r2 #popupcontent2 .mfec { margin-bottom: 0.1em; }
#popup #popupcontent-container #popupcontent #popup2 #popupcontent-containe=
r2 #popupcontent2 .myyard-form h2 { padding: 0px 16px 5px 0px; font-size: 1=
3px; }
#popup #popupcontent-container #popupcontent #popup2 #popupcontent-containe=
r2 #popupcontent2 .myyard-form h3 { padding: 5px 16px 2px 0px; font-size: 1=
3px; }
.big_logo { background-image: url("/sheets/img/logo.svg"); background-size:=
760px; width: 760px; height: 131px; text-indent: -9999px; margin: 100px au=
to 50px; }
body.logo3 .big_logo, body.logo3 .preamble .logo { background-image: url("/=
sheets/img/logo3.svg"); }
body.logo_davids_day .big_logo, body.logo_davids_day .preamble .logo { back=
ground-image: url("/sheets/img/logo_davids_day.svg"); }
body.logo_davids_day .big_logo { height: 149px; }
body.logo_davids_day .preamble .logo { height: 58px; }
body.logo_easter .big_logo, body.logo_easter .preamble .logo { background-i=
mage: url("/sheets/img/logo_easter.svg"); }
body.logo_halloween .big_logo, body.logo_halloween .preamble .logo { backgr=
ound-image: url("/sheets/img/logo_halloween.svg"); }
body.logo_euro .big_logo, body.logo_euro .preamble .logo { background-image=
: url("/sheets/img/logo_euro.svg"); }
body.logo_GD .big_logo, body.logo_GD .preamble .logo { background-image: ur=
l("/sheets/img/logo_GD.svg"); }
body.logo_grand_national .big_logo, body.logo_grand_national .preamble .log=
o { background-image: url("/sheets/img/logo_grand_national.svg"); }
body.logo_grand_national .big_logo { height: 116px; }
body.logo_grand_national .preamble .logo { height: 45px; }
body.logo_RB .big_logo, body.logo_RB .preamble .logo { background-image: ur=
l("/sheets/img/logo_RB.svg"); }
body.logo_RB .preamble .logo { height: 78px; }
body.logo_RB .big_logo { height: 200px; }
body.logo_st_andrew .big_logo, body.logo_st_andrew .preamble .logo { backgr=
ound-image: url("/sheets/img/logo_st_andrew.svg"); }
body.logo_st_patrick .big_logo, body.logo_st_patrick .preamble .logo { back=
ground-image: url("/sheets/img/logo_st_patrick.svg"); }
body.logo_summer_solstice .big_logo, body.logo_summer_solstice .preamble .l=
ogo { background-image: url("/sheets/img/logo_summer_solstice.svg"); }
body.logo_wimbledon .big_logo, body.logo_wimbledon .preamble .logo { backgr=
ound-image: url("/sheets/img/logo_wimbledon.svg"); }
body.remembrance_logo .big_logo, body.remembrance_logo .preamble .logo { ba=
ckground-image: url("/sheets/img/remembrance_logo.svg"); }
.login_form { margin: 0px auto; width: 400px; }
.login_form #submit { margin-top: 20px; }
.login_form label { font-size: 16px; }
.login_form input.input-block-level { height: 40px; font-size: 16px; }
.footer.span12 { margin-top: -100px; text-align: center; position: absolute=
; bottom: 0px; margin-left: 0px; }
body > .container { min-height: 100%; position: relative; }
.login_wrapper { margin-bottom: 150px; }
@media screen and (max-width: 1100px) {
.big_logo { background-size: 650px; width: 650px; height: 112px; }
body.logo_grand_national .big_logo { height: 99px; }
body.logo_RB .big_logo { height: 171px; }
body.logo_davids_day .big_logo { height: 127px; }
}
@media screen and (max-width: 750px) {
.big_logo { background-size: 450px; width: 450px; height: 77px; }
body.logo_grand_national .big_logo { height: 69px; }
body.logo_RB .big_logo { height: 118px; }
body.logo_davids_day .big_logo { height: 88px; }
.login_form { width: 300px; }
.login_form label { font-size: 14px; }
.login_form input.input-block-level { height: 30px; font-size: 14px; }
}
@media screen and (max-width: 550px) {
.big_logo { background-size: 350px; width: 350px; height: 59px; margin: 5=
0px auto; }
body.logo_grand_national .big_logo { height: 54px; }
body.logo_RB .big_logo { height: 91px; }
body.logo_davids_day .big_logo { height: 68px; }
}
@media screen and (max-width: 400px) {
.big_logo { background-size: 250px; width: 250px; height: 42px; margin: 2=
0px auto; }
body.logo_grand_national .big_logo { height: 39px; }
body.logo_RB .big_logo { height: 65px; }
body.logo_davids_day .big_logo { height: 49px; }
.login_form { width: 200px; }
}
.preamble .logo { background-image: url("/sheets/img/logo.svg"); background=
-size: 295px; width: 295px; height: 50px; float: left; margin: 10px 0px 5px=
15px; }
@media screen and (max-width: 768px) {
.preamble .logo { background-size: 175px; width: 175px; height: 30px; flo=
at: left; }
body.logo_grand_national .preamble .logo { height: 27px; }
body.logo_davids_day .preamble .logo { height: 34px; }
body.logo_RB .preamble .logo { height: 46px; }
.menu h3.title { font-size: 18px; }
}
.preamble .user { text-align: right; float: right; margin: 10px 20px 0px 0p=
x; }
.user .btn-group { float: right; }
.preamble .user .btn { border: none; background-image: none; background-col=
or: rgb(255, 255, 255); padding-right: 4px; padding-left: 4px; }
.preamble .user .btn:hover { background-color: rgb(240, 240, 240); }
.preamble .user span { color: rgb(65, 64, 66); font-size: 14px; padding-top=
: 4px; float: right; display: block; }
.today-date { font-size: 1.3em; }
.working_inline { display: inline; margin: 0px; padding: 0px; }
.right-only { clear: left; float: right; }
.working img { vertical-align: middle; }
.working span { font-size: 1.5em; margin-left: 0.5em; vertical-align: middl=
e; }
hr { border-top: none; border-right: none; border-left: none; border-bottom=
: 1px solid rgb(0, 0, 0); width: 700px; }
hr.small { margin: 10px 0px; width: auto; }
abbr { cursor: help; }
.hidden { display: none; }
.visibility-hidden { visibility: hidden; }
h3.err-primary-content { font-variant: normal; letter-spacing: 0px; border-=
bottom: none; margin: 0px; padding: 0px; }
.err-notification .err-secondary-content { color: rgb(148, 113, 64); }
.err-warning .err-secondary-content { color: rgb(148, 113, 64); }
.err-error .err-secondary-content { color: rgb(212, 64, 52); }
.err-system-error .err-secondary-content { color: rgb(238, 238, 238); }
.err-display { list-style-type: none; position: relative; z-index: 2; margi=
n: 0px auto; padding: 0px; }
.err-display .err { border-width: 1px; border-style: solid; margin: 1em 0px=
; min-height: 38px; padding: 12px 12px 12px 64px; background-position: 8px =
8px; background-repeat: no-repeat; border-radius: 8px; }
.err-display .err-with-secondary { padding-top: 12px; }
* html .err-display .err { height: 38px; }
.err-display .err-primary-content { margin: 0px; font-weight: 700; }
.err-display .err-primary-content { margin-top: 8px; }
.err-display .err-with-secondary .err-primary-content { margin-top: 0px; }
.err-display-dismiss-link:link { float: right; display: block; font-size: 8=
5%; position: relative; top: -4px; right: -4px; height: 14px; width: 14px; =
background: url("/img/btns/dismiss.png") 0px 0px no-repeat; text-indent: -2=
000em; text-decoration: none; }
.err-display-dismiss-link:hover { background-position: 0px -14px; }
input:focus, textarea:focus { outline: 0px; }
.myyard-form { clear: both; margin: 0px; }
.myyard-form h2 { border-bottom: 1px solid rgb(238, 238, 238); }
.myyard-form h3 { border-bottom: 1px solid rgb(238, 238, 238); }
.modal-body .myyard-form h2, .modal-body .myyard-form h3 { border-bottom: 0=
px; }
.myyard-form h4 { color: rgb(138, 140, 143); }
.myyard-form div.dlabel { font-weight: 400; font-size: 12px; display: block=
; width: 12em; margin-top: 2px; margin-bottom: 2px; padding-right: 0.3em; }
.dlabel.label-static { font-weight: 700 !important; }
.myyard-form.wide-labels div.dlabel { width: 28em !important; }
span.value-static { line-height: 26px; font-size: 12px; }
span.value-static.value-static-color { display: inline-block; font: 14px sa=
ns-serif; width: 65px; height: 16px; padding: 2px; vertical-align: middle; =
}
.mfei-static-text { clear: both; padding: 12px; background: rgb(252, 252, 2=
52); border-radius: 6px; }
ul.list-static { margin-left: 0px; }
ul.list-static li { line-height: 26px; }
.myyard-form div.horizontal { float: left; }
label.myyard-control { font-weight: 400; display: inline; }
.myyard-required, .table-features { display: block; font-weight: 400; color=
: rgb(90, 90, 90); }
.myyard-note { font-size: 85%; color: rgb(102, 102, 102); }
.myyard-form .mfei { float: left; position: relative; }
.myyard-form .mfei.after::after { content: "=EF=81=99"; font-family: FontAw=
esome; position: absolute; margin-left: -20px; margin-top: 5px; color: rgb(=
157, 157, 157); opacity: 0.4; }
.mfec { clear: both; margin-bottom: 0.5em; }
.mfec input[type=3D"checkbox"], .mfec input[type=3D"color"], .mfec input[ty=
pe=3D"date"], .mfec input[type=3D"datetime-local"], .mfec input[type=3D"dat=
etime"], .mfec input[type=3D"email"], .mfec input[type=3D"month"], .mfec in=
put[type=3D"number"], .mfec input[type=3D"password"], .mfec input[type=3D"r=
adio"], .mfec input[type=3D"search"], .mfec input[type=3D"tel"], .mfec inpu=
t[type=3D"text"], .mfec input[type=3D"time"], .mfec input[type=3D"url"], .m=
fec input[type=3D"week"], .mfec label, .mfec select, .mfec textarea { margi=
n: 0px; width: auto; float: none; }
.mfec label.radio { display: inline; padding: 5px; font-size: 12px; border:=
1px solid transparent; margin-right: 10px; border-radius: 4px; transition:=
all 0.2s ease-in-out 0s; }
.mfec label.radio:hover { border-color: rgb(204, 204, 204); }
.mfec label.radio:active { border-color: rgb(65, 64, 66); }
.myyard-form input, .myyard-form select, .myyard-form textarea { font-size:=
13px; padding: 4px; }
.myyard-form input:not([readonly]):focus, .myyard-form select:not([readonly=
]):focus, .myyard-form textarea:not([readonly]):focus { background: rgb(255=
, 255, 255); }
.mfei .links { font-size: 11px; padding-left: 5px; }
.mfei span.suggest { font-size: 20px; display: inline-block; position: abso=
lute; top: 4px; margin-left: -20px; cursor: pointer; height: 20px; width: 1=
5px; opacity: 0.6; }
.mfei span.suggest:hover { opacity: 0.9; }
.mfei span.suggest:active { opacity: 1; }
.mfec > i, .mfei > i { display: inline-block; height: 16px; width: 16px; ma=
rgin-left: 5px; }
.chosen_dropdown > .mfec > i, .chosen_dropdown > .mfei > i { position: rela=
tive; top: -9px; }
.mfec input.missing, .mfec select.missing, .mfec textarea.missing, .mfei .c=
hzn-choices.missing, .mfei input.missing, .mfei select.missing, .mfei texta=
rea.missing { border-color: rgb(202, 44, 41); }
form i.icon-warning-sign { color: rgb(202, 44, 41); font-size: 1.2em; }
.icon-spinner.icon-spin { font-size: 1.33333em; vertical-align: -10%; }
.myyard-form-right-input-text { padding-right: 0.5em; }
.myyard-form-left-input-text { padding-left: 0.5em; }
.myyard-form-decimal-separator { padding-left: 0.2em; padding-right: 0.2em;=
}
.left_float, .right_float { padding: 10px; clear: none !important; }
.left_float .dlabel.vertical, .right_float .dlabel.vertical { height: 34px;=
}
.left_float:hover, .right_float:hover { border: 1px solid rgb(204, 204, 204=
); }
.left_float { float: left; }
.right_float { float: right; }
.color_0 { background-color: rgb(255, 255, 255); border: 1px solid rgb(255,=
255, 255); }
.color_1 { background-color: rgb(241, 241, 241); border: 1px solid rgb(241,=
241, 241); }
.color_2 { background-color: rgb(225, 225, 225); border: 1px solid rgb(225,=
225, 225); }
.color_3 { background-color: rgb(209, 209, 209); border: 1px solid rgb(209,=
209, 209); }
.color_4 { background-color: rgb(193, 193, 193); border: 1px solid rgb(193,=
193, 193); }
.color_4 { background-color: rgb(177, 177, 177); border: 1px solid rgb(177,=
177, 177); }
.color_5 { background-color: rgb(161, 161, 161); border: 1px solid rgb(161,=
161, 161); }
.mfs { display: block; padding-left: 0.5em; }
.mfgv { clear: both; display: block; }
.mfgh { display: block; border: none; vertical-align: top; padding-right: 0=
.25em; padding-left: 2em; }
.mfgh.hidden, .mfgv.hidden { display: block; visibility: visible; }
.mfgh + .mfgh { padding-left: 0.25em; border-left: 1px solid rgb(0, 0, 0); =
}
#_notebook { margin: 0px 35px 0px 0px; }
.notebook_min, .sidebar_min { width: 30px; height: 30px; overflow: hidden; =
position: fixed; bottom: 30px; right: 17px; z-index: 19; box-shadow: rgb(0,=
0, 0) 0px 2px 3px; border-radius: 3px; }
.notebook_min header > span, .sidebar_min header > span { cursor: pointer; =
display: block; padding: 5px 7px; font-size: 18px; background-color: rgb(25=
2, 176, 52); height: 30px; text-align: right; }
.notebook_min header > span:hover, .sidebar_min header > span:hover { backg=
round-color: rgb(65, 64, 66); color: rgb(255, 255, 255); box-shadow: rgb(0,=
0, 0) 0px 0px 3px inset; }
.notebook_min header b { float: left; padding: 5px; display: none; }
.notebook_min.opened header b, .sidebar_min.opened header b { display: bloc=
k; }
.notebook_min.opened header i[class^=3D"icon-"]::before, .sidebar_min.opene=
d header i[class^=3D"icon-"]::before { padding-top: 5px; }
.notebook_min .footer { position: absolute; bottom: 0px; width: 100%; heigh=
t: 41px; background-color: rgb(240, 240, 240); display: none; }
.notebook_min .footer span { display: none; color: rgb(118, 118, 118); left=
: 10px; position: relative; top: 10px; }
.notebook_min.opened .footer { display: block; }
.notebook_min .footer button { float: right; margin: 7px 10px 7px 0px; }
.notebook_min form { height: 320px; overflow: auto; display: none; backgrou=
nd-color: rgb(255, 255, 255); }
.notebook_min.opened form, .sidebar_min.opened form { display: block; }
.notebook_min ul { list-style: none; margin: 0px; padding: 0px; }
.notebook_min ul li { border-bottom: 1px solid rgb(230, 230, 230); padding:=
5px 0px; }
.notebook_min ul li:first-child { margin-top: 15px; }
.notebook_min ul li:last-child { border-bottom: none; margin-bottom: 15px; =
}
.notebook_min ul li input[type=3D"checkbox"] { margin: 5px; }
.notebook_min ul li textarea { width: 250px; padding: 5px 8px; font-size: 1=
5px; line-height: 20px; height: auto; border: none; box-sizing: border-box;=
resize: none; margin-bottom: 0px; }
.notebook_min li:nth-child(2n+1) { background-color: rgb(230, 230, 230); }
.notebook_min li:nth-child(2n+1) textarea { background-color: rgb(230, 230,=
230); }
.notebook_min li:hover { background-color: rgb(251, 255, 216); }
.notebook_min li:hover textarea { background-color: rgb(251, 255, 216); }
.sidebar_min header b { float: left; padding: 2px 5px; display: none; }
.sidebar_min #frmSidebar { height: calc(100% - 60px); overflow: hidden scro=
ll; background-color: rgb(245, 245, 245); padding: 10px 40px 10px 10px; mar=
gin-right: -30px; }
.sidebar_min #frmSidebar_activity_list { background-color: rgb(255, 255, 25=
5); padding: 10px; border-radius: 5px; box-shadow: rgb(75, 75, 75) 0px 0px =
3px; width: 460px; }
.sidebar_min #frmSidebar_activity_list .filters { background-color: rgb(245=
, 245, 245); padding: 10px; border-radius: 5px; width: 440px; }
.sidebar_min #frmSidebar_activity_list .filters .mfec { margin: 0px 3px 0px=
0px; display: inline-block; float: left; }
.sidebar_min #frmSidebar_activity_list .filters .mfec input { width: 235px;=
}
.sidebar_min #frmSidebar_activity_list .filters .filter_list { margin-top: =
20px; display: none; }
.sidebar_min #frmSidebar_activity_list .filters .filter_list .mfec { displa=
y: none; float: none; }
.sidebar_min #frmSidebar_activity_list .filters .filter_list .mfei, .sideba=
r_min #frmSidebar_activity_list .filters .filter_list .mfei select { width:=
100%; }
.sidebar_min #frmSidebar_activity_list .filters .filter_list .filter_block =
{ margin: 0px !important; }
.sidebar_min #frmSidebar_activity_list .filters .filter_list .chzn-containe=
r, .sidebar_min #frmSidebar_activity_list .filters .filter_list .chzn-conta=
iner .chzn-drop, .sidebar_min #frmSidebar_activity_list .filters .filter_li=
st .chzn-container .search-field input { width: 100% !important; }
.sidebar_min #frmAdd_activity { background-color: rgb(245, 245, 245); margi=
n: 10px 0px 0px; }
.sidebar_min #frmAdd_activity form { border: 1px solid rgb(230, 230, 230); =
padding: 2%; border-radius: 5px; margin: 5px 0px; }
.sidebar_min.opened .activity_list ul { list-style: none; margin: 0px; padd=
ing: 0px; }
.sidebar_min.opened .activity_list ul li { border: 1px solid rgba(0, 0, 0, =
0.35); padding: 0px 4% 2%; margin: 4% 0px 0px; border-radius: 7px; font-siz=
e: 10pt; position: relative; }
.sidebar_min.opened .activity_list ul li:hover { box-shadow: rgba(0, 0, 0, =
0.3) 0px 0px 5px; }
.sidebar_min.opened .activity_list ul li .type { position: relative; left: =
-2%; top: -10px; background-color: rgb(255, 255, 255); font-weight: 700; pa=
dding: 0px 2%; font-size: 12pt; }
.sidebar_min.opened .activity_list ul li .icon { float: right; margin-top: =
3%; background-color: rgb(255, 255, 255); font-size: 18pt; color: rgb(203, =
203, 203); display: none; cursor: pointer; }
.sidebar_min.opened .activity_list ul li .icon:hover { color: rgb(0, 0, 0);=
}
.sidebar_min.opened .activity_list ul li .title { font-weight: 700; font-si=
ze: 11pt; width: 80%; float: left; }
.sidebar_min.opened .activity_list ul li .description { margin-bottom: 5px;=
}
.sidebar_min.opened .activity_list ul li .about { font-size: 9pt; right: 0p=
x; float: right; color: rgb(153, 153, 153); }
.sidebar_min.opened .activity_list ul li .act-time { background: rgb(252, 1=
76, 52); color: rgb(255, 255, 255); padding: 5px; border-radius: 10px; font=
-size: 10pt; }
.act-addr { display: inline-block; font-weight: 700; font-size: 13px; paddi=
ng: 0px; margin: 0px; color: rgb(153, 153, 153); }
.insert-date-button { float: right; height: 28px; line-height: 20px; paddin=
g: 0px 8px; margin: 0px 20px 10px 0px; }
* html .myyard-footer-form-field { overflow: visible; height: 1px; }
.myyard-disclosure-control { clear: both; margin-bottom: 1em; }
.myyard-disclosure-anchor { position: relative; top: 0.7em; display: inline=
; margin: 0px 10px; padding: 0px 6px; color: rgb(102, 102, 102); background=
: rgb(254, 254, 254); }
.myyard-disclosure-control-closed { margin-bottom: 1em; }
.myyard-disclosure-control-float { float: left; margin: 1em; width: 40%; }
.myyard-disclosure-control-float .myyard-disclosure-container, .myyard-disc=
losure-control-opened .myyard-disclosure-container { display: block; border=
: 1px solid rgb(221, 221, 221); padding: 8px; }
.myyard-disclosure-control-closed .myyard-disclosure-container { display: n=
one; }
.myyard-disclosure-image { border: none; vertical-align: text-top; }
.myyard-disclosure-anchor { text-decoration: none; }
.myyard-footer-form-field { background-color: rgb(245, 245, 245); border-to=
p: 1px solid rgb(221, 221, 221); border-radius: 0px 0px 6px 6px; margin: 5p=
x 0px 0px; padding: 15px; }
.alert .myyard-footer-form-field { }
.myyard-footer-form-field button { font-size: 13.8px; margin-right: 5px; ba=
ckground-repeat: no-repeat; background-position: left center; }
.myyard-footer-form-field span.lnk { font-size: 13.8px; }
.myyard-footer-form-field input.myyard-primary { font-weight: 700; }
.myyard-footer-form-field .myyard-button { float: right; margin-left: 0.5em=
; vertical-align: middle; }
.myyard-footer-form-field .myyard-button img { padding-right: 0.4em; vertic=
al-align: middle; height: 20px; }
.myyard-footer-form-field a + a { padding-left: 1em; }
div.note { margin-top: 2em; padding: 0.5em; border: 1px solid rgb(204, 204,=
204); color: rgb(82, 82, 82); background: rgb(255, 238, 153); }
b.exchange { background-color: rgb(67, 200, 198); border-radius: 5px; color=
: rgb(255, 255, 255); padding: 3px 5px; }
.myyard-frame { margin-top: -1px; }
.myyard-frame .myyard-frame-title { margin: 0px; padding: 6px 16px 8px; fon=
t-size: 19px; position: relative; line-height: normal; }
.myyard-frame-contents { padding: 16px; }
.myyard-frame .myyard-frame-subtitle { font-weight: 400; }
#myyard-contents .myyard-frame { border: none; padding-top: 0px; }
h3 .sup { margin-left: 10px; font-size: 11px; letter-spacing: normal; font-=
variant: normal; }
h3 .sup-sup { font-size: 11px; letter-spacing: normal; font-variant: normal=
; }
#myyard-contents .myyard-frame-contents { background: rgb(254, 254, 254); }
.myyard-tabs.tabs_1.affix { z-index: 3; border-radius: 0px 0px 5px 5px; pos=
ition: fixed; top: 10px; left: 15px; background-color: rgb(255, 255, 255); =
width: 98%; height: 40px; padding-top: 25px; margin-top: -15px; box-shadow:=
rgb(0, 0, 0) 0px 0px 6px; }
.myyard-tabs.affix > li, .myyard-tabs.affix > li.here { height: 30px; paddi=
ng: 10px 2px 0px 10px; }
.myyard-tabs { margin-left: 0px; padding-left: 5px; list-style-type: none; =
border-bottom: 1px solid rgb(204, 204, 204); height: 34px; }
.myyard-tabs > li { padding: 5px 2px 5px 10px; display: inline-block; backg=
round-color: rgb(240, 240, 240); border: 1px solid rgb(213, 213, 215); font=
-weight: 400; border-radius: 5px 5px 0px 0px; text-decoration: none; cursor=
: pointer; color: rgb(65, 64, 66); font-size: 14px; height: 20px; }
.myyard-tabs > li:hover { background-color: rgb(99, 100, 102); color: rgb(2=
55, 255, 255); }
.myyard-tabs > li.here { background-color: rgb(253, 190, 95); border-color:=
rgb(252, 183, 75); padding: 8px 2px 5px 10px; font-weight: 700; cursor: de=
fault; }
#myyard-tabs ul input:hover { color: red !important; }
.myyard-history-group-title { font-size: 13px; font-variant: small-caps; bo=
rder-bottom: 1px solid rgb(0, 0, 0); }
.myyard-history-group-title .lnk { float: right; }
.myyard-history-left { width: 50%; text-align: left; float: left; }
.myyard-history-right { margin-left: 1%; width: 49%; float: left; }
.right-justify { text-align: right; }
.myyard-history-left .title { font-size: 16px; font-weight: 700; }
.body { position: relative; }
.myyard-history-right .title { font-size: 14px; font-weight: 700; }
.myyard-history-left .title + .body { margin-top: 1.5em; }
.myyard-history-right .title + .body { margin-top: 0px; }
.myyard-history-group .lnk { margin-left: 0.4em; }
.myyard-history-left .body .myyard-history-group-name, .myyard-history-righ=
t > .body .myyard-history-group-name { display: table-cell; font-style: obl=
ique; padding-right: 1em; }
.myyard-history-left .body .myyard-history-group-name + .myyard-history-gro=
up-field, .myyard-history-right > .body .myyard-history-group-name + .myyar=
d-history-group-field { display: table-cell; }
.myyard-history-right > .body { float: left; }
.myyard-history-right .body.second { margin-left: 20px; }
div.dropmarker { height: 6px; width: 200px; background: url("/sheets/sheet-=
img/bg/dropmarker.png") left top; margin-top: -3px; margin-left: -5px; z-in=
dex: 1000; overflow: hidden; }
div.list { float: left; margin-left: 0.5em; }
div.list h4 { margin-bottom: 0px; }
div.list + div.list { margin-left: 5em; }
ul.list { border: 1px solid rgb(231, 231, 231); min-width: 150px; margin: 7=
px 0px 0px; padding: 0px; list-style: none; min-height: 200px; }
ul.list .disabled_item { height: 2px; background-color: transparent; paddin=
g: 0px !important; }
tbody.sortable-placeholder { height: 10px; margin-bottom: -5px; position: a=
bsolute; display: block; background-color: rgb(197, 206, 255); width: 100%;=
border: 1px solid rgb(127, 134, 168); }
ul.list .sortable-placeholder { height: 22px; width: 100%; background-color=
: rgb(255, 255, 153); }
ul.list-active { background-color: rgb(255, 244, 216); border: 5px dashed r=
gb(204, 204, 204); }
li.list-item { border: 1px solid rgb(65, 64, 66); margin-top: 0.2em; margin=
-bottom: 0.2em; padding: 0.3em 0.3em 0.3em 0.7em; cursor: move; font-size: =
11px; background-color: rgb(254, 254, 254); }
li.list-item:hover { background-color: rgb(65, 64, 66); color: rgb(255, 255=
, 255); }
div.autocomplete { z-index: 10; position: absolute; min-width: 205px; backg=
round-color: rgb(255, 255, 255); border: 1px solid rgb(175, 175, 179); marg=
in: 0px; padding: 0px; max-height: 440px; overflow-y: scroll; width: auto !=
important; }
div.autocomplete ul { list-style-type: none; margin: 0px; padding: 0px; }
div.autocomplete ul li { list-style-type: none; display: block; margin: 0px=
; padding: 2px 5px; min-height: 32px; cursor: pointer; font-weight: 700; co=
lor: inherit; white-space: nowrap; }
div.autocomplete ul li div.informal { font-weight: 400; }
div.user span, span.user { color: rgb(119, 119, 119); }
select > option:first-child { padding-left: 0px; }
select option { padding-left: 15px; }
select optgroup { font-style: normal; }
.grey { margin-top: 15px; margin-right: -10px; margin-left: -10px; padding:=
5px 10px; background-color: rgb(221, 221, 221); }
.myyard-history-title { background-color: transparent; }
.myyard-disclosure-title { background-color: rgb(226, 226, 227); }
.myyard-history { background-color: rgb(240, 240, 240); }
.myyard-disclosure, div.autocomplete ul li.selected { background-color: rgb=
(201, 201, 203); background-image: -webkit-linear-gradient(top, rgb(226, 22=
6, 227), rgb(201, 201, 203)); background-repeat: repeat-x; zoom: 1; }
.is_account_label { font-size: 0.8em; color: rgb(118, 118, 118); }
.reminders { width: 70%; }
.reminders h2 { margin: 0px; padding: 5px; color: rgb(51, 51, 51); font-siz=
e: 14px; font-variant: normal; }
.reminders h2.subheader { padding: 0px 0px 2px; margin: 0px 0px 5px; font-s=
ize: 14px; font-variant: normal; border-bottom: 1px solid rgb(0, 0, 0); }
.reminders table { font-size: 12px; border-collapse: collapse; width: 100%;=
}
.reminders table td { padding: 5px 0px; }
.reminders table td.table-content { width: 100%; }
.reminders h2.late-group { color: red; background-color: rgb(255, 249, 221)=
; border-top: 1px solid rgb(255, 51, 51); border-right: 1px solid rgb(255, =
51, 51); border-left: 1px solid rgb(255, 51, 51); border-image: initial; bo=
rder-bottom: none; margin-bottom: 0px; margin-left: -1px; }
.reminders table.late-group { border-right: 1px solid rgb(255, 51, 51); bor=
der-bottom: 1px solid rgb(255, 51, 51); border-left: 1px solid rgb(255, 51,=
51); border-image: initial; border-top: none; }
.reminders table.late-group tr td { background-color: rgb(255, 249, 221); }
.reminders p { margin: 0px; padding: 0px; font-size: 10px; color: rgb(85, 8=
5, 85); }
.reminders p.asset-note { margin-top: 2px; color: rgb(68, 68, 68); font-sty=
le: italic; }
.reminders span.late { padding-left: 10px; font-size: 9px; font-weight: 700=
; }
.reminders span.too-late { color: red; font-weight: 700; }
.reminders span.too-late-sup { color: red; font-weight: 400; }
.reminders span.not-late { color: rgb(47, 153, 31); font-weight: 700; }
.reminders span.not-late-sup { color: rgb(47, 153, 31); font-weight: 400; }
.reminders tr.shade td { background: rgb(236, 236, 236); }
.info-pane { float: right; min-height: 100%; height: 100%; width: 27%; font=
-weight: 400; }
.info-pane-content { background-color: rgb(236, 236, 236); color: rgb(51, 5=
1, 51); margin: 10px 0px; padding: 5px 5px 5px 10px; border: 1px solid rgb(=
153, 153, 153); }
.info-pane h2 { font-size: 14px; font-variant: normal; font-weight: 400; bo=
rder-bottom: 1px solid rgb(51, 51, 51); margin: 0px 0px 5px; padding: 0px; =
}
.info-pane h2 + h3 { margin: 0px; }
.info-pane h3 { border: none; letter-spacing: normal; font-variant: normal;=
font-size: 12px; margin-bottom: 3px; margin-top: 0px; padding-left: 5px; }
.info-pane h3 a { color: rgb(235, 94, 0); }
.info-pane p { font-size: 11.8px; margin-top: 0px; padding-left: 5px; }
.reminders .weirdo { position: absolute; background: rgb(255, 128, 0); padd=
ing: 5px; }
.reminders .lnk-class { padding: 0px; }
.reminders .link { text-decoration: underline; cursor: pointer; }
div.jGrowl { padding: 10px; z-index: 9999; color: rgb(255, 255, 255); font-=
size: 14px; }
div.jGrowl a { color: rgb(98, 199, 41); }
div.ie6 { position: absolute; }
div.jGrowl { position: absolute; }
body > div.jGrowl { position: fixed; }
div.jGrowl.top-left { left: 0px; top: 0px; }
div.jGrowl.top-right { right: 0px; top: 0px; }
div.jGrowl.bottom-left { left: 0px; bottom: 0px; }
div.jGrowl.bottom-right { right: 0px; bottom: 0px; }
div.jGrowl.center { top: 0px; width: 50%; left: 25%; }
div.center div.jGrowl-closer, div.center div.jGrowl-notification { margin-l=
eft: auto; margin-right: auto; }
div.jGrowl div.jGrowl-closer, div.jGrowl div.jGrowl-notification { backgrou=
nd-color: rgb(66, 66, 66); opacity: 0.9; zoom: 1; width: 350px; padding: 10=
px; margin-top: 5px; margin-bottom: 5px; font-size: 1.05em; text-align: lef=
t; display: none; }
div.jGrowl div.jGrowl-notification { min-height: 40px; box-shadow: rgb(0, 0=
, 0) 0px 0px 10px; border-radius: 5px; }
div.jGrowl div.jGrowl-notification:hover { opacity: 1 !important; }
div.jGrowl div.jGrowl-notification .jGrowl-close:hover { color: rgb(0, 0, 0=
); }
div.jGrowl div.jGrowl-notification div.jGrowl-header { font-weight: 700; fo=
nt-size: 0.9em; }
div.jGrowl div.jGrowl-notification div.jGrowl-close { z-index: 99; float: r=
ight; font-weight: 700; font-size: 1.2em; cursor: pointer; padding-bottom: =
1px; }
div.jGrowl div.jGrowl-closer { padding-top: 4px; padding-bottom: 4px; curso=
r: pointer; font-size: 0.9em; font-weight: 700; text-align: center; }
.jGrowl-message h4 { margin: 0px 0px 5px; }
@media print {
div.jGrowl { display: none; }
}
div.jGrowl div.warning { color: rgb(152, 111, 17); background-color: rgb(25=
2, 239, 212); border: 1px solid rgb(250, 225, 198); }
div.jGrowl div.info { color: rgb(14, 103, 137); background-color: rgb(215, =
242, 252); border: 1px solid rgb(182, 243, 250); }
div.jGrowl div.success { color: rgb(56, 180, 74); background-color: rgb(202=
, 238, 207); border: 1px solid rgb(183, 232, 182); }
div.jGrowl div.error { color: rgb(223, 56, 44); background-color: rgb(250, =
223, 221); border: 1px solid rgb(248, 208, 212); }
.float_left, .float_right { width: 49%; min-width: 470px; }
.float_left { float: left; }
.float_right { float: right; }
.float_right .extended-disclosure { margin-top: 25px; }
@media screen and (max-width: 1010px) {
.float_left.responsive, .float_right.responsive { width: auto; min-width:=
inherit; float: none; }
}
#to_the_top { z-index: 800; position: fixed; top: 0px; left: -50px; width: =
50px; height: 100%; background-color: rgb(41, 103, 242); opacity: 0.2; curs=
or: pointer; }
#to_the_top:hover { z-index: 9999; }
#to_the_top:active { opacity: 0.8 !important; }
#to_the_top span { color: rgb(255, 255, 255); font-weight: 700; position: a=
bsolute; margin-top: 20px; margin-left: 7px; background: url("sheet-img/btn=
s/to_top.png") center 25px no-repeat scroll transparent; height: 60px; }
#zenbox_tab { display: none !important; }
.help-block, .help-inline { color: rgb(89, 89, 89); }
.help-block { display: block; margin-bottom: 10px; }
.help-inline { display: inline-block; vertical-align: middle; padding-left:=
5px; }
.clear { clear: both; }
.nowrap { white-space: nowrap; }
#driversheets-stats { margin-bottom: 30px; clear: both; }
#driversheets-stats p { margin: 0px 0px 3px; }
h1.driversheets-header { font-size: 24px; color: rgb(0, 0, 0); font-weight:=
700; margin: 0px; padding: 0px; float: left; }
span.stats-num { font-size: 14px; font-weight: 700; color: rgb(102, 102, 10=
2); }
span.stats-num + .stats-label { padding: 0px 5px; }
span.stats-label { font-size: 12px; font-weight: 400; color: rgb(102, 102, =
102); }
.myyard-cal-cell-tran { background-color: rgb(236, 223, 223); border: none;=
}
.myyard-cal-cell-op { background-color: rgb(255, 255, 255); }
input[type=3D"text"].cal { border-top-right-radius: 0px; border-bottom-righ=
t-radius: 0px; }
.btn.cal { padding: 4px 10px; border-bottom-left-radius: 0px; border-top-le=
ft-radius: 0px; }
.pcaAutoComplete .recentFavourites, .pcaAutoCompleteSmall .recentFavourites=
Small { z-index: 2 !important; }
.vehicle_block { background-color: rgb(240, 240, 240); border-radius: 5px; =
padding: 10px; margin-bottom: 20px; }
.vehicle_block:nth-child(2n) { background-color: rgb(226, 226, 227); }
.olMap { border: 1px solid rgb(204, 204, 204); border-radius: 5px; clear: b=
oth; overflow: hidden; }
.full_screen_map { clear: both; width: 99.5%; height: 500px; border: 1px so=
lid rgb(204, 204, 204); border-radius: 5px; }
table.seal { width: 100%; margin: 5px; }
.seal span a { background: url("/img/bg/seal.jpg") center center no-repeat =
scroll rgba(0, 0, 0, 0); display: block; height: 50px; text-align: center; =
width: 100%; position: relative; opacity: 0.9; }
.seal span a:hover { opacity: 1; }
.seal img { display: none; }
.myyard-disclosure { margin-bottom: 20px; border-radius: 0px 5px 5px; }
.myyard-disclosure.collapsed-disclosure { border-radius: 5px; }
span.myyard-disclosure-title:hover { color: rgb(0, 0, 0); }
span.myyard-disclosure-title { margin-left: -10px; font-size: 14px; positio=
n: absolute; margin-top: -30px; background-position: 10px center; backgroun=
d-repeat: no-repeat; cursor: pointer; border-top-right-radius: 5px; border-=
top-left-radius: 5px; }
.collapsed-disclosure span.myyard-disclosure-title { margin-left: 0px; posi=
tion: relative; background-color: transparent; }
.extended-disclosure { padding: 0px 10px 10px; margin-top: 44px; }
.extended-disclosure .myyard-disclosure-header .myyard-disclosure-title { p=
adding: 5px 20px; }
.myyard-disclosure-title i { margin-right: 5px; font-size: 16px; }
.collapsed-disclosure { padding: 5px 0px; margin-top: 20px; }
.collapsed-disclosure .myyard-disclosure-header { position: static; top: 0p=
x; left: 0px; }
.collapsed-disclosure .myyard-disclosure-header .myyard-disclosure-title { =
border: none; padding-left: 20px; }
button.datagrid-submit { font-size: 16px; }
table.myyard-table-view { clear: both; border-collapse: collapse; width: 10=
0%; margin-bottom: 0.5em; }
tbody { background-color: rgb(254, 254, 254); transition: all 0.2s ease-in-=
out 0s; }
.myyard-table-view tbody tr { background-color: inherit; }
.myyard-table-view tbody tr.highlight-odd, .myyard-table-view tbody:hover {=
background-color: rgb(236, 236, 236); color: rgb(66, 66, 66); }
.myyard-table-view tbody td, .myyard-table-view th { padding-top: 0.2em; pa=
dding-bottom: 0.2em; cursor: default; background-color: inherit; }
.myyard-table-view td, .myyard-table-view th { padding: 0.2em; text-align: =
left; }
.myyard-table-view th { color: rgb(82, 82, 82); font-size: 11.8px; }
.myyard-table-view:not(.multilevel) > thead > tr > th.gl-0 { cursor: pointe=
r; padding-right: 10px; transition: all 0.2s ease-out 0s; }
.myyard-table-view:not(.multilevel) > thead > tr > th.gl-0::after { positio=
n: absolute; font-family: FontAwesome; content: "=EF=83=9C"; margin-left: -=
6px; text-decoration: none; opacity: 0; color: rgb(66, 66, 66); font-size: =
1em; transition: all 0.2s ease-out 0s; }
.myyard-table-view:not(.multilevel) > thead > tr > th.gl-0:hover { box-shad=
ow: rgb(153, 153, 153) 0px 0px 2px inset; }
.myyard-table-view:not(.multilevel) > thead > tr > th.gl-0:active { box-sha=
dow: rgb(153, 153, 153) 0px 0px 4px inset; }
.myyard-table-view:not(.multilevel) > thead > tr > th.gl-0:hover::after { o=
pacity: 1; margin-left: 3px; }
.myyard-table-view tfoot .lnk { padding: 0px; }
.myyard-table-view tbody td.cal, .myyard-table-view th.cal { text-align: le=
ft; }
.myyard-table-view tbody td.cac, .myyard-table-view th.cac { text-align: ce=
nter; }
.myyard-table-view tbody td.car, .myyard-table-view th.car { text-align: ri=
ght; padding-right: 10px; }
.myyard-table-view tbody td p { margin: 0px; }
.myyard-table-view tfoot .lnk + .lnk, .table-features .lnk + .lnk { padding=
-left: 0.5em; padding-right: 0.5em; }
ul.table-features { margin-left: 0px; padding-left: 1em; margin-bottom: 0px=
; }
.table-features .table-features-links { padding-left: 0.3em; }
span.record-label { margin: auto 0.8em; font-size: 11.8px; }
div.rows { float: right; margin-top: 10px; }
div.rows > span { font-size: 13.8px; font-weight: 700; }
div.rows > span + span.lnk, span.lnk + div.rows > span { margin-left: 5px; =
}
.myyard-table-view tr.gl-1 td, .myyard-table-view tr.gl-1 th { color: rgb(1=
36, 136, 136); }
.myyard-table-view tr.gl-2 td, .myyard-table-view tr.gl-2 th { color: rgb(2=
18, 145, 0); }
.myyard-table-view tr.gl-1 td.fc, .myyard-table-view tr.gl-1 th.fc { paddin=
g-left: 2em; }
.myyard-table-view tr.gl-2 td.fc, .myyard-table-view tr.gl-2 th.fc { paddin=
g-left: 4em; }
.myyard-table-view tr.gl-3 td.fc, .myyard-table-view tr.gl-3 th.fc { paddin=
g-left: 6em; }
.myyard-table-view tr.gl-4 td.fc, .myyard-table-view tr.gl-4 th.fc { paddin=
g-left: 8em; }
.myyard-table-view tr.gl-5 td.fc, .myyard-table-view tr.gl-5 th.fc { paddin=
g-left: 10em; }
.myyard-table-view tr.gl-6 td.fc, .myyard-table-view tr.gl-6 th.fc { paddin=
g-left: 12em; }
.myyard-table-view tr.gl-7 td.fc, .myyard-table-view tr.gl-7 th.fc { paddin=
g-left: 14em; }
.myyard-table-view tr.gl-8 td.fc, .myyard-table-view tr.gl-8 th.fc { paddin=
g-left: 16em; }
.myyard-table-view tr.gl-9 td.fc, .myyard-table-view tr.gl-9 th.fc { paddin=
g-left: 18em; }
.myyard-table-view thead { border-bottom: 1px solid rgb(112, 112, 126); }
.myyard-table-view tfoot { border-top: 1px solid rgb(112, 112, 126); }
.myyard-table-view tbody tr.gl-0 { border-top: 1px solid rgb(112, 112, 126)=
; }
.myyard-table-view tbody tr.gl-0 + tr.gl-0 { border: none; }
.myyard-table-view tbody tr.gl-1, .myyard-table-view tbody tr.gl-2 { border=
: none; }
.myyard-table-view tbody.gl-1 { border-top: 1px solid rgb(223, 223, 255); }
tbody.gl-2 + tbody.gl-1 { border: none; }
table.myyard-table-view td.act, table.myyard-table-view th.act { text-align=
: left; width: 12px; }
.action-container { float: left; font-size: 12px; margin-top: 10px; }
.default-action { margin-top: 10px; margin-left: 5px; }
.action-container select { width: 120px; height: 24px; line-height: 20px; f=
ont-size: 12px; margin: 0px; }
.action-container input[type=3D"text"] { width: 150px; margin: 0px 0px 0px =
10px; height: 14px; }
.action-container button { font-size: inherit; margin-right: 7px; }
.action-container button + select { margin-left: 8px; }
.myyard-legend { margin-top: 5px; text-align: left; }
.myyard-legend-item { vertical-align: middle; }
.myyard-legend-item-color { border: 1px solid rgb(0, 0, 0); margin-right: 2=
px; margin-left: 2px; padding: 1px 2px; white-space: nowrap; }
.myyard-legend-item-caption { margin-right: 1em; white-space: nowrap; }
.myyard-legend .nottipped, table .nottipped { background-color: rgb(213, 21=
6, 141); color: rgb(71, 71, 71); }
.myyard-legend .selected, table .selected { background-color: rgb(122, 186,=
124); color: rgb(255, 254, 254); }
.myyard-legend .current, table .current { background-color: rgb(226, 240, 2=
55); }
.myyard-legend .pending, table .pending { background-color: rgb(237, 254, 2=
41); }
.myyard-legend .rescheduled, table .rescheduled { background-color: rgb(245=
, 255, 207); color: rgb(71, 71, 71); }
.myyard-legend .managersignedoff, table .managersignedoff { background-colo=
r: rgb(254, 254, 254); color: rgb(221, 47, 0); }
.myyard-legend .problematic, table .problematic { background-color: rgb(114=
, 10, 10); color: rgb(152, 152, 152); }
.myyard-legend .assigned, table .assigned { background-color: rgb(221, 174,=
117); color: rgb(71, 71, 71); }
.myyard-legend .weighted, table .weighted { background-color: rgb(254, 254,=
254); color: rgb(48, 165, 204); }
.myyard-legend .partially_weighted, table .partially_weighted { background-=
color: rgb(254, 254, 254); color: rgb(130, 144, 181); }
.myyard-legend .inspected, table .inspected { background-color: rgb(254, 25=
4, 254); color: rgb(28, 76, 252); }
.myyard-legend .loadsignedoff, table .loadsignedoff { background-color: rgb=
(254, 254, 254); color: rgb(159, 10, 10); }
.myyard-legend .chargesonly, table .chargesonly { background-color: rgb(254=
, 254, 254); color: rgb(0, 153, 0); }
.myyard-legend .deleted, table .deleted { background-color: rgb(71, 71, 71)=
!important; color: rgb(152, 152, 152) !important; }
.myyard-legend .open, table .open { background-color: rgb(255, 255, 255); c=
olor: rgb(0, 0, 0); }
.myyard-legend .close, table .close { background-color: rgb(204, 204, 204);=
color: rgb(152, 152, 152); }
.myyard-legend .zeronotnewskip, table .zeronotnewskip { background-color: r=
gb(254, 254, 254); color: red; }
.myyard-legend .unsaved, table .unsaved { font-weight: 700; background-colo=
r: rgb(254, 254, 254); color: rgb(51, 204, 51); }
.myyard-legend .emptytobereturned, table .emptytobereturned { background-co=
lor: wheat; color: rgb(71, 71, 71); }
.myyard-legend .badpayers, table .badpayers { background-color: rgb(255, 25=
5, 51); color: rgb(0, 0, 0); }
.myyard-legend .unread, table .unread { background-color: rgb(234, 242, 247=
); color: rgb(66, 66, 66); }
.myyard-legend .balance_warn, table .balance_warn { background-color: rgb(2=
52, 176, 52); color: rgb(105, 2, 2); }
.myyard-legend .not_exported, table .not_exported, table .not_exported tr.g=
l-1 td { color: rgb(243, 152, 0); }
.myyard-legend .different_states, table .different_states { background-colo=
r: rgb(255, 255, 255); color: rgb(177, 16, 0); }
table .different_states tr.gl-1 td { color: rgb(177, 16, 0); }
.myyard-legend .cannot_exported, table .cannot_exported { background-color:=
rgb(177, 16, 0); color: rgb(255, 255, 255); }
table .cannot_exported tr.gl-1 td { color: rgb(255, 255, 255); }
table .highlight { background-color: rgb(255, 255, 153); color: rgb(66, 66,=
66); }
tbody.ui-selecting { background-color: rgb(251, 255, 216) !important; }
tbody.ui-selecting td { cursor: crosshair !important; }
.myyard-table-view tbody.pending:hover { background-color: rgb(238, 238, 23=
8); }
.myyard-table-view tbody.rescheduled:hover { background-color: rgb(238, 238=
, 238); }
.myyard-table-view tbody.nottipped:hover { background-color: rgb(238, 238, =
238); }
.myyard-table-view tbody.managersignedoff:hover { background-color: rgb(238=
, 238, 238); }
.myyard-table-view tbody.problematic:hover { background-color: rgb(238, 238=
, 238); }
.myyard-table-view tbody.weighted:hover { background-color: rgb(238, 238, 2=
38); }
.myyard-table-view tbody.inpected:hover { background-color: rgb(238, 238, 2=
38); }
.myyard-table-view tbody.loadsignedoff:hover { background-color: rgb(238, 2=
38, 238); }
.myyard-table-view tbody.deleted:hover { background-color: rgb(238, 238, 23=
8); }
.myyard-table-view tbody.emptytobereturned:hover { background-color: rgb(23=
8, 238, 238); }
.myyard-table-view tbody.badpayers:hover { background-color: rgb(238, 238, =
238); }
.myyard-table-view tbody.badpayers:hover { background-color: rgb(238, 238, =
238); color: rgb(105, 2, 2); }
.myyard-table-view tbody.highlight:hover { background-color: rgb(255, 255, =
136); }
.myyard-table-view tbody.different_states tr.gl-1:hover td, .myyard-table-v=
iew tbody.different_states:hover { background-color: rgb(255, 255, 136); }
.context_menu { position: absolute; background-color: rgb(239, 239, 239); b=
order-width: 1px; border-style: solid outset outset solid; border-color: rg=
b(204, 204, 204) threedface threedface rgb(204, 204, 204); box-shadow: rgb(=
103, 100, 100) 2px 2px 4px; display: none; list-style: none; margin: 0px; p=
adding: 0px; z-index: 1000; }
.context_menu li { padding: 5px 15px; color: rgb(0, 0, 0); }
.context_menu > li:hover { background-color: rgb(41, 103, 242); color: rgb(=
255, 255, 255); cursor: pointer; }
.context_menu .disabled { color: rgb(138, 138, 138); }
.context_menu .disabled:hover { background-color: rgb(121, 182, 242); curso=
r: default; }
.context_menu .delimiter { padding: 0px; margin: 5px 0px; border-top: 1px s=
olid rgb(160, 160, 160); }
.context_menu .delimiter:hover { cursor: default; }
.context_menu .other_options { background: url("/img/btns/disclosure-closed=
.png") right center no-repeat transparent; }
.other_options .context_menu { width: 110px; }
.responsive_dropdown { float: right; display: block; margin: 10px 5px 0px; =
}
.responsive_dropdown input[type=3D"checkbox"] { margin: 0px 5px 2px; }
.responsive_dropdown label { padding: 5px 10px 5px 5px; margin: 0px; }
.responsive_dropdown label:hover { color: rgb(65, 64, 66); background-color=
: rgb(201, 201, 203); background-image: linear-gradient(rgb(213, 213, 215),=
rgb(188, 187, 191)); background-repeat: repeat-x; }
.myyard-disclosure-container .cache_info { color: rgb(118, 118, 118); margi=
n-top: -12px; margin-bottom: 2px; text-align: right; }
.bg-working { background-color: beige; padding: 5px; display: inline; posit=
ion: absolute; z-index: 801; vertical-align: middle; box-shadow: rgb(102, 1=
02, 102) 0px 0px 4px; }
table input[type=3D"checkbox"], table input[type=3D"radio"] { margin: 0px 0=
px 0px 5px; }
.myyard-history { margin-bottom: 20px; margin-top: 10px; border-radius: 5px=
; }
.myyard-history-title:hover { color: rgb(0, 0, 0); }
.myyard-history-title { font-size: 14px; border: none; background-repeat: n=
o-repeat; padding: 5px 10px; cursor: pointer; }
.myyard-history-title i { font-size: 16px; margin-right: 5px; }
.extended-history { padding: 0px 10px 10px; }
.extended-history .myyard-history-header { border-bottom-width: 1px; border=
-bottom-style: solid; border-color: inherit; margin-left: -10px; margin-rig=
ht: -10px; padding: 5px 10px; margin-bottom: 5px; background-color: rgb(226=
, 226, 227); }
.extended-history .myyard-history-header .myyard-history-title { border: no=
ne; }
.collapsed-history { padding: 5px 10px; }
.collapsed-history .myyard-history-header { position: static; top: 0px; lef=
t: 0px; }
.collapsed-history .myyard-history-header .myyard-history-title { border: n=
one; }
.myyard-history-header .lnks { font-size: 10px; }
.menu { font-size: 12px; background-color: rgb(65, 64, 66); color: rgb(255,=
255, 255); }
.menu .title { background-color: rgb(252, 176, 52); height: 40px; line-heig=
ht: 40px; font-size: 24px; padding-left: 20px; font-weight: 400; margin: 0p=
x; text-transform: uppercase; }
.menu .more a { cursor: default; }
.menu > ul { margin: 0px 20px; padding: 0px; list-style: none; float: right=
; }
.menu > ul > li { position: relative; float: left; width: 105px; height: 37=
px; }
.menu > ul > li > a { padding: 5px 0px; color: rgb(255, 255, 255); display:=
block; text-align: center; width: inherit; position: relative; z-index: 1;=
}
.menu > ul > li > a i { text-decoration: none; font-size: 25px; height: 26p=
x; margin-right: 6px; display: inline-block; vertical-align: middle; }
.menu > ul > li > a span { display: inline-block; vertical-align: middle; }
@media (max-width: 984px) {
.menu > ul > li { width: 45px; }
.menu > ul > li > a span { display: none; }
.menu > ul > li > a i { margin-right: 0px; }
.top-level:last-child .sub { right: 0px; }
}
.menu > ul > li.menu-active > a { border-top-right-radius: 5px; border-top-=
left-radius: 5px; background-color: rgb(252, 176, 52); color: rgb(65, 64, 6=
6); }
.menu > ul > li.active > a { border-top-right-radius: 5px; border-top-left-=
radius: 5px; background-color: rgb(252, 176, 52); color: rgb(65, 64, 66); b=
ox-shadow: rgb(0, 0, 0) 0px 0px 3px; z-index: 2; }
ul > li > a:active, ul > li > a:hover { text-decoration: none; }
ul.sub, ul.sub-sub { z-index: 800; width: 105px; display: none; position: a=
bsolute; margin: 0px; background-color: rgb(252, 176, 52); list-style-type:=
none; box-shadow: rgb(0, 0, 0) 0px 2px 3px; }
ul.sub > li { position: relative; }
ul.sub-sub > li:hover > a, ul.sub > li:hover > a { background-color: rgb(65=
, 64, 66); color: rgb(255, 255, 255); box-shadow: rgb(0, 0, 0) 0px 0px 3px =
inset; }
ul.sub-sub > li > a, ul.sub > li > a { display: block; padding: 5px 10px; c=
olor: rgb(65, 64, 66); line-height: 15px; }
ul.sub > li > a i.icon-chevron-right { float: right; }
li.top-level:last-child .sub-sub { left: -105px; }
li.top-level:last-child .icon-chevron-right::before { content: "=EF=81=93";=
}
ul.sub-sub { left: 105px; top: 0px; }
.help_menu { float: right; margin-right: 20px; text-transform: none; margin=
-top: 5px; }
.preamble .user .btn { border: none; background-image: none; background-col=
or: rgb(255, 255, 255); }
.preamble .user .btn-group:not(.open) .btn { box-shadow: none; }
.preamble .user .btn:hover { background-color: rgb(240, 240, 240); }
.help_menu .btn i { margin-right: 5px; }
.help_menu .btn { box-shadow: none; border: none; background-image: none; b=
ackground-color: rgb(252, 176, 52); }
.help_menu .btn:hover { background-color: rgb(240, 240, 240); }
.dashboard-icon, .management-icon, .nuts-bolts-icon, .transport-icon, .weig=
ht-icon { height: 26px; font-size: 38px !important; }
.dashboard-icon { margin-left: -4px; padding-right: 2px; width: 31px; }
.transport-icon { width: 35px; }
.weight-icon { margin-left: -7px; padding-right: 7px; width: 20px; }
.management-icon { width: 20px; padding-right: 3px; margin-top: 3px; margin=
-left: -10px; margin-bottom: -3px; }
.nuts-bolts-icon { margin-left: -7px; padding-right: 9px; width: 20px; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.dashboard-icon { margin-left: -4px; padding-right: 2px; width: 31px; }
.transport-icon { width: 35px; }
.weight-icon { margin-left: -7px; padding-right: 7px; width: 20px; }
.management-icon { width: 20px; padding-right: 3px; margin-left: -10px; }
.nuts-bolts-icon { margin-left: -7px; padding-right: 9px; width: 20px; }
}
@font-face { font-family: waste_logics_iconsregular; src: url("/sheets/font=
/myicons-wastelogics.eot?#iefix") format("embedded-opentype"), url("/sheets=
/font/myicons-wastelogics.woff") format("woff"), url("/sheets/font/myicons-=
wastelogics.ttf") format("truetype"), url("/sheets/font/myicons-wastelogics=
.svg#waste_logics_iconsregular") format("svg"); font-weight: 400; font-styl=
e: normal; }
.dashboard-icon, .management-icon, .nuts-bolts-icon, .transport-icon, .weig=
ht-icon { font-family: waste_logics_iconsregular; font-style: normal; font-=
weight: 400; font-stretch: normal; text-decoration: inherit; -webkit-font-s=
moothing: antialiased; }
.dashboard-icon::before, .management-icon::before, .nuts-bolts-icon::before=
, .transport-icon::before, .weight-icon::before { text-decoration: inherit;=
display: inline-block; speak: none; }
a .dashboard-icon, a .management-icon, a .nuts-bolts-icon, a .transport-ico=
n, a .weight-icon { display: inline; }
.dashboard-icon.pull-left, .management-icon.pull-left, .nuts-bolts-icon.pul=
l-left, .transport-icon.pull-left, .weight-icon.pull-left { margin-right: 0=
.3em; }
.dashboard-icon.pull-right, .management-icon.pull-right, .nuts-bolts-icon.p=
ull-right, .transport-icon.pull-right, .weight-icon.pull-right { margin-lef=
t: 0.3em; }
.dashboard-icon::before { content: "d"; }
.transport-icon::before { content: "t"; }
.weight-icon::before { content: "w"; }
.management-icon::before { content: "m"; }
.nuts-bolts-icon::before { content: "n"; }
.tdlabel { font-size: 14px; font-weight: 700; color: rgb(102, 102, 102); }
#passwords input { z-index: 5; position: relative; }
.check_input { height: 28px; width: 200px; border: 1px solid rgb(204, 204, =
204); font-size: 16px; font-weight: 700; color: rgb(102, 102, 102); padding=
: 7px 0px 0px 4px; }
.testresult { position: relative; line-height: 19px; }
.testresult span { border-radius: 0px 4px 4px 0px; padding: 4.5px 10px; pos=
ition: absolute; display: block; width: 65px; left: -5px; top: -12px; borde=
r: 1px solid transparent; }
.shortPass span { background-color: rgb(242, 222, 222); border-color: rgb(2=
38, 211, 215); color: rgb(185, 74, 72); }
.badPass span { background-color: rgb(252, 248, 227); border-color: rgb(251=
, 238, 213); color: rgb(192, 152, 83); }
.goodPass span { background-color: rgb(223, 240, 216); border-color: rgb(21=
4, 233, 198); color: rgb(70, 136, 71); }
.strongPass span { background-color: rgb(223, 240, 216); border-color: rgb(=
214, 233, 198); color: rgb(70, 136, 71); }
.swat-calendar-div-hide { font-size: x-small; background: rgb(255, 255, 255=
); position: absolute; display: none; box-shadow: rgb(178, 174, 174) 1px 1p=
x 3px; top: 30px !important; }
.swat-calendar-div-show { display: block; }
.swat-calendar-frame { border: 1px solid silver; border-collapse: collapse;=
}
.swat-calendar-control-frame { text-align: center; padding: 3px; border: 1p=
x solid silver; }
.swat-calendar-control { font-size: xx-small; }
.swat-calendar-header { width: 2em; text-align: center; border-top: 1px sol=
id silver; }
.swat-calendar-cell { text-align: center; cursor: pointer; border: 1px soli=
d silver; padding: 2px; }
.swat-calendar-cell:hover { background-color: rgb(65, 64, 66); color: rgb(2=
55, 255, 255); }
.swat-calendar-current-cell { background: rgb(252, 176, 52); color: rgb(0, =
0, 0); text-align: center; cursor: pointer; border: 1px solid silver; paddi=
ng: 2px; }
.swat-calendar-invalid-cell { text-align: center; color: rgb(204, 204, 204)=
; border: 1px solid silver; padding: 2px; }
.swat-calendar-empty-cell { padding: 2px; border: 1px solid rgb(204, 204, 2=
04); background: url("/img/btns/color-entry-null.png"); }
#swat-calendar-close-controls { text-align: center; padding-top: 2px; paddi=
ng-bottom: 2px; }
#swat-calendar-close-controls span { padding: 1px 4px; }
#swat-calendar-close-controls a { cursor: pointer; }
.swat-calendar-close { color: rgb(153, 51, 51); }
.swat-calendar-cancel { color: rgb(51, 102, 153); }
.swat-calendar-today { color: rgb(51, 102, 153); }
.swat-calendar-date-field { border: 1px solid; background: rgb(255, 255, 25=
5); padding: 1px; text-align: center; }
.swat-calendar-icon { vertical-align: bottom; margin-left: 2px; border: 0px=
; }
.swat-calendar-arrows { cursor: pointer; }
.swat-calendar-control-frame select { border-radius: 0px; margin: 0px; disp=
lay: inline; float: left; width: 50%; }
.swat-calendar-control-frame .btn-small { padding: 4px 10px; }
.swat-calendar-control-frame td:nth-child(1) .btn { border-top-right-radius=
: 0px; border-bottom-right-radius: 0px; }
.swat-calendar-control-frame td:nth-child(3) .btn { border-top-left-radius:=
0px; border-bottom-left-radius: 0px; }
.swat-calendar-control-frame .btn-small .left { border-top-right-radius: 0p=
x; border-bottom-right-radius: 0px; }
.swat-calendar-control-frame .btn-small .ri { border-top-left-radius: 0px; =
border-bottom-left-radius: 0px; }
.swat-calendar-control-frame .dropdowns { min-width: 156px; }
table.inline-edit .inline-td:hover { cursor: text; background-color: rgb(25=
0, 250, 250); }
table.inline-edit .inline-td:active { box-shadow: rgb(92, 92, 92) 0px 0px 2=
px inset; }
table.inline-edit .inline-td.inline-showed { vertical-align: top; overflow:=
initial; }
table.inline-edit tr.inline-showed { background-color: rgb(255, 255, 153); =
}
td.inline-td .clear { clear: none; }
td.inline-td.myyard-form { overflow: auto; word-break: break-word; }
.inline-td .mfec { margin: 0px; position: relative; }
.inline_edit_text_box .mfei textarea { box-sizing: border-box; resize: vert=
ical; border: 0px !important; box-shadow: none !important; width: inherit !=
important; }
.inline_edit_text_box .mfei { width: 100%; min-width: 300px; position: rela=
tive !important; top: 0px !important; left: 0px !important; }
.inline-td .mfei { position: absolute; top: -2.5px; left: 0px; }
.inline-td.myyard-form .dlabel, .inline-td.myyard-form .icon-warning-sign, =
.inline-td.myyard-form .mfei > a, .inline-td.myyard-form .mfei > img, .inli=
ne-td.myyard-form .mfei > span, .inline-td.myyard-form .myyard-required { d=
isplay: none !important; }
.inline-td.myyard-form input, .inline-td.myyard-form select, .inline-td.myy=
ard-form textarea { padding: 1px 4px; border-color: rgb(129, 129, 129); bac=
kground-color: rgb(255, 255, 255); box-shadow: rgb(92, 92, 92) 0px 0px 1px =
inset; border-radius: 0px !important; }
.inline-td.myyard-form select { padding-top: 0px; }
.inline-td.myyard-form input.missing, .inline-td.myyard-form select.missing=
, .inline-td.myyard-form textarea.missing { border-color: rgb(162, 0, 0); b=
ox-shadow: rgb(162, 0, 0) 0px 0px 1px inset; }
span.inline-advanced, span.inline-advanced.active { background: url("/img/b=
tns/inline-advanced-edit.png") left top no-repeat transparent; opacity: 0.6=
; width: 15px; height: 15px; display: block; cursor: pointer; margin: 3px 3=
px 3px 5px; float: right; }
span.inline-advanced.active:hover, span.inline-advanced:hover { opacity: 0.=
75; }
span.inline-advanced.active:active, span.inline-advanced:active { opacity: =
1; }
span.inline-advanced.active { background-position: left bottom; }
tbody.inline-advanced > tr:last-child > td { padding: 10px 0px; }
tbody.inline-advanced { background-color: rgb(255, 255, 153); }
tbody.inline-advanced:hover { background-color: rgb(255, 255, 153) !importa=
nt; }
.inline-advanced-content { border-color: rgb(204, 204, 204); border-style: =
solid; border-width: 1px 0px 0px 1px; background-color: rgb(255, 255, 255);=
padding: 10px 10px 15px; box-shadow: rgb(52, 52, 52) 0px 0px 4px inset; co=
lor: rgb(65, 64, 66); }
div.new { border: 1px solid rgb(204, 204, 204); border-radius: 3px; box-sha=
dow: rgb(204, 204, 204) 0px 0px 3px; margin-bottom: 10px; padding: 10px; }
div.new:hover { box-shadow: rgb(175, 175, 175) 0px 0px 3px; }
.left_float, .right_float { padding: 10px; clear: none !important; }
.left_float .dlabel.vertical, .right_float .dlabel.vertical { height: 34px;=
}
.left_float:hover, .right_float:hover { border: 1px solid rgb(204, 204, 204=
); }
.left_float { float: left; }
.right_float { float: right; }
.color_0 { background-color: rgb(255, 255, 255); border: 1px solid rgb(255,=
255, 255); }
.color_1 { background-color: rgb(241, 241, 241); border: 1px solid rgb(241,=
241, 241); }
.color_2 { background-color: rgb(225, 225, 225); border: 1px solid rgb(225,=
225, 225); }
.color_3 { background-color: rgb(209, 209, 209); border: 1px solid rgb(209,=
209, 209); }
.color_4 { background-color: rgb(193, 193, 193); border: 1px solid rgb(193,=
193, 193); }
.color_4 { background-color: rgb(177, 177, 177); border: 1px solid rgb(177,=
177, 177); }
.color_5 { background-color: rgb(161, 161, 161); border: 1px solid rgb(161,=
161, 161); }
b.exchange { background-color: rgb(67, 200, 198); border-radius: 5px; color=
: rgb(255, 255, 255); padding: 3px 5px; }
.border-box { box-sizing: border-box; }
.slbin .fc-event-skin { background-color: rgb(51, 153, 153); }
tbody.slbin { color: rgb(51, 153, 153); }
.sebin .fc-event-skin { background-color: rgb(67, 200, 198); }
tbody.sebin { color: rgb(67, 200, 198); }
.prout .fc-event-skin { background-color: rgb(146, 89, 201); }
tbody.prout { color: rgb(118, 29, 204); }
.albin .fc-event-skin { background-color: rgb(102, 102, 102); }
tbody.albin { color: rgb(102, 102, 102); }
.aebin .fc-event-skin { background-color: rgb(164, 164, 164); }
tbody.aebin { color: rgb(164, 164, 164); }
.dbin .fc-event-skin { background-color: rgb(0, 153, 102); }
tbody.dbin { color: rgb(0, 153, 102); }
.cbin .fc-event-skin { background-color: rgb(204, 0, 0); }
.fc-event-title .is_mr { position: absolute; left: 2px; bottom: 1px; }
.fc-event-title .is_sub { font-weight: 700; position: absolute; bottom: 1px=
; left: 15px; }
.fc-event-title .site_times { position: absolute; bottom: 1px; left: 36px; =
}
tbody.cbin { color: rgb(204, 0, 0); }
.rows .btn-mini { margin-left: 3px; margin-right: 3px; padding-left: 8px; p=
adding-right: 8px; }
.pcaAutoComplete .pnlAutoComplete, .pcaAutoComplete .pnlResults, .pcaAutoCo=
mpleteSmall .pnlAutoCompleteSmall, .pcaAutoCompleteSmall .pnlResultsSmall {=
z-index: 3; }
.fc { direction: ltr; text-align: left; }
.fc table { border-collapse: collapse; border-spacing: 0px; }
.fc table, html .fc { font-size: 1em; }
.fc td, .fc th { padding: 0px; vertical-align: top; }
.fc-header td { white-space: nowrap; }
.fc-header-left { width: 25%; text-align: left; }
.fc-header-center { text-align: center; }
.fc-header-right { width: 25%; text-align: right; }
.fc-header-title { display: inline-block; vertical-align: top; }
.fc-header-title h2 { margin-top: 0px; white-space: nowrap; }
.fc .fc-header-space { padding-left: 10px; }
.fc-header .fc-button { margin-bottom: 1em; vertical-align: top; }
.fc-header .fc-button { margin-right: -1px; }
.fc-header .fc-corner-right { margin-right: 1px; }
.fc-header .ui-corner-right { margin-right: 0px; }
.fc-header .fc-state-hover, .fc-header .ui-state-hover { z-index: 2; }
.fc-header .fc-state-down { z-index: 3; }
.fc-header .fc-state-active, .fc-header .ui-state-active { z-index: 4; }
.fc-content { clear: both; }
.fc-view { width: 100%; overflow: hidden; }
.fc-widget-content, .fc-widget-header { border: 1px solid rgb(204, 204, 204=
); }
.fc-state-highlight { background: rgb(255, 255, 204); }
.fc-cell-overlay { background: rgb(153, 204, 255); opacity: 0.2; }
.fc-button { position: relative; display: inline-block; cursor: pointer; }
.fc-state-default { border-style: solid; border-width: 1px 0px; }
.fc-button-inner { position: relative; float: left; overflow: hidden; }
.fc-state-default .fc-button-inner { border-style: solid; border-width: 0px=
1px; }
.fc-button-content { position: relative; float: left; height: 1.9em; line-h=
eight: 1.9em; padding: 0px 0.6em; white-space: nowrap; }
.fc-button-content .fc-icon-wrap { position: relative; float: left; top: 50=
%; }
.fc-button-content .ui-icon { position: relative; float: left; margin-top: =
-50%; }
.fc-state-default .fc-button-effect { position: absolute; top: 50%; left: 0=
px; }
.fc-state-default .fc-button-effect span { position: absolute; top: -100px;=
left: 0px; width: 500px; height: 100px; border-width: 100px 0px 0px 1px; b=
order-style: solid; border-color: rgb(255, 255, 255); background: rgb(68, 6=
8, 68); opacity: 0.09; }
.fc-state-default, .fc-state-default .fc-button-inner { border-style: solid=
; border-color: rgb(204, 204, 204) rgb(187, 187, 187) rgb(170, 170, 170); b=
ackground: rgb(243, 243, 243); color: rgb(0, 0, 0); }
.fc-state-hover, .fc-state-hover .fc-button-inner { border-color: rgb(153, =
153, 153); }
.fc-state-down, .fc-state-down .fc-button-inner { border-color: rgb(85, 85,=
85); background: rgb(119, 119, 119); }
.fc-state-active, .fc-state-active .fc-button-inner { border-color: rgb(85,=
85, 85); background: rgb(119, 119, 119); color: rgb(255, 255, 255); }
.fc-state-disabled, .fc-state-disabled .fc-button-inner { color: rgb(153, 1=
53, 153); border-color: rgb(221, 221, 221); }
.fc-state-disabled { cursor: default; }
.fc-state-disabled .fc-button-effect { display: none; }
.fc-event { border-style: solid; border-width: 0px; font-size: 0.85em; curs=
or: default; }
.fc-event:hover { cursor: pointer; }
.fc-event-draggable, a.fc-event { cursor: pointer; }
a.fc-event { text-decoration: none; }
.fc-rtl .fc-event { text-align: right; }
.fc-event-skin { border-color: rgb(65, 64, 66); background-color: rgb(51, 1=
02, 204); color: rgb(255, 255, 255); }
.fc-event-inner { position: relative; width: 100%; height: 100%; border-sty=
le: solid; border-width: 0px; overflow: hidden; }
.fc-event-time, .fc-event-title { display: block; line-height: 13px; paddin=
g: 3px; }
.fc .ui-resizable-handle { display: block; position: absolute; z-index: 999=
99; overflow: hidden; font-size: 300%; line-height: 50%; }
.fc-event-hori { border-width: 1px 0px; margin-bottom: 1px; }
.fc-event-hori .ui-resizable-e { cursor: e-resize; top: 0px !important; rig=
ht: -3px !important; width: 7px !important; height: 100% !important; }
.fc-event-hori .ui-resizable-w { cursor: w-resize; top: 0px !important; lef=
t: -3px !important; width: 7px !important; height: 100% !important; }
.fc-corner-left { margin-left: 1px; }
.fc-corner-left .fc-button-inner, .fc-corner-left .fc-event-inner { margin-=
left: -1px; }
.fc-corner-right { margin-right: 1px; }
.fc-corner-right .fc-button-inner, .fc-corner-right .fc-event-inner { margi=
n-right: -1px; }
.fc-corner-top { margin-top: 1px; }
.fc-corner-top .fc-event-inner { margin-top: -1px; }
.fc-corner-bottom { margin-bottom: 1px; }
.fc-corner-bottom .fc-event-inner { margin-bottom: -1px; }
.fc-corner-left .fc-event-inner { border-left-width: 1px; }
.fc-corner-right .fc-event-inner { border-right-width: 1px; }
.fc-corner-top .fc-event-inner { border-top-width: 1px; }
.fc-corner-bottom .fc-event-inner { border-bottom-width: 1px; }
table.fc-border-separate { border-collapse: separate; }
.fc-border-separate td, .fc-border-separate th { border-width: 1px 0px 0px =
1px; }
.fc-border-separate td.fc-last, .fc-border-separate th.fc-last { border-rig=
ht-width: 1px; }
.fc-border-separate tr.fc-last td, .fc-border-separate tr.fc-last th { bord=
er-bottom-width: 1px; }
.fc-border-separate tbody tr.fc-first td, .fc-border-separate tbody tr.fc-f=
irst th { border-top-width: 0px; }
.fc-grid th { text-align: center; }
.fc-grid .fc-day-number { float: right; padding: 0px 2px; }
.fc-grid .fc-other-month .fc-day-number { opacity: 0.3; }
.fc-grid .fc-day-content { clear: both; padding: 2px 2px 1px; }
.fc-grid .fc-event-time { font-weight: 700; }
.fc-rtl .fc-grid .fc-day-number { float: left; }
.fc-rtl .fc-grid .fc-event-time { float: right; }
.fc-agenda table { border-collapse: separate; }
.fc-agenda-days th { text-align: center; }
.fc-agenda .fc-agenda-axis { width: 50px; padding: 0px 4px; vertical-align:=
middle; text-align: right; white-space: nowrap; font-weight: 400; }
.fc-agenda .fc-day-content { padding: 2px 2px 1px; }
.fc-agenda-days .fc-agenda-axis { border-right-width: 1px; }
.fc-agenda-days .fc-col0 { border-left-width: 0px; }
.fc-agenda-allday th { border-width: 0px 1px; }
.fc-agenda-allday .fc-day-content { min-height: 34px; }
.fc-agenda-divider-inner { height: 2px; overflow: hidden; }
.fc-widget-header .fc-agenda-divider-inner { background: rgb(238, 238, 238)=
; }
.fc-agenda-slots th { border-width: 1px 1px 0px; }
.fc-agenda-slots td { border-width: 1px 0px 0px; background: 0px 0px; }
.fc-agenda-slots td div { height: 20px; }
.fc-agenda-slots tr.fc-slot0 td, .fc-agenda-slots tr.fc-slot0 th { border-t=
op-width: 0px; }
.fc-agenda-slots tr.fc-minor td, .fc-agenda-slots tr.fc-minor th { border-t=
op-style: dotted; }
.fc-event-vert { border-width: 0px 1px; }
.fc-event-vert .fc-event-content, .fc-event-vert .fc-event-head { position:=
relative; z-index: 2; width: 100%; overflow: hidden; }
.fc-event-vert .fc-event-time { white-space: nowrap; font-size: 10px; }
.fc-event-vert .fc-event-bg { position: absolute; z-index: 1; top: 0px; lef=
t: 0px; width: 100%; height: 100%; background: rgb(255, 255, 255); opacity:=
0.3; }
.fc-event-vert .ui-resizable-s { font-family: monospace; text-align: center=
; cursor: s-resize; bottom: 0px !important; width: 100% !important; height:=
8px !important; overflow: hidden !important; line-height: 8px !important; =
font-size: 11px !important; }
.filter_form { clear: both; overflow: hidden; margin-bottom: 20px; }
#toggle_button { margin-top: 10px; }
.calendar_container { width: 50%; float: left; }
.list_container { width: 49%; float: right; min-height: 1000px; }
.list_container .gl-2 td { cursor: pointer; }
#cal_b { margin-top: 10px; margin-bottom: 30px; }
#notifications { margin: 10px 0px; width: 49%; float: right; }
#cal_b .fc-event-skin { border: 1px solid rgb(204, 204, 204); }
.fc-event.temporary .fc-event-skin { background-color: rgb(255, 255, 255); =
color: rgb(51, 51, 51); }
.fc-event.nottipped .fc-event-skin { background-color: rgb(213, 216, 141); =
color: rgb(71, 71, 71); }
.fc-event.pending .fc-event-skin { background-color: rgb(246, 246, 246); co=
lor: rgb(71, 71, 71); }
.fc-event.rescheduled .fc-event-skin { background-color: rgb(245, 255, 207)=
; color: rgb(71, 71, 71); }
.fc-event.managersignedoff .fc-event-skin { background-color: rgb(246, 246,=
246); color: rgb(221, 47, 0); }
.fc-event.problematic .fc-event-skin { background-color: rgb(114, 10, 10); =
color: rgb(152, 152, 152); }
.fc-event.assigned .fc-event-skin { background-color: rgb(221, 174, 117); c=
olor: rgb(71, 71, 71); }
.fc-event.weighted .fc-event-skin { background-color: rgb(254, 254, 254); c=
olor: rgb(48, 165, 204); }
.fc-event.inpected .fc-event-skin { background-color: rgb(254, 254, 254); c=
olor: rgb(28, 76, 252); }
.fc-event.loadsignedoff .fc-event-skin { background-color: rgb(246, 246, 24=
6); color: rgb(159, 10, 10); }
.fc-event.chargesonly .fc-event-skin { background-color: rgb(246, 246, 246)=
; color: rgb(0, 153, 0); }
.fc-event.deleted .fc-event-skin { background-color: rgb(71, 71, 71); color=
: rgb(152, 152, 152); }
.calendar_container.affix { position: fixed; top: 10px; overflow: auto; wid=
th: 49%; height: 100%; }
.update_chart { margin-bottom: 10px; margin-left: 20px; }
.centered { text-align: center; }
.charts h3, .reminders_block h3 { color: rgb(77, 77, 77); border: none; }
.thin_well { padding: 8px 0px; }
.charts .nav.nav-list > li.active > a { background-color: rgb(65, 64, 66); =
}
.reminders_block ul { list-style: none; margin: 0px; display: block; }
.reminders_block li { display: block; text-align: left; background-color: r=
gb(245, 245, 245); border: 1px solid rgb(221, 221, 221); position: relative=
; box-shadow: rgb(200, 200, 200) 0px 0px 4px; }
.reminders_block .padding { padding: 8px 12px; }
.reminders_block .edit_remider { position: absolute; right: 0px; height: 10=
0%; top: 0px; border-radius: 0px; }
.reminders_block .edit_remider i { position: absolute; top: 41%; left: 42%;=
}
.reminders_block li:hover { background-color: rgb(254, 254, 254); border: 1=
px solid rgb(65, 64, 66); box-shadow: rgb(65, 64, 66) 0px 0px 4px; z-index:=
10; }
.reminders_block li:first-child { border-top-right-radius: 4px; border-top-=
left-radius: 4px; }
.reminders_block li:first-child .edit_remider { border-top-right-radius: 4p=
x; }
.reminders_block li:last-child { border-bottom-left-radius: 4px; border-bot=
tom-right-radius: 4px; }
.reminders_block li:last-child .edit_remider { border-bottom-right-radius: =
4px; }
.reminders_block h4.title { border-bottom: 1px solid rgb(0, 0, 0); display:=
block; margin-bottom: 10px; padding-bottom: 10px; margin-top: 10px; color:=
rgb(77, 77, 77); font-size: 22px; }
.reminders_block h4 { display: inline; margin: 0px 10px; }
.screen_notification .close { color: rgb(255, 255, 255); opacity: 0.7; padd=
ing: 5px 15px; }
.screen_notification .close:hover { color: rgb(255, 255, 255); opacity: 1; =
}
.screen_notification h4 { padding: 5px 15px; background-color: rgb(139, 193=
, 221); color: rgb(255, 255, 255); margin-bottom: 0px; border-top-right-rad=
ius: 4px; border-top-left-radius: 4px; }
.screen_notification .alert-block { border-top-right-radius: 0px; border-to=
p-left-radius: 0px; }
.screen_notification a { font-weight: 700; }
.notification_dropdown .dropdown-toggle span { float: none; display: inline=
-block; margin-top: -10px; }
@-webkit-keyframes bell {=20
0% { color: rgb(66, 66, 66); }
10% { color: rgb(66, 66, 66); }
50% { color: rgb(252, 176, 52); }
90% { color: rgb(66, 66, 66); }
100% { color: rgb(66, 66, 66); }
}
@keyframes bell {=20
0% { color: rgb(66, 66, 66); }
10% { color: rgb(66, 66, 66); }
50% { color: rgb(252, 176, 52); }
90% { color: rgb(66, 66, 66); }
100% { color: rgb(66, 66, 66); }
}
.notification_dropdown .icon-bell-alt { color: rgb(66, 66, 66); animation: =
1s linear 0s infinite normal none running bell; }
.notification_dropdown .dropdown-menu > li { white-space: normal; }
.notification_dropdown .notification-item { clear: both; display: block; fo=
nt-weight: 400; line-height: 20px; padding: 3px 10px 7px; float: none; text=
-align: left; border-top: 1px solid rgb(228, 228, 228); }
.notification_dropdown li:first-child .notification-item { border-top: none=
; }
.notification_dropdown .notification-item:hover { background-color: rgb(241=
, 241, 241); }
.notification_dropdown .notification-header { color: rgb(185, 185, 185); }
.notification_dropdown .notification-header span:nth-child(1) { float: left=
; font-size: 12px; color: rgb(185, 185, 185); }
.notification_dropdown .notification-header span:nth-child(2) { float: righ=
t; font-size: 12px; color: rgb(185, 185, 185); }
.notification_dropdown .dropdown-menu li:first-child a { text-align: center=
; background-color: rgb(228, 228, 228); color: rgb(0, 136, 204); display: b=
lock; }
.notification_dropdown .dropdown-menu { padding-bottom: 0px; }
.notification_dropdown .dropdown-menu { width: 400px; max-height: 500px; ov=
erflow: auto; }
@media (max-width: 767px) {
.notification_dropdown .dropdown-menu { width: 250px; }
.notification_dropdown { font-size: 12px; }
}
span.late { font-weight: 700; }
span.too-late { color: rgb(185, 74, 72); }
span.too-late-sup { color: rgb(185, 74, 72); font-weight: 400; }
.myyard-form h2 { font-size: 16px; line-height: 20px; margin-bottom: 0px; p=
adding-bottom: 0px; }
.highcharts-contextmenu { width: 200px; }
.highcharts-contextmenu hr { margin: 5px 0px; width: auto; }
.top_20_list { margin-left: 0px; margin-top: 10px; padding: 10px 40px; font=
-size: 14px; }
.top_20_list li { padding: 5px; }
td.last_activity_chart { height: 180px; min-width: 500px; }
[id^=3D"chart_"] table td { vertical-align: middle; }
.period-row { margin-top: 10px; position: relative; }
.period-row:first-child { margin-top: 0px; }
.period-row a.cal:first-child { border-radius: 3px 0px 0px 3px; }
.period-row input { border-radius: 0px; }
.period-row span.dash { background-color: rgb(247, 247, 247); border-top: 1=
px solid rgb(204, 204, 204); border-bottom: 1px solid rgb(204, 204, 204); p=
adding: 4px 5px 7px; }
ul.bordered_list { margin: 0px; }
ul.bordered_list li { border: 1px solid rgb(204, 204, 204); border-radius: =
5px; display: inline-block; margin-bottom: 5px; margin-right: 7px; padding:=
1px 5px; }
ul.bordered_list li:hover { background-color: rgb(255, 255, 255); }
@media (max-width: 767px) {
.reminders_block li .edit_remider { width: 35px; opacity: 0.5; }
.reminders_block li .edit_remider:hover { opacity: 1; }
}
.weight_total { position: fixed; left: 43%; top: 20px; background-color: rg=
b(255, 255, 153); box-shadow: rgb(140, 140, 140) 0px 0px 5px; text-align: c=
enter; padding: 5px 10px; opacity: 0.9; z-index: 9999; }
.error { background-color: rgb(252, 248, 227); border: 1px solid rgb(216, 1=
51, 44); }
#tabs { width: 100%; }
#tabs_tabs { margin: 0px; padding: 0px; }
#tabs_tabs li { list-style: none; margin: 0px; overflow: hidden; text-overf=
low: ellipsis; white-space: nowrap; }
.email-notifications-form div.dlabel { width: 25em; }
.email-notifications-form .mfec { margin-bottom: 1.5em; }
.right_column .myyard-table-view tbody tr { background-color: rgb(255, 255,=
255); }
.right_column .myyard-table-view tbody.highlight tr { background-color: rgb=
(255, 255, 153); color: rgb(66, 66, 66); }
select.chosen { min-width: 200px; }
.chzn-container { font-size: 13px; position: relative; display: inline-bloc=
k; zoom: 1; }
.chzn-container .chzn-drop { background: rgb(255, 255, 255); border-width: =
0px 1px 1px; border-right-style: solid; border-bottom-style: solid; border-=
left-style: solid; border-right-color: rgb(170, 170, 170); border-bottom-co=
lor: rgb(170, 170, 170); border-left-color: rgb(170, 170, 170); border-imag=
e: initial; border-top-style: initial; border-top-color: initial; position:=
absolute; top: 29px; left: 0px; box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 5p=
x; z-index: 1010; }
.chzn-container-single .chzn-single { background-color: rgb(255, 255, 255);=
background-image: linear-gradient(rgb(255, 255, 255) 20%, rgb(246, 246, 24=
6) 50%, rgb(238, 238, 238) 52%, rgb(244, 244, 244) 100%); border-radius: 5p=
x; background-clip: padding-box; border: 1px solid rgb(170, 170, 170); box-=
shadow: rgb(255, 255, 255) 0px 0px 3px inset, rgba(0, 0, 0, 0.1) 0px 1px 1p=
x; display: block; overflow: hidden; white-space: nowrap; position: relativ=
e; height: 23px; line-height: 24px; padding: 0px 0px 0px 8px; color: rgb(68=
, 68, 68); text-decoration: none; }
.chzn-container-single .chzn-default { color: rgb(153, 153, 153); }
.chzn-container-single .chzn-single span { margin-right: 26px; display: blo=
ck; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.chzn-container-single .chzn-single abbr { display: block; position: absolu=
te; right: 26px; top: 6px; width: 12px; height: 12px; font-size: 1px; backg=
round: url("/sheets/chosen/chosen-sprite.png") -42px 1px no-repeat; }
.chzn-container-single .chzn-single abbr:hover { background-position: -42px=
-10px; }
.chzn-container-single.chzn-disabled .chzn-single abbr:hover { background-p=
osition: -42px -10px; }
.chzn-container-single .chzn-single div { position: absolute; right: 0px; t=
op: 0px; display: block; height: 100%; width: 18px; }
.chzn-container-single .chzn-single div b { background: url("/sheets/chosen=
/chosen-sprite.png") 0px 2px no-repeat; display: block; width: 100%; height=
: 100%; }
.chzn-container-single .chzn-search { padding: 3px 4px; position: relative;=
margin: 0px; white-space: nowrap; z-index: 1010; }
.chzn-container-single .chzn-search input { background: url("/sheets/chosen=
/chosen-sprite.png") 100% -20px no-repeat, linear-gradient(rgb(238, 238, 23=
8) 1%, rgb(255, 255, 255) 15%); margin: 1px 0px; padding: 4px 20px 4px 5px;=
outline: 0px; border: 1px solid rgb(170, 170, 170); font-family: sans-seri=
f; font-size: 1em; }
.chzn-container-single .chzn-drop { border-radius: 0px 0px 4px 4px; backgro=
und-clip: padding-box; }
.chzn-container-single-nosearch .chzn-search input { position: absolute; le=
ft: -9000px; }
.chzn-container-multi .chzn-choices { border-radius: 4px; background-color:=
rgb(255, 255, 255); background-image: linear-gradient(rgb(238, 238, 238) 1=
%, rgb(255, 255, 255) 15%); border: 1px solid rgb(170, 170, 170); margin: 0=
px; padding: 0px; cursor: text; overflow: hidden; position: relative; heigh=
t: auto !important; }
.chzn-container-multi .chzn-choices li { float: left; list-style: none; }
.chzn-container-multi .chzn-choices .search-field { white-space: nowrap; ma=
rgin: 0px; padding: 0px; }
.chzn-container-multi .chzn-choices .search-field input { color: rgb(102, 1=
02, 102); font-family: sans-serif; font-size: 100%; height: 15px; padding: =
5px; margin: 1px 0px; outline: 0px; box-shadow: none; background: 0px 0px !=
important; border: 0px !important; }
.chzn-container-multi .chzn-choices .search-field .default { color: rgb(153=
, 153, 153); }
.chzn-container-multi .chzn-choices .search-choice { border-radius: 3px; ba=
ckground-clip: padding-box; background-color: rgb(228, 228, 228); backgroun=
d-image: linear-gradient(rgb(244, 244, 244) 20%, rgb(240, 240, 240) 50%, rg=
b(232, 232, 232) 52%, rgb(238, 238, 238) 100%); box-shadow: rgb(255, 255, 2=
55) 0px 0px 2px inset, rgba(0, 0, 0, 0.05) 0px 1px 0px; color: rgb(51, 51, =
51); border: 1px solid rgb(170, 170, 170); line-height: 13px; padding: 3px =
20px 3px 5px; margin: 3px 0px 3px 5px; position: relative; cursor: default;=
}
.chzn-container-multi .chzn-choices .search-choice.search-choice-disabled {=
background-color: rgb(228, 228, 228); background-image: -webkit-linear-gra=
dient(top, rgb(244, 244, 244) 20%, rgb(240, 240, 240) 50%, rgb(232, 232, 23=
2) 52%, rgb(238, 238, 238) 100%); color: rgb(102, 102, 102); border: 1px so=
lid rgb(204, 204, 204); padding-right: 5px; }
.chzn-container-multi .chzn-choices .search-choice-focus { background: rgb(=
212, 212, 212); }
.chzn-container-multi .chzn-choices .search-choice .search-choice-close { d=
isplay: block; position: absolute; right: 3px; top: 4px; width: 12px; heigh=
t: 12px; font-size: 1px; background: url("/sheets/chosen/chosen-sprite.png"=
) -42px 1px no-repeat; }
.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hov=
er { background-position: -42px -10px; }
.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-clo=
se { background-position: -42px -10px; }
.chzn-container .chzn-results { margin: 0px 4px 4px 0px; max-height: 240px;=
padding: 0px 0px 0px 4px; position: relative; overflow: hidden auto; }
.chzn-container-multi .chzn-results { margin: -1px 0px 0px; padding: 0px; }
.chzn-container .chzn-results li { display: none; line-height: 15px; paddin=
g: 5px 6px; margin: 0px; list-style: none; }
.chzn-container .chzn-results .active-result { cursor: pointer; display: li=
st-item; }
.chzn-container .chzn-results .highlighted { background-color: rgb(56, 117,=
215); background-image: linear-gradient(rgb(56, 117, 215) 20%, rgb(42, 98,=
188) 90%); color: rgb(255, 255, 255); }
.chzn-container .chzn-results li em { background: rgb(254, 255, 222); font-=
style: normal; }
.chzn-container .chzn-results .highlighted em { background: 0px 0px; }
.chzn-container .chzn-results .no-results { background: rgb(244, 244, 244);=
display: list-item; }
.chzn-container .chzn-results .group-result { cursor: default; color: rgb(6=
7, 64, 64); font-size: 1.2em; font-weight: 700; }
.chzn-container .chzn-results .group-option { padding-left: 15px; }
.chzn-container-multi .chzn-drop .result-selected { display: none; }
.chzn-container .chzn-results-scroll { background: rgb(255, 255, 255); marg=
in: 0px 4px; position: absolute; text-align: center; width: 321px; z-index:=
1; }
.chzn-container .chzn-results-scroll span { display: inline-block; height: =
17px; text-indent: -5000px; width: 9px; }
.chzn-container .chzn-results-scroll-down { bottom: 0px; }
.chzn-container .chzn-results-scroll-down span { background: url("/sheets/c=
hosen/chosen-sprite.png") -4px -3px no-repeat; }
.chzn-container .chzn-results-scroll-up span { background: url("/sheets/cho=
sen/chosen-sprite.png") -22px -3px no-repeat; }
.chzn-container-active .chzn-single { border: 1px solid rgb(66, 66, 66); }
.chzn-container-active .chzn-single-with-drop { border: 1px solid rgb(170, =
170, 170); box-shadow: rgb(255, 255, 255) 0px 1px 0px inset; background-col=
or: rgb(238, 238, 238); background-image: linear-gradient(rgb(238, 238, 238=
) 20%, rgb(255, 255, 255) 80%); border-bottom-left-radius: 0px; border-bott=
om-right-radius: 0px; }
.chzn-container-active .chzn-single-with-drop div { background: 0px 0px; bo=
rder-left: none; }
.chzn-container-active .chzn-single-with-drop div b { background-position: =
-18px 2px; }
.chzn-container-active .chzn-choices { border: 1px solid rgb(66, 66, 66); }
.chzn-container-active .chzn-choices .search-field input { color: rgb(17, 1=
7, 17) !important; }
.chzn-disabled { cursor: default; opacity: 0.5 !important; }
.chzn-disabled .chzn-single { cursor: default; }
.chzn-disabled .chzn-choices .search-choice .search-choice-close { cursor: =
default; }
.chzn-rtl { text-align: right; }
.chzn-rtl .chzn-single { padding: 0px 8px 0px 0px; overflow: visible; }
.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0px; directi=
on: rtl; }
.chzn-rtl .chzn-single div { left: 3px; right: auto; }
.chzn-rtl .chzn-single abbr { left: 26px; right: auto; }
.chzn-rtl .chzn-choices .search-field input { direction: rtl; }
.chzn-rtl .chzn-choices li { float: right; }
.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin:=
3px 5px 3px 0px; }
.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; ri=
ght: auto; }
.chzn-rtl.chzn-container-single .chzn-results { margin: 0px 0px 4px 4px; pa=
dding: 0px 4px 0px 0px; }
.chzn-rtl .chzn-results .group-option { padding-left: 0px; padding-right: 1=
5px; }
.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: =
none; }
.chzn-rtl .chzn-search input { background: url("/sheets/chosen/chosen-sprit=
e.png") -30px -20px no-repeat, linear-gradient(rgb(238, 238, 238) 1%, rgb(2=
55, 255, 255) 15%); padding: 4px 5px 4px 20px; direction: rtl; }
.chzn-container-single.chzn-rtl .chzn-single div b { background-position: 6=
px 2px; }
.chzn-container-single.chzn-rtl .chzn-single-with-drop div b { background-p=
osition: -12px 2px; }
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and=
(min-resolution: 144dpi) {
.chzn-container .chzn-results-scroll-down span, .chzn-container .chzn-res=
ults-scroll-up span, .chzn-container-multi .chzn-choices .search-choice .se=
arch-choice-close, .chzn-container-single .chzn-search input, .chzn-contain=
er-single .chzn-single abbr, .chzn-container-single .chzn-single div b, .ch=
zn-rtl .chzn-search input { background-image: url("/sheets/chosen/chosen-sp=
rite@2x.png") !important; background-repeat: no-repeat !important; backgrou=
nd-size: 52px 37px !important; }
}
.ui-state-highlight-order { background-color: rgb(255, 255, 153) !important=
; }
.ui-sortable-inserted-item.ui-state-highlight-order, .ui-sortable-inserted-=
item.ui-state-highlight-order.not_tipped { background-color: rgb(255, 255, =
153) !important; }
#wheelie_bin_email_document_form_email { display: none; }
.ui-sortable-inserted-item.not_tipped { background-color: rgb(213, 216, 141=
) !important; }
.time-range-group > div { display: inline-block; }
.time-range-group > div:last-child div.dlabel { width: auto; margin-left: 8=
pt; margin-right: 6pt; }
.access-violation-message { width: 380px; margin: 80px auto; font-size: 15p=
t; text-align: center; color: rgb(85, 85, 85); text-shadow: rgb(221, 221, 2=
21) 0px 1px 0px; }
button#show_more { margin-bottom: 10px; }
#reminders .myyard-form h2 { margin-bottom: 10px; }
h4 span.helper { margin: 2px 12px; padding: 0px 8px; position: relative; to=
p: -2px; }
.mfec input[type=3D"file"] { padding: 12px; background: rgb(238, 238, 238);=
border-radius: 6px; width: 284px; }
#footer-image-input-container .mfec input[type=3D"file"] { width: 339px; }
#passwords { margin-top: 14px; }
#passwords > div > label { display: inline-block; width: 200px; }
.list_container .gl-1 td { cursor: pointer; }
.map-outer-containers { overflow: hidden; margin-top: 10px; margin-bottom: =
-5px; }
#containers-map-button { margin-top: 10px; width: 100%; }
.popover_close { cursor: pointer; float: right; }
.popover { min-width: 250px; }
.jGrowl-notification .jGrowl-message { overflow-wrap: break-word; }
.hau_pick_up { background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); }
.hau_disposal { background-color: rgb(254, 254, 254); color: rgb(48, 165, 2=
04); }
.bin_pricing_history_legend_inactive { background-color: rgb(170, 170, 170)=
!important; }
.bulk_order_progress { width: 100%; }
.bulk_target_title { text-align: right; font-weight: 700; font-size: 11px; =
}
.bulk_progress { margin-bottom: 0px; height: 5px; }
.vote_buttons { margin-top: 10px; }
.badge.badge-wl { background-color: rgb(252, 176, 52); }
#gdpr_warn { text-align: left; }
#gdpr_warn p { margin: 13px 0px; }
#gdpr_warn p i { font-size: 10px; float: left; line-height: 24px; }
#gdpr_warn p b { margin: 0px 10px; }
#gdpr_warn a { color: rgb(199, 139, 41); }
#gdpr_warn a:hover { color: rgb(159, 110, 33); }
.environment { overflow: hidden; position: fixed; background-color: red; co=
lor: rgb(255, 255, 255); font-size: 14pt; top: 5px; right: 50%; z-index: 19=
; box-shadow: rgb(0, 0, 0) 0px 2px 3px; border-radius: 3px; }
.max_width_100 { max-width: 100px; }
.max_width_200 { max-width: 200px; }
.max_width_300 { max-width: 300px; }
.max_width_400 { max-width: 400px; }
.max_width_500 { max-width: 500px; }
.max_width_600 { max-width: 600px; }
.max_width_700 { max-width: 700px; }
.max_width_800 { max-width: 800px; }
.max_width_900 { max-width: 900px; }
.max_width_1000 { max-width: 1000px; }
.max_width_1100 { max-width: 1100px; }
.max_width_1200 { max-width: 1200px; }
.tally-po-details { margin: 0px 0px 1em 12.6em; }
.tally-progress { height: 5px; max-width: 220px; }
.tally-po-details .tally-progress { width: 220px; margin-top: 3px; margin-b=
ottom: 5px; height: 6px; }
.tally-po-header-container { display: flex; align-items: flex-end; justify-=
content: space-between; }
.tally-po-header-container form { width: 49%; }
.autocomplete .tally-progress { margin: 3px 0px 7px; }
.myyard-table-view .tally-progress { height: 3px; width: 90%; margin: 3px 0=
px 7px; }
#po_number_element .dlabel { margin-bottom: 3.3em; }
#tally_po_details_when_po_required { margin-top: -30px; }
#po_number_element p.help-block { position: absolute; width: 12em; line-hei=
ght: 1.3; margin-top: 5px; }
.mso_tbl { width: 100%; margin: 0px; }
.fc_nowrap .fc { white-space: nowrap; }
.customer-type-icon { padding: 2px; margin: 1px; border-radius: 2px; font-s=
ize: 0.9em; font-weight: 700; line-height: 12px; display: inline-block; use=
r-select: none; }
.customer-type-icon.account { background: rgb(206, 206, 206); }
.customer-type-icon.non-account { background: rgb(236, 115, 115); }
[class*=3D"custom-icon-"], [class^=3D"custom-icon-"] { font-style: normal; =
border: 1px solid rgb(204, 204, 204); border-radius: 50px; font-size: 11px;=
padding: 3px; margin-right: 3px; }
.custom-icon-sub::before { content: "SC"; }
.custom-icon-adc::before { content: "AC"; }
.nowrap { white-space: nowrap; }
.chzn_icon .chzn-container .chzn-drop { width: 78px !important; }
.chzn_icon .chzn-container { width: 80px !important; }
.chzn_icon .chzn-container-single .chzn-search { display: none; }
.chzn_icon i.icon-warning-sign { position: relative; top: -6px; }
.chzn_icon select.missing + div a { border: 1px solid rgb(202, 44, 41); }
.chzn_icon select.chosen { min-width: 80px !important; }
.fullscreen_mode { position: absolute; top: 0px; width: calc(100% - 10px); =
height: calc(100% - 10px); z-index: 200; padding: 5px; }
@-webkit-keyframes effect-buzz {=20
50% { transform: translateX(3px) rotate(2deg); }
100% { transform: translateX(-3px) rotate(-2deg); }
}
@keyframes effect-buzz {=20
50% { transform: translateX(3px) rotate(2deg); }
100% { transform: translateX(-3px) rotate(-2deg); }
}
.effect-buzz { display: inline-block; vertical-align: middle; transform: tr=
anslateZ(0px); box-shadow: transparent 0px 0px 1px; backface-visibility: hi=
dden; animation-name: effect-buzz; animation-duration: 0.15s; animation-tim=
ing-function: linear; animation-iteration-count: infinite; opacity: 1 !impo=
rtant; }
.tt-hr { width: 100% !important; margin: 0.5rem 0px !important; border-bott=
om: 1px solid !important; }
.text-danger-important { color: rgb(255, 38, 0) !important; }
.tooltip-value-td { text-align: right; padding: 0px 0.1rem 0.3rem; white-sp=
ace: nowrap; }
.tooltip-desc-td { text-align: left; padding: 0px 0.1rem 0.3rem; white-spac=
e: nowrap; }
.tooltip-value-td-underline { text-align: right; padding: 0.3rem 0.1rem 0px=
; white-space: nowrap; }
.tooltip-desc-td-underline { text-align: left; padding: 0.3rem 0.1rem 0px; =
white-space: nowrap; }
.background-inherit { background-color: inherit; }
.tr-hr { border-top: 1px solid rgb(255, 255, 255); }
.icon-account-credit.loading { opacity: 0.3; }
.dashboard-amcharts .chart-section { margin-bottom: 50px; }
.dashboard-amcharts .chart-section .title { float: left; width: 100%; text-=
align: center; font-weight: 700; font-size: 20px; }
.dashboard-amcharts .chart-section .title.hidden { display: none; }
.overlayed-pie-chart { width: 100%; height: 300px; visibility: visible; opa=
city: 1; transition: all 0.3s ease 0s; }
.overlayed-pie-chart.invisible { transform: scale(0.3, 0.3); visibility: hi=
dden; opacity: 0; }
.overlayed-pie-chart.sub { margin-top: -500px; }
.overlayed-pie-chart.sub.invisible { pointer-events: none; transform: scale=
(0.3, 0.3); visibility: hidden; opacity: 0; }
.chart-data-hidden { display: none !important; }
.chart-placeholder { transform: translateX(calc(50% - 50px)); display: flex=
; flex-direction: column; justify-content: center; min-height: 100%; font-s=
ize: 18px; }
.chart-placeholder-update { font-size: 18px; position: absolute; width: 100=
%; height: 100%; text-align: center; transform: translateY(calc(50% - 9px))=
; }
#chart-co2-materials-breakdown .amcharts-legend-div { max-height: 520px; ov=
erflow-y: auto !important; }
.month_year_datepicker .ui-datepicker-calendar { display: none; }
.hotkey { padding: 2px; border-radius: 2px; background: rgb(211, 211, 211);=
border: 1px solid rgb(183, 183, 183); font-size: 10px; color: rgb(0, 0, 0)=
; }
.content-tabs { display: block; margin: 0px; border-bottom: 1px solid rgb(2=
04, 204, 204); }
.content-tabs > li { display: inline-block; background: rgb(238, 238, 238);=
padding: 5px 15px; font-weight: 700; font-size: 14px; color: rgb(102, 102,=
102); }
.content-tabs > li:hover { cursor: pointer; background: rgb(221, 221, 221);=
}
.content-tabs > .active-tab { background: rgb(253, 190, 95); }
.content-tabs > li .icon-spinner { visibility: hidden; }
.content-tabs > li.is-loading .icon-spinner { visibility: visible; }
.number-slider { margin-top: 8px; float: left; }
.number-slider-value { margin-top: 5px; margin-left: 10px; float: left; tex=
t-align: center; }
.number-slider-value::after { content: ""; clear: both; }
.o_progress { border-radius: 100%; width: 10px; height: 10px; display: bloc=
k; }
.o_progress.progress-class-new { background-color: rgb(222, 226, 1); }
.o_progress.progress-class-printed { background-color: rgb(75, 79, 73); }
.o_progress.progress-class-issued { background-color: rgb(163, 28, 22); }
.o_progress.progress-class-on_site { background-color: rgb(125, 201, 206); =
}
.o_progress.progress-class-to_tip { background-color: rgb(15, 85, 210); }
.o_progress.progress-class-cleared { background-color: rgb(21, 161, 37); }
.o_progress.progress-class-unknown { background-color: rgb(187, 187, 187); =
}
#tbl_signoff table .row-fluid { min-width: 120px; padding-right: 10px; }
#tbl_signoff table .row-fluid [class*=3D"span"] { min-height: 20px; }
#tbl_signoff table .span4 { white-space: nowrap; }
#tbl_signoff table .span8 { line-height: 15px; }
#tbl_signoff table .chargesonly td { color: rgb(0, 153, 0); }
#tbl_signoff table .loadsignedoff td { color: rgb(159, 10, 10); }
.tso_issues_tooltip { color: rgb(204, 0, 0); font-size: 14px; }
.tso_issues_tooltip:hover { color: red; }
.inline_element { display: none; }
.inline_element input { border: 1px; }
@font-face { font-family: FontAwesome; src: url("../fonts/fontawesome-webfo=
nt.eot?#iefix&v=3D4.7.0") format("embedded-opentype"), url("../fonts/fontaw=
esome-webfont.woff2?v=3D4.7.0") format("woff2"), url("../fonts/fontawesome-=
webfont.woff?v=3D4.7.0") format("woff"), url("../fonts/fontawesome-webfont.=
ttf?v=3D4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=
=3D4.7.0#fontawesomeregular") format("svg"); font-weight: 400; font-style: =
normal; }
.fa { display: inline-block; font-style: normal; font-variant: normal; font=
-weight: normal; font-stretch: normal; line-height: 1; font-family: FontAwe=
some; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: ant=
ialiased; }
.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }
.fa-fw { width: 1.28571em; text-align: center; }
.fa-ul { padding-left: 0px; margin-left: 2.14286em; list-style-type: none; =
}
.fa-ul > li { position: relative; }
.fa-li { position: absolute; left: -2.14286em; width: 2.14286em; top: 0.142=
857em; text-align: center; }
.fa-li.fa-lg { left: -1.85714em; }
.fa-border { padding: 0.2em 0.25em 0.15em; border: 0.08em solid rgb(238, 23=
8, 238); border-radius: 0.1em; }
.fa-pull-left { float: left; }
.fa-pull-right { float: right; }
.fa.fa-pull-left { margin-right: 0.3em; }
.fa.fa-pull-right { margin-left: 0.3em; }
.pull-right { float: right; }
.pull-left { float: left; }
.fa.pull-left { margin-right: 0.3em; }
.fa.pull-right { margin-left: 0.3em; }
.fa-spin { animation: 2s linear 0s infinite normal none running fa-spin; }
.fa-pulse { animation: 1s steps(8, end) 0s infinite normal none running fa-=
spin; }
@-webkit-keyframes fa-spin {=20
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
@keyframes fa-spin {=20
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
.fa-rotate-90 { transform: rotate(90deg); }
.fa-rotate-180 { transform: rotate(180deg); }
.fa-rotate-270 { transform: rotate(270deg); }
.fa-flip-horizontal { transform: scale(-1, 1); }
.fa-flip-vertical { transform: scale(1, -1); }
:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :=
root .fa-rotate-270, :root .fa-rotate-90 { filter: none; }
.fa-stack { position: relative; display: inline-block; width: 2em; height: =
2em; line-height: 2em; vertical-align: middle; }
.fa-stack-1x, .fa-stack-2x { position: absolute; left: 0px; width: 100%; te=
xt-align: center; }
.fa-stack-1x { line-height: inherit; }
.fa-stack-2x { font-size: 2em; }
.fa-inverse { color: rgb(255, 255, 255); }
.fa-glass::before { content: "=EF=80=80"; }
.fa-music::before { content: "=EF=80=81"; }
.fa-search::before { content: "=EF=80=82"; }
.fa-envelope-o::before { content: "=EF=80=83"; }
.fa-heart::before { content: "=EF=80=84"; }
.fa-star::before { content: "=EF=80=85"; }
.fa-star-o::before { content: "=EF=80=86"; }
.fa-user::before { content: "=EF=80=87"; }
.fa-film::before { content: "=EF=80=88"; }
.fa-th-large::before { content: "=EF=80=89"; }
.fa-th::before { content: "=EF=80=8A"; }
.fa-th-list::before { content: "=EF=80=8B"; }
.fa-check::before { content: "=EF=80=8C"; }
.fa-close::before, .fa-remove::before, .fa-times::before { content: "=EF=80=
=8D"; }
.fa-search-plus::before { content: "=EF=80=8E"; }
.fa-search-minus::before { content: "=EF=80=90"; }
.fa-power-off::before { content: "=EF=80=91"; }
.fa-signal::before { content: "=EF=80=92"; }
.fa-cog::before, .fa-gear::before { content: "=EF=80=93"; }
.fa-trash-o::before { content: "=EF=80=94"; }
.fa-home::before { content: "=EF=80=95"; }
.fa-file-o::before { content: "=EF=80=96"; }
.fa-clock-o::before { content: "=EF=80=97"; }
.fa-road::before { content: "=EF=80=98"; }
.fa-download::before { content: "=EF=80=99"; }
.fa-arrow-circle-o-down::before { content: "=EF=80=9A"; }
.fa-arrow-circle-o-up::before { content: "=EF=80=9B"; }
.fa-inbox::before { content: "=EF=80=9C"; }
.fa-play-circle-o::before { content: "=EF=80=9D"; }
.fa-repeat::before, .fa-rotate-right::before { content: "=EF=80=9E"; }
.fa-refresh::before { content: "=EF=80=A1"; }
.fa-list-alt::before { content: "=EF=80=A2"; }
.fa-lock::before { content: "=EF=80=A3"; }
.fa-flag::before { content: "=EF=80=A4"; }
.fa-headphones::before { content: "=EF=80=A5"; }
.fa-volume-off::before { content: "=EF=80=A6"; }
.fa-volume-down::before { content: "=EF=80=A7"; }
.fa-volume-up::before { content: "=EF=80=A8"; }
.fa-qrcode::before { content: "=EF=80=A9"; }
.fa-barcode::before { content: "=EF=80=AA"; }
.fa-tag::before { content: "=EF=80=AB"; }
.fa-tags::before { content: "=EF=80=AC"; }
.fa-book::before { content: "=EF=80=AD"; }
.fa-bookmark::before { content: "=EF=80=AE"; }
.fa-print::before { content: "=EF=80=AF"; }
.fa-camera::before { content: "=EF=80=B0"; }
.fa-font::before { content: "=EF=80=B1"; }
.fa-bold::before { content: "=EF=80=B2"; }
.fa-italic::before { content: "=EF=80=B3"; }
.fa-text-height::before { content: "=EF=80=B4"; }
.fa-text-width::before { content: "=EF=80=B5"; }
.fa-align-left::before { content: "=EF=80=B6"; }
.fa-align-center::before { content: "=EF=80=B7"; }
.fa-align-right::before { content: "=EF=80=B8"; }
.fa-align-justify::before { content: "=EF=80=B9"; }
.fa-list::before { content: "=EF=80=BA"; }
.fa-dedent::before, .fa-outdent::before { content: "=EF=80=BB"; }
.fa-indent::before { content: "=EF=80=BC"; }
.fa-video-camera::before { content: "=EF=80=BD"; }
.fa-image::before, .fa-photo::before, .fa-picture-o::before { content: "=EF=
=80=BE"; }
.fa-pencil::before { content: "=EF=81=80"; }
.fa-map-marker::before { content: "=EF=81=81"; }
.fa-adjust::before { content: "=EF=81=82"; }
.fa-tint::before { content: "=EF=81=83"; }
.fa-edit::before, .fa-pencil-square-o::before { content: "=EF=81=84"; }
.fa-share-square-o::before { content: "=EF=81=85"; }
.fa-check-square-o::before { content: "=EF=81=86"; }
.fa-arrows::before { content: "=EF=81=87"; }
.fa-step-backward::before { content: "=EF=81=88"; }
.fa-fast-backward::before { content: "=EF=81=89"; }
.fa-backward::before { content: "=EF=81=8A"; }
.fa-play::before { content: "=EF=81=8B"; }
.fa-pause::before { content: "=EF=81=8C"; }
.fa-stop::before { content: "=EF=81=8D"; }
.fa-forward::before { content: "=EF=81=8E"; }
.fa-fast-forward::before { content: "=EF=81=90"; }
.fa-step-forward::before { content: "=EF=81=91"; }
.fa-eject::before { content: "=EF=81=92"; }
.fa-chevron-left::before { content: "=EF=81=93"; }
.fa-chevron-right::before { content: "=EF=81=94"; }
.fa-plus-circle::before { content: "=EF=81=95"; }
.fa-minus-circle::before { content: "=EF=81=96"; }
.fa-times-circle::before { content: "=EF=81=97"; }
.fa-check-circle::before { content: "=EF=81=98"; }
.fa-question-circle::before { content: "=EF=81=99"; }
.fa-info-circle::before { content: "=EF=81=9A"; }
.fa-crosshairs::before { content: "=EF=81=9B"; }
.fa-times-circle-o::before { content: "=EF=81=9C"; }
.fa-check-circle-o::before { content: "=EF=81=9D"; }
.fa-ban::before { content: "=EF=81=9E"; }
.fa-arrow-left::before { content: "=EF=81=A0"; }
.fa-arrow-right::before { content: "=EF=81=A1"; }
.fa-arrow-up::before { content: "=EF=81=A2"; }
.fa-arrow-down::before { content: "=EF=81=A3"; }
.fa-mail-forward::before, .fa-share::before { content: "=EF=81=A4"; }
.fa-expand::before { content: "=EF=81=A5"; }
.fa-compress::before { content: "=EF=81=A6"; }
.fa-plus::before { content: "=EF=81=A7"; }
.fa-minus::before { content: "=EF=81=A8"; }
.fa-asterisk::before { content: "=EF=81=A9"; }
.fa-exclamation-circle::before { content: "=EF=81=AA"; }
.fa-gift::before { content: "=EF=81=AB"; }
.fa-leaf::before { content: "=EF=81=AC"; }
.fa-fire::before { content: "=EF=81=AD"; }
.fa-eye::before { content: "=EF=81=AE"; }
.fa-eye-slash::before { content: "=EF=81=B0"; }
.fa-exclamation-triangle::before, .fa-warning::before { content: "=EF=81=B1=
"; }
.fa-plane::before { content: "=EF=81=B2"; }
.fa-calendar::before { content: "=EF=81=B3"; }
.fa-random::before { content: "=EF=81=B4"; }
.fa-comment::before { content: "=EF=81=B5"; }
.fa-magnet::before { content: "=EF=81=B6"; }
.fa-chevron-up::before { content: "=EF=81=B7"; }
.fa-chevron-down::before { content: "=EF=81=B8"; }
.fa-retweet::before { content: "=EF=81=B9"; }
.fa-shopping-cart::before { content: "=EF=81=BA"; }
.fa-folder::before { content: "=EF=81=BB"; }
.fa-folder-open::before { content: "=EF=81=BC"; }
.fa-arrows-v::before { content: "=EF=81=BD"; }
.fa-arrows-h::before { content: "=EF=81=BE"; }
.fa-bar-chart-o::before, .fa-bar-chart::before { content: "=EF=82=80"; }
.fa-twitter-square::before { content: "=EF=82=81"; }
.fa-facebook-square::before { content: "=EF=82=82"; }
.fa-camera-retro::before { content: "=EF=82=83"; }
.fa-key::before { content: "=EF=82=84"; }
.fa-cogs::before, .fa-gears::before { content: "=EF=82=85"; }
.fa-comments::before { content: "=EF=82=86"; }
.fa-thumbs-o-up::before { content: "=EF=82=87"; }
.fa-thumbs-o-down::before { content: "=EF=82=88"; }
.fa-star-half::before { content: "=EF=82=89"; }
.fa-heart-o::before { content: "=EF=82=8A"; }
.fa-sign-out::before { content: "=EF=82=8B"; }
.fa-linkedin-square::before { content: "=EF=82=8C"; }
.fa-thumb-tack::before { content: "=EF=82=8D"; }
.fa-external-link::before { content: "=EF=82=8E"; }
.fa-sign-in::before { content: "=EF=82=90"; }
.fa-trophy::before { content: "=EF=82=91"; }
.fa-github-square::before { content: "=EF=82=92"; }
.fa-upload::before { content: "=EF=82=93"; }
.fa-lemon-o::before { content: "=EF=82=94"; }
.fa-phone::before { content: "=EF=82=95"; }
.fa-square-o::before { content: "=EF=82=96"; }
.fa-bookmark-o::before { content: "=EF=82=97"; }
.fa-phone-square::before { content: "=EF=82=98"; }
.fa-twitter::before { content: "=EF=82=99"; }
.fa-facebook-f::before, .fa-facebook::before { content: "=EF=82=9A"; }
.fa-github::before { content: "=EF=82=9B"; }
.fa-unlock::before { content: "=EF=82=9C"; }
.fa-credit-card::before { content: "=EF=82=9D"; }
.fa-feed::before, .fa-rss::before { content: "=EF=82=9E"; }
.fa-hdd-o::before { content: "=EF=82=A0"; }
.fa-bullhorn::before { content: "=EF=82=A1"; }
.fa-bell::before { content: "=EF=83=B3"; }
.fa-certificate::before { content: "=EF=82=A3"; }
.fa-hand-o-right::before { content: "=EF=82=A4"; }
.fa-hand-o-left::before { content: "=EF=82=A5"; }
.fa-hand-o-up::before { content: "=EF=82=A6"; }
.fa-hand-o-down::before { content: "=EF=82=A7"; }
.fa-arrow-circle-left::before { content: "=EF=82=A8"; }
.fa-arrow-circle-right::before { content: "=EF=82=A9"; }
.fa-arrow-circle-up::before { content: "=EF=82=AA"; }
.fa-arrow-circle-down::before { content: "=EF=82=AB"; }
.fa-globe::before { content: "=EF=82=AC"; }
.fa-wrench::before { content: "=EF=82=AD"; }
.fa-tasks::before { content: "=EF=82=AE"; }
.fa-filter::before { content: "=EF=82=B0"; }
.fa-briefcase::before { content: "=EF=82=B1"; }
.fa-arrows-alt::before { content: "=EF=82=B2"; }
.fa-group::before, .fa-users::before { content: "=EF=83=80"; }
.fa-chain::before, .fa-link::before { content: "=EF=83=81"; }
.fa-cloud::before { content: "=EF=83=82"; }
.fa-flask::before { content: "=EF=83=83"; }
.fa-cut::before, .fa-scissors::before { content: "=EF=83=84"; }
.fa-copy::before, .fa-files-o::before { content: "=EF=83=85"; }
.fa-paperclip::before { content: "=EF=83=86"; }
.fa-floppy-o::before, .fa-save::before { content: "=EF=83=87"; }
.fa-square::before { content: "=EF=83=88"; }
.fa-bars::before, .fa-navicon::before, .fa-reorder::before { content: "=EF=
=83=89"; }
.fa-list-ul::before { content: "=EF=83=8A"; }
.fa-list-ol::before { content: "=EF=83=8B"; }
.fa-strikethrough::before { content: "=EF=83=8C"; }
.fa-underline::before { content: "=EF=83=8D"; }
.fa-table::before { content: "=EF=83=8E"; }
.fa-magic::before { content: "=EF=83=90"; }
.fa-truck::before { content: "=EF=83=91"; }
.fa-pinterest::before { content: "=EF=83=92"; }
.fa-pinterest-square::before { content: "=EF=83=93"; }
.fa-google-plus-square::before { content: "=EF=83=94"; }
.fa-google-plus::before { content: "=EF=83=95"; }
.fa-money::before { content: "=EF=83=96"; }
.fa-caret-down::before { content: "=EF=83=97"; }
.fa-caret-up::before { content: "=EF=83=98"; }
.fa-caret-left::before { content: "=EF=83=99"; }
.fa-caret-right::before { content: "=EF=83=9A"; }
.fa-columns::before { content: "=EF=83=9B"; }
.fa-sort::before, .fa-unsorted::before { content: "=EF=83=9C"; }
.fa-sort-desc::before, .fa-sort-down::before { content: "=EF=83=9D"; }
.fa-sort-asc::before, .fa-sort-up::before { content: "=EF=83=9E"; }
.fa-envelope::before { content: "=EF=83=A0"; }
.fa-linkedin::before { content: "=EF=83=A1"; }
.fa-rotate-left::before, .fa-undo::before { content: "=EF=83=A2"; }
.fa-gavel::before, .fa-legal::before { content: "=EF=83=A3"; }
.fa-dashboard::before, .fa-tachometer::before { content: "=EF=83=A4"; }
.fa-comment-o::before { content: "=EF=83=A5"; }
.fa-comments-o::before { content: "=EF=83=A6"; }
.fa-bolt::before, .fa-flash::before { content: "=EF=83=A7"; }
.fa-sitemap::before { content: "=EF=83=A8"; }
.fa-umbrella::before { content: "=EF=83=A9"; }
.fa-clipboard::before, .fa-paste::before { content: "=EF=83=AA"; }
.fa-lightbulb-o::before { content: "=EF=83=AB"; }
.fa-exchange::before { content: "=EF=83=AC"; }
.fa-cloud-download::before { content: "=EF=83=AD"; }
.fa-cloud-upload::before { content: "=EF=83=AE"; }
.fa-user-md::before { content: "=EF=83=B0"; }
.fa-stethoscope::before { content: "=EF=83=B1"; }
.fa-suitcase::before { content: "=EF=83=B2"; }
.fa-bell-o::before { content: "=EF=82=A2"; }
.fa-coffee::before { content: "=EF=83=B4"; }
.fa-cutlery::before { content: "=EF=83=B5"; }
.fa-file-text-o::before { content: "=EF=83=B6"; }
.fa-building-o::before { content: "=EF=83=B7"; }
.fa-hospital-o::before { content: "=EF=83=B8"; }
.fa-ambulance::before { content: "=EF=83=B9"; }
.fa-medkit::before { content: "=EF=83=BA"; }
.fa-fighter-jet::before { content: "=EF=83=BB"; }
.fa-beer::before { content: "=EF=83=BC"; }
.fa-h-square::before { content: "=EF=83=BD"; }
.fa-plus-square::before { content: "=EF=83=BE"; }
.fa-angle-double-left::before { content: "=EF=84=80"; }
.fa-angle-double-right::before { content: "=EF=84=81"; }
.fa-angle-double-up::before { content: "=EF=84=82"; }
.fa-angle-double-down::before { content: "=EF=84=83"; }
.fa-angle-left::before { content: "=EF=84=84"; }
.fa-angle-right::before { content: "=EF=84=85"; }
.fa-angle-up::before { content: "=EF=84=86"; }
.fa-angle-down::before { content: "=EF=84=87"; }
.fa-desktop::before { content: "=EF=84=88"; }
.fa-laptop::before { content: "=EF=84=89"; }
.fa-tablet::before { content: "=EF=84=8A"; }
.fa-mobile-phone::before, .fa-mobile::before { content: "=EF=84=8B"; }
.fa-circle-o::before { content: "=EF=84=8C"; }
.fa-quote-left::before { content: "=EF=84=8D"; }
.fa-quote-right::before { content: "=EF=84=8E"; }
.fa-spinner::before { content: "=EF=84=90"; }
.fa-circle::before { content: "=EF=84=91"; }
.fa-mail-reply::before, .fa-reply::before { content: "=EF=84=92"; }
.fa-github-alt::before { content: "=EF=84=93"; }
.fa-folder-o::before { content: "=EF=84=94"; }
.fa-folder-open-o::before { content: "=EF=84=95"; }
.fa-smile-o::before { content: "=EF=84=98"; }
.fa-frown-o::before { content: "=EF=84=99"; }
.fa-meh-o::before { content: "=EF=84=9A"; }
.fa-gamepad::before { content: "=EF=84=9B"; }
.fa-keyboard-o::before { content: "=EF=84=9C"; }
.fa-flag-o::before { content: "=EF=84=9D"; }
.fa-flag-checkered::before { content: "=EF=84=9E"; }
.fa-terminal::before { content: "=EF=84=A0"; }
.fa-code::before { content: "=EF=84=A1"; }
.fa-mail-reply-all::before, .fa-reply-all::before { content: "=EF=84=A2"; }
.fa-star-half-empty::before, .fa-star-half-full::before, .fa-star-half-o::b=
efore { content: "=EF=84=A3"; }
.fa-location-arrow::before { content: "=EF=84=A4"; }
.fa-crop::before { content: "=EF=84=A5"; }
.fa-code-fork::before { content: "=EF=84=A6"; }
.fa-chain-broken::before, .fa-unlink::before { content: "=EF=84=A7"; }
.fa-question::before { content: "=EF=84=A8"; }
.fa-info::before { content: "=EF=84=A9"; }
.fa-exclamation::before { content: "=EF=84=AA"; }
.fa-superscript::before { content: "=EF=84=AB"; }
.fa-subscript::before { content: "=EF=84=AC"; }
.fa-eraser::before { content: "=EF=84=AD"; }
.fa-puzzle-piece::before { content: "=EF=84=AE"; }
.fa-microphone::before { content: "=EF=84=B0"; }
.fa-microphone-slash::before { content: "=EF=84=B1"; }
.fa-shield::before { content: "=EF=84=B2"; }
.fa-calendar-o::before { content: "=EF=84=B3"; }
.fa-fire-extinguisher::before { content: "=EF=84=B4"; }
.fa-rocket::before { content: "=EF=84=B5"; }
.fa-maxcdn::before { content: "=EF=84=B6"; }
.fa-chevron-circle-left::before { content: "=EF=84=B7"; }
.fa-chevron-circle-right::before { content: "=EF=84=B8"; }
.fa-chevron-circle-up::before { content: "=EF=84=B9"; }
.fa-chevron-circle-down::before { content: "=EF=84=BA"; }
.fa-html5::before { content: "=EF=84=BB"; }
.fa-css3::before { content: "=EF=84=BC"; }
.fa-anchor::before { content: "=EF=84=BD"; }
.fa-unlock-alt::before { content: "=EF=84=BE"; }
.fa-bullseye::before { content: "=EF=85=80"; }
.fa-ellipsis-h::before { content: "=EF=85=81"; }
.fa-ellipsis-v::before { content: "=EF=85=82"; }
.fa-rss-square::before { content: "=EF=85=83"; }
.fa-play-circle::before { content: "=EF=85=84"; }
.fa-ticket::before { content: "=EF=85=85"; }
.fa-minus-square::before { content: "=EF=85=86"; }
.fa-minus-square-o::before { content: "=EF=85=87"; }
.fa-level-up::before { content: "=EF=85=88"; }
.fa-level-down::before { content: "=EF=85=89"; }
.fa-check-square::before { content: "=EF=85=8A"; }
.fa-pencil-square::before { content: "=EF=85=8B"; }
.fa-external-link-square::before { content: "=EF=85=8C"; }
.fa-share-square::before { content: "=EF=85=8D"; }
.fa-compass::before { content: "=EF=85=8E"; }
.fa-caret-square-o-down::before, .fa-toggle-down::before { content: "=EF=85=
=90"; }
.fa-caret-square-o-up::before, .fa-toggle-up::before { content: "=EF=85=91"=
; }
.fa-caret-square-o-right::before, .fa-toggle-right::before { content: "=EF=
=85=92"; }
.fa-eur::before, .fa-euro::before { content: "=EF=85=93"; }
.fa-gbp::before { content: "=EF=85=94"; }
.fa-dollar::before, .fa-usd::before { content: "=EF=85=95"; }
.fa-inr::before, .fa-rupee::before { content: "=EF=85=96"; }
.fa-cny::before, .fa-jpy::before, .fa-rmb::before, .fa-yen::before { conten=
t: "=EF=85=97"; }
.fa-rouble::before, .fa-rub::before, .fa-ruble::before { content: "=EF=85=
=98"; }
.fa-krw::before, .fa-won::before { content: "=EF=85=99"; }
.fa-bitcoin::before, .fa-btc::before { content: "=EF=85=9A"; }
.fa-file::before { content: "=EF=85=9B"; }
.fa-file-text::before { content: "=EF=85=9C"; }
.fa-sort-alpha-asc::before { content: "=EF=85=9D"; }
.fa-sort-alpha-desc::before { content: "=EF=85=9E"; }
.fa-sort-amount-asc::before { content: "=EF=85=A0"; }
.fa-sort-amount-desc::before { content: "=EF=85=A1"; }
.fa-sort-numeric-asc::before { content: "=EF=85=A2"; }
.fa-sort-numeric-desc::before { content: "=EF=85=A3"; }
.fa-thumbs-up::before { content: "=EF=85=A4"; }
.fa-thumbs-down::before { content: "=EF=85=A5"; }
.fa-youtube-square::before { content: "=EF=85=A6"; }
.fa-youtube::before { content: "=EF=85=A7"; }
.fa-xing::before { content: "=EF=85=A8"; }
.fa-xing-square::before { content: "=EF=85=A9"; }
.fa-youtube-play::before { content: "=EF=85=AA"; }
.fa-dropbox::before { content: "=EF=85=AB"; }
.fa-stack-overflow::before { content: "=EF=85=AC"; }
.fa-instagram::before { content: "=EF=85=AD"; }
.fa-flickr::before { content: "=EF=85=AE"; }
.fa-adn::before { content: "=EF=85=B0"; }
.fa-bitbucket::before { content: "=EF=85=B1"; }
.fa-bitbucket-square::before { content: "=EF=85=B2"; }
.fa-tumblr::before { content: "=EF=85=B3"; }
.fa-tumblr-square::before { content: "=EF=85=B4"; }
.fa-long-arrow-down::before { content: "=EF=85=B5"; }
.fa-long-arrow-up::before { content: "=EF=85=B6"; }
.fa-long-arrow-left::before { content: "=EF=85=B7"; }
.fa-long-arrow-right::before { content: "=EF=85=B8"; }
.fa-apple::before { content: "=EF=85=B9"; }
.fa-windows::before { content: "=EF=85=BA"; }
.fa-android::before { content: "=EF=85=BB"; }
.fa-linux::before { content: "=EF=85=BC"; }
.fa-dribbble::before { content: "=EF=85=BD"; }
.fa-skype::before { content: "=EF=85=BE"; }
.fa-foursquare::before { content: "=EF=86=80"; }
.fa-trello::before { content: "=EF=86=81"; }
.fa-female::before { content: "=EF=86=82"; }
.fa-male::before { content: "=EF=86=83"; }
.fa-gittip::before, .fa-gratipay::before { content: "=EF=86=84"; }
.fa-sun-o::before { content: "=EF=86=85"; }
.fa-moon-o::before { content: "=EF=86=86"; }
.fa-archive::before { content: "=EF=86=87"; }
.fa-bug::before { content: "=EF=86=88"; }
.fa-vk::before { content: "=EF=86=89"; }
.fa-weibo::before { content: "=EF=86=8A"; }
.fa-renren::before { content: "=EF=86=8B"; }
.fa-pagelines::before { content: "=EF=86=8C"; }
.fa-stack-exchange::before { content: "=EF=86=8D"; }
.fa-arrow-circle-o-right::before { content: "=EF=86=8E"; }
.fa-arrow-circle-o-left::before { content: "=EF=86=90"; }
.fa-caret-square-o-left::before, .fa-toggle-left::before { content: "=EF=86=
=91"; }
.fa-dot-circle-o::before { content: "=EF=86=92"; }
.fa-wheelchair::before { content: "=EF=86=93"; }
.fa-vimeo-square::before { content: "=EF=86=94"; }
.fa-try::before, .fa-turkish-lira::before { content: "=EF=86=95"; }
.fa-plus-square-o::before { content: "=EF=86=96"; }
.fa-space-shuttle::before { content: "=EF=86=97"; }
.fa-slack::before { content: "=EF=86=98"; }
.fa-envelope-square::before { content: "=EF=86=99"; }
.fa-wordpress::before { content: "=EF=86=9A"; }
.fa-openid::before { content: "=EF=86=9B"; }
.fa-bank::before, .fa-institution::before, .fa-university::before { content=
: "=EF=86=9C"; }
.fa-graduation-cap::before, .fa-mortar-board::before { content: "=EF=86=9D"=
; }
.fa-yahoo::before { content: "=EF=86=9E"; }
.fa-google::before { content: "=EF=86=A0"; }
.fa-reddit::before { content: "=EF=86=A1"; }
.fa-reddit-square::before { content: "=EF=86=A2"; }
.fa-stumbleupon-circle::before { content: "=EF=86=A3"; }
.fa-stumbleupon::before { content: "=EF=86=A4"; }
.fa-delicious::before { content: "=EF=86=A5"; }
.fa-digg::before { content: "=EF=86=A6"; }
.fa-pied-piper-pp::before { content: "=EF=86=A7"; }
.fa-pied-piper-alt::before { content: "=EF=86=A8"; }
.fa-drupal::before { content: "=EF=86=A9"; }
.fa-joomla::before { content: "=EF=86=AA"; }
.fa-language::before { content: "=EF=86=AB"; }
.fa-fax::before { content: "=EF=86=AC"; }
.fa-building::before { content: "=EF=86=AD"; }
.fa-child::before { content: "=EF=86=AE"; }
.fa-paw::before { content: "=EF=86=B0"; }
.fa-spoon::before { content: "=EF=86=B1"; }
.fa-cube::before { content: "=EF=86=B2"; }
.fa-cubes::before { content: "=EF=86=B3"; }
.fa-behance::before { content: "=EF=86=B4"; }
.fa-behance-square::before { content: "=EF=86=B5"; }
.fa-steam::before { content: "=EF=86=B6"; }
.fa-steam-square::before { content: "=EF=86=B7"; }
.fa-recycle::before { content: "=EF=86=B8"; }
.fa-automobile::before, .fa-car::before { content: "=EF=86=B9"; }
.fa-cab::before, .fa-taxi::before { content: "=EF=86=BA"; }
.fa-tree::before { content: "=EF=86=BB"; }
.fa-spotify::before { content: "=EF=86=BC"; }
.fa-deviantart::before { content: "=EF=86=BD"; }
.fa-soundcloud::before { content: "=EF=86=BE"; }
.fa-database::before { content: "=EF=87=80"; }
.fa-file-pdf-o::before { content: "=EF=87=81"; }
.fa-file-word-o::before { content: "=EF=87=82"; }
.fa-file-excel-o::before { content: "=EF=87=83"; }
.fa-file-powerpoint-o::before { content: "=EF=87=84"; }
.fa-file-image-o::before, .fa-file-photo-o::before, .fa-file-picture-o::bef=
ore { content: "=EF=87=85"; }
.fa-file-archive-o::before, .fa-file-zip-o::before { content: "=EF=87=86"; =
}
.fa-file-audio-o::before, .fa-file-sound-o::before { content: "=EF=87=87"; =
}
.fa-file-movie-o::before, .fa-file-video-o::before { content: "=EF=87=88"; =
}
.fa-file-code-o::before { content: "=EF=87=89"; }
.fa-vine::before { content: "=EF=87=8A"; }
.fa-codepen::before { content: "=EF=87=8B"; }
.fa-jsfiddle::before { content: "=EF=87=8C"; }
.fa-life-bouy::before, .fa-life-buoy::before, .fa-life-ring::before, .fa-li=
fe-saver::before, .fa-support::before { content: "=EF=87=8D"; }
.fa-circle-o-notch::before { content: "=EF=87=8E"; }
.fa-ra::before, .fa-rebel::before, .fa-resistance::before { content: "=EF=
=87=90"; }
.fa-empire::before, .fa-ge::before { content: "=EF=87=91"; }
.fa-git-square::before { content: "=EF=87=92"; }
.fa-git::before { content: "=EF=87=93"; }
.fa-hacker-news::before, .fa-y-combinator-square::before, .fa-yc-square::be=
fore { content: "=EF=87=94"; }
.fa-tencent-weibo::before { content: "=EF=87=95"; }
.fa-qq::before { content: "=EF=87=96"; }
.fa-wechat::before, .fa-weixin::before { content: "=EF=87=97"; }
.fa-paper-plane::before, .fa-send::before { content: "=EF=87=98"; }
.fa-paper-plane-o::before, .fa-send-o::before { content: "=EF=87=99"; }
.fa-history::before { content: "=EF=87=9A"; }
.fa-circle-thin::before { content: "=EF=87=9B"; }
.fa-header::before { content: "=EF=87=9C"; }
.fa-paragraph::before { content: "=EF=87=9D"; }
.fa-sliders::before { content: "=EF=87=9E"; }
.fa-share-alt::before { content: "=EF=87=A0"; }
.fa-share-alt-square::before { content: "=EF=87=A1"; }
.fa-bomb::before { content: "=EF=87=A2"; }
.fa-futbol-o::before, .fa-soccer-ball-o::before { content: "=EF=87=A3"; }
.fa-tty::before { content: "=EF=87=A4"; }
.fa-binoculars::before { content: "=EF=87=A5"; }
.fa-plug::before { content: "=EF=87=A6"; }
.fa-slideshare::before { content: "=EF=87=A7"; }
.fa-twitch::before { content: "=EF=87=A8"; }
.fa-yelp::before { content: "=EF=87=A9"; }
.fa-newspaper-o::before { content: "=EF=87=AA"; }
.fa-wifi::before { content: "=EF=87=AB"; }
.fa-calculator::before { content: "=EF=87=AC"; }
.fa-paypal::before { content: "=EF=87=AD"; }
.fa-google-wallet::before { content: "=EF=87=AE"; }
.fa-cc-visa::before { content: "=EF=87=B0"; }
.fa-cc-mastercard::before { content: "=EF=87=B1"; }
.fa-cc-discover::before { content: "=EF=87=B2"; }
.fa-cc-amex::before { content: "=EF=87=B3"; }
.fa-cc-paypal::before { content: "=EF=87=B4"; }
.fa-cc-stripe::before { content: "=EF=87=B5"; }
.fa-bell-slash::before { content: "=EF=87=B6"; }
.fa-bell-slash-o::before { content: "=EF=87=B7"; }
.fa-trash::before { content: "=EF=87=B8"; }
.fa-copyright::before { content: "=EF=87=B9"; }
.fa-at::before { content: "=EF=87=BA"; }
.fa-eyedropper::before { content: "=EF=87=BB"; }
.fa-paint-brush::before { content: "=EF=87=BC"; }
.fa-birthday-cake::before { content: "=EF=87=BD"; }
.fa-area-chart::before { content: "=EF=87=BE"; }
.fa-pie-chart::before { content: "=EF=88=80"; }
.fa-line-chart::before { content: "=EF=88=81"; }
.fa-lastfm::before { content: "=EF=88=82"; }
.fa-lastfm-square::before { content: "=EF=88=83"; }
.fa-toggle-off::before { content: "=EF=88=84"; }
.fa-toggle-on::before { content: "=EF=88=85"; }
.fa-bicycle::before { content: "=EF=88=86"; }
.fa-bus::before { content: "=EF=88=87"; }
.fa-ioxhost::before { content: "=EF=88=88"; }
.fa-angellist::before { content: "=EF=88=89"; }
.fa-cc::before { content: "=EF=88=8A"; }
.fa-ils::before, .fa-shekel::before, .fa-sheqel::before { content: "=EF=88=
=8B"; }
.fa-meanpath::before { content: "=EF=88=8C"; }
.fa-buysellads::before { content: "=EF=88=8D"; }
.fa-connectdevelop::before { content: "=EF=88=8E"; }
.fa-dashcube::before { content: "=EF=88=90"; }
.fa-forumbee::before { content: "=EF=88=91"; }
.fa-leanpub::before { content: "=EF=88=92"; }
.fa-sellsy::before { content: "=EF=88=93"; }
.fa-shirtsinbulk::before { content: "=EF=88=94"; }
.fa-simplybuilt::before { content: "=EF=88=95"; }
.fa-skyatlas::before { content: "=EF=88=96"; }
.fa-cart-plus::before { content: "=EF=88=97"; }
.fa-cart-arrow-down::before { content: "=EF=88=98"; }
.fa-diamond::before { content: "=EF=88=99"; }
.fa-ship::before { content: "=EF=88=9A"; }
.fa-user-secret::before { content: "=EF=88=9B"; }
.fa-motorcycle::before { content: "=EF=88=9C"; }
.fa-street-view::before { content: "=EF=88=9D"; }
.fa-heartbeat::before { content: "=EF=88=9E"; }
.fa-venus::before { content: "=EF=88=A1"; }
.fa-mars::before { content: "=EF=88=A2"; }
.fa-mercury::before { content: "=EF=88=A3"; }
.fa-intersex::before, .fa-transgender::before { content: "=EF=88=A4"; }
.fa-transgender-alt::before { content: "=EF=88=A5"; }
.fa-venus-double::before { content: "=EF=88=A6"; }
.fa-mars-double::before { content: "=EF=88=A7"; }
.fa-venus-mars::before { content: "=EF=88=A8"; }
.fa-mars-stroke::before { content: "=EF=88=A9"; }
.fa-mars-stroke-v::before { content: "=EF=88=AA"; }
.fa-mars-stroke-h::before { content: "=EF=88=AB"; }
.fa-neuter::before { content: "=EF=88=AC"; }
.fa-genderless::before { content: "=EF=88=AD"; }
.fa-facebook-official::before { content: "=EF=88=B0"; }
.fa-pinterest-p::before { content: "=EF=88=B1"; }
.fa-whatsapp::before { content: "=EF=88=B2"; }
.fa-server::before { content: "=EF=88=B3"; }
.fa-user-plus::before { content: "=EF=88=B4"; }
.fa-user-times::before { content: "=EF=88=B5"; }
.fa-bed::before, .fa-hotel::before { content: "=EF=88=B6"; }
.fa-viacoin::before { content: "=EF=88=B7"; }
.fa-train::before { content: "=EF=88=B8"; }
.fa-subway::before { content: "=EF=88=B9"; }
.fa-medium::before { content: "=EF=88=BA"; }
.fa-y-combinator::before, .fa-yc::before { content: "=EF=88=BB"; }
.fa-optin-monster::before { content: "=EF=88=BC"; }
.fa-opencart::before { content: "=EF=88=BD"; }
.fa-expeditedssl::before { content: "=EF=88=BE"; }
.fa-battery-4::before, .fa-battery-full::before, .fa-battery::before { cont=
ent: "=EF=89=80"; }
.fa-battery-3::before, .fa-battery-three-quarters::before { content: "=EF=
=89=81"; }
.fa-battery-2::before, .fa-battery-half::before { content: "=EF=89=82"; }
.fa-battery-1::before, .fa-battery-quarter::before { content: "=EF=89=83"; =
}
.fa-battery-0::before, .fa-battery-empty::before { content: "=EF=89=84"; }
.fa-mouse-pointer::before { content: "=EF=89=85"; }
.fa-i-cursor::before { content: "=EF=89=86"; }
.fa-object-group::before { content: "=EF=89=87"; }
.fa-object-ungroup::before { content: "=EF=89=88"; }
.fa-sticky-note::before { content: "=EF=89=89"; }
.fa-sticky-note-o::before { content: "=EF=89=8A"; }
.fa-cc-jcb::before { content: "=EF=89=8B"; }
.fa-cc-diners-club::before { content: "=EF=89=8C"; }
.fa-clone::before { content: "=EF=89=8D"; }
.fa-balance-scale::before { content: "=EF=89=8E"; }
.fa-hourglass-o::before { content: "=EF=89=90"; }
.fa-hourglass-1::before, .fa-hourglass-start::before { content: "=EF=89=91"=
; }
.fa-hourglass-2::before, .fa-hourglass-half::before { content: "=EF=89=92";=
}
.fa-hourglass-3::before, .fa-hourglass-end::before { content: "=EF=89=93"; =
}
.fa-hourglass::before { content: "=EF=89=94"; }
.fa-hand-grab-o::before, .fa-hand-rock-o::before { content: "=EF=89=95"; }
.fa-hand-paper-o::before, .fa-hand-stop-o::before { content: "=EF=89=96"; }
.fa-hand-scissors-o::before { content: "=EF=89=97"; }
.fa-hand-lizard-o::before { content: "=EF=89=98"; }
.fa-hand-spock-o::before { content: "=EF=89=99"; }
.fa-hand-pointer-o::before { content: "=EF=89=9A"; }
.fa-hand-peace-o::before { content: "=EF=89=9B"; }
.fa-trademark::before { content: "=EF=89=9C"; }
.fa-registered::before { content: "=EF=89=9D"; }
.fa-creative-commons::before { content: "=EF=89=9E"; }
.fa-gg::before { content: "=EF=89=A0"; }
.fa-gg-circle::before { content: "=EF=89=A1"; }
.fa-tripadvisor::before { content: "=EF=89=A2"; }
.fa-odnoklassniki::before { content: "=EF=89=A3"; }
.fa-odnoklassniki-square::before { content: "=EF=89=A4"; }
.fa-get-pocket::before { content: "=EF=89=A5"; }
.fa-wikipedia-w::before { content: "=EF=89=A6"; }
.fa-safari::before { content: "=EF=89=A7"; }
.fa-chrome::before { content: "=EF=89=A8"; }
.fa-firefox::before { content: "=EF=89=A9"; }
.fa-opera::before { content: "=EF=89=AA"; }
.fa-internet-explorer::before { content: "=EF=89=AB"; }
.fa-television::before, .fa-tv::before { content: "=EF=89=AC"; }
.fa-contao::before { content: "=EF=89=AD"; }
.fa-500px::before { content: "=EF=89=AE"; }
.fa-amazon::before { content: "=EF=89=B0"; }
.fa-calendar-plus-o::before { content: "=EF=89=B1"; }
.fa-calendar-minus-o::before { content: "=EF=89=B2"; }
.fa-calendar-times-o::before { content: "=EF=89=B3"; }
.fa-calendar-check-o::before { content: "=EF=89=B4"; }
.fa-industry::before { content: "=EF=89=B5"; }
.fa-map-pin::before { content: "=EF=89=B6"; }
.fa-map-signs::before { content: "=EF=89=B7"; }
.fa-map-o::before { content: "=EF=89=B8"; }
.fa-map::before { content: "=EF=89=B9"; }
.fa-commenting::before { content: "=EF=89=BA"; }
.fa-commenting-o::before { content: "=EF=89=BB"; }
.fa-houzz::before { content: "=EF=89=BC"; }
.fa-vimeo::before { content: "=EF=89=BD"; }
.fa-black-tie::before { content: "=EF=89=BE"; }
.fa-fonticons::before { content: "=EF=8A=80"; }
.fa-reddit-alien::before { content: "=EF=8A=81"; }
.fa-edge::before { content: "=EF=8A=82"; }
.fa-credit-card-alt::before { content: "=EF=8A=83"; }
.fa-codiepie::before { content: "=EF=8A=84"; }
.fa-modx::before { content: "=EF=8A=85"; }
.fa-fort-awesome::before { content: "=EF=8A=86"; }
.fa-usb::before { content: "=EF=8A=87"; }
.fa-product-hunt::before { content: "=EF=8A=88"; }
.fa-mixcloud::before { content: "=EF=8A=89"; }
.fa-scribd::before { content: "=EF=8A=8A"; }
.fa-pause-circle::before { content: "=EF=8A=8B"; }
.fa-pause-circle-o::before { content: "=EF=8A=8C"; }
.fa-stop-circle::before { content: "=EF=8A=8D"; }
.fa-stop-circle-o::before { content: "=EF=8A=8E"; }
.fa-shopping-bag::before { content: "=EF=8A=90"; }
.fa-shopping-basket::before { content: "=EF=8A=91"; }
.fa-hashtag::before { content: "=EF=8A=92"; }
.fa-bluetooth::before { content: "=EF=8A=93"; }
.fa-bluetooth-b::before { content: "=EF=8A=94"; }
.fa-percent::before { content: "=EF=8A=95"; }
.fa-gitlab::before { content: "=EF=8A=96"; }
.fa-wpbeginner::before { content: "=EF=8A=97"; }
.fa-wpforms::before { content: "=EF=8A=98"; }
.fa-envira::before { content: "=EF=8A=99"; }
.fa-universal-access::before { content: "=EF=8A=9A"; }
.fa-wheelchair-alt::before { content: "=EF=8A=9B"; }
.fa-question-circle-o::before { content: "=EF=8A=9C"; }
.fa-blind::before { content: "=EF=8A=9D"; }
.fa-audio-description::before { content: "=EF=8A=9E"; }
.fa-volume-control-phone::before { content: "=EF=8A=A0"; }
.fa-braille::before { content: "=EF=8A=A1"; }
.fa-assistive-listening-systems::before { content: "=EF=8A=A2"; }
.fa-american-sign-language-interpreting::before, .fa-asl-interpreting::befo=
re { content: "=EF=8A=A3"; }
.fa-deaf::before, .fa-deafness::before, .fa-hard-of-hearing::before { conte=
nt: "=EF=8A=A4"; }
.fa-glide::before { content: "=EF=8A=A5"; }
.fa-glide-g::before { content: "=EF=8A=A6"; }
.fa-sign-language::before, .fa-signing::before { content: "=EF=8A=A7"; }
.fa-low-vision::before { content: "=EF=8A=A8"; }
.fa-viadeo::before { content: "=EF=8A=A9"; }
.fa-viadeo-square::before { content: "=EF=8A=AA"; }
.fa-snapchat::before { content: "=EF=8A=AB"; }
.fa-snapchat-ghost::before { content: "=EF=8A=AC"; }
.fa-snapchat-square::before { content: "=EF=8A=AD"; }
.fa-pied-piper::before { content: "=EF=8A=AE"; }
.fa-first-order::before { content: "=EF=8A=B0"; }
.fa-yoast::before { content: "=EF=8A=B1"; }
.fa-themeisle::before { content: "=EF=8A=B2"; }
.fa-google-plus-circle::before, .fa-google-plus-official::before { content:=
"=EF=8A=B3"; }
.fa-fa::before, .fa-font-awesome::before { content: "=EF=8A=B4"; }
.fa-handshake-o::before { content: "=EF=8A=B5"; }
.fa-envelope-open::before { content: "=EF=8A=B6"; }
.fa-envelope-open-o::before { content: "=EF=8A=B7"; }
.fa-linode::before { content: "=EF=8A=B8"; }
.fa-address-book::before { content: "=EF=8A=B9"; }
.fa-address-book-o::before { content: "=EF=8A=BA"; }
.fa-address-card::before, .fa-vcard::before { content: "=EF=8A=BB"; }
.fa-address-card-o::before, .fa-vcard-o::before { content: "=EF=8A=BC"; }
.fa-user-circle::before { content: "=EF=8A=BD"; }
.fa-user-circle-o::before { content: "=EF=8A=BE"; }
.fa-user-o::before { content: "=EF=8B=80"; }
.fa-id-badge::before { content: "=EF=8B=81"; }
.fa-drivers-license::before, .fa-id-card::before { content: "=EF=8B=82"; }
.fa-drivers-license-o::before, .fa-id-card-o::before { content: "=EF=8B=83"=
; }
.fa-quora::before { content: "=EF=8B=84"; }
.fa-free-code-camp::before { content: "=EF=8B=85"; }
.fa-telegram::before { content: "=EF=8B=86"; }
.fa-thermometer-4::before, .fa-thermometer-full::before, .fa-thermometer::b=
efore { content: "=EF=8B=87"; }
.fa-thermometer-3::before, .fa-thermometer-three-quarters::before { content=
: "=EF=8B=88"; }
.fa-thermometer-2::before, .fa-thermometer-half::before { content: "=EF=8B=
=89"; }
.fa-thermometer-1::before, .fa-thermometer-quarter::before { content: "=EF=
=8B=8A"; }
.fa-thermometer-0::before, .fa-thermometer-empty::before { content: "=EF=8B=
=8B"; }
.fa-shower::before { content: "=EF=8B=8C"; }
.fa-bath::before, .fa-bathtub::before, .fa-s15::before { content: "=EF=8B=
=8D"; }
.fa-podcast::before { content: "=EF=8B=8E"; }
.fa-window-maximize::before { content: "=EF=8B=90"; }
.fa-window-minimize::before { content: "=EF=8B=91"; }
.fa-window-restore::before { content: "=EF=8B=92"; }
.fa-times-rectangle::before, .fa-window-close::before { content: "=EF=8B=93=
"; }
.fa-times-rectangle-o::before, .fa-window-close-o::before { content: "=EF=
=8B=94"; }
.fa-bandcamp::before { content: "=EF=8B=95"; }
.fa-grav::before { content: "=EF=8B=96"; }
.fa-etsy::before { content: "=EF=8B=97"; }
.fa-imdb::before { content: "=EF=8B=98"; }
.fa-ravelry::before { content: "=EF=8B=99"; }
.fa-eercast::before { content: "=EF=8B=9A"; }
.fa-microchip::before { content: "=EF=8B=9B"; }
.fa-snowflake-o::before { content: "=EF=8B=9C"; }
.fa-superpowers::before { content: "=EF=8B=9D"; }
.fa-wpexplorer::before { content: "=EF=8B=9E"; }
.fa-meetup::before { content: "=EF=8B=A0"; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margi=
n: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; }
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid=
th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; }
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: image/svg+xml
Content-Transfer-Encoding: quoted-printable
Content-Location: https://devmaster.myyard.co.uk/sheets/img/logo.svg
<?xml version=3D"1.0" encoding=3D"UTF-8" standalone=3D"no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc=3D"http://purl.org/dc/elements/1.1/"
xmlns:cc=3D"http://creativecommons.org/ns#"
xmlns:rdf=3D"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg=3D"http://www.w3.org/2000/svg"
xmlns=3D"http://www.w3.org/2000/svg"
xmlns:sodipodi=3D"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape=3D"http://www.inkscape.org/namespaces/inkscape"
width=3D"807.44763"
height=3D"137.8925"
id=3D"svg2"
version=3D"1.1"
inkscape:version=3D"0.48.4 r9939"
sodipodi:docname=3D"logo.svg">
<defs
id=3D"defs4">
<clipPath
id=3D"clipPath3067"
clipPathUnits=3D"userSpaceOnUse">
<path
id=3D"path3069"
d=3D"m 0,595.28 841.89,0 L 841.89,0 0,0 0,595.28 z"
inkscape:connector-curvature=3D"0" />
</clipPath>
<clipPath
id=3D"clipPath3047"
clipPathUnits=3D"userSpaceOnUse">
<path
id=3D"path3049"
d=3D"m 0,595.28 841.89,0 L 841.89,0 0,0 0,595.28 z"
inkscape:connector-curvature=3D"0" />
</clipPath>
<clipPath
id=3D"clipPath3007"
clipPathUnits=3D"userSpaceOnUse">
<path
id=3D"path3009"
d=3D"m 0,595.28 841.89,0 L 841.89,0 0,0 0,595.28 z"
inkscape:connector-curvature=3D"0" />
</clipPath>
</defs>
<sodipodi:namedview
id=3D"base"
pagecolor=3D"#ffffff"
bordercolor=3D"#666666"
borderopacity=3D"1.0"
inkscape:pageopacity=3D"0.0"
inkscape:pageshadow=3D"2"
inkscape:zoom=3D"0.7"
inkscape:cx=3D"578.52739"
inkscape:cy=3D"-38.363254"
inkscape:document-units=3D"px"
inkscape:current-layer=3D"layer1"
showgrid=3D"false"
inkscape:window-width=3D"1920"
inkscape:window-height=3D"1005"
inkscape:window-x=3D"-9"
inkscape:window-y=3D"-9"
inkscape:window-maximized=3D"1"
showguides=3D"false"
width=3D"1052.36px"
fit-margin-top=3D"0"
fit-margin-left=3D"0"
fit-margin-right=3D"0"
fit-margin-bottom=3D"0" />
<metadata
id=3D"metadata7">
<rdf:RDF>
<cc:Work
rdf:about=3D"">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource=3D"http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label=3D"Layer 1"
inkscape:groupmode=3D"layer"
id=3D"layer1"
transform=3D"translate(-0.561898,-244.31453)">
<g
id=3D"g3205"
transform=3D"translate(-41.428572,-27.142857)">
<g
transform=3D"matrix(1.25,0,0,-1.25,122.51672,381.47577)"
id=3D"g2995">
<path
id=3D"path2997"
style=3D"fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:no=
ne"
d=3D"M 0,0 -12.958,0 -23.374,31.804 -33.792,0 l -12.869,0 -17.76=
,64.515 16.585,0 8.425,-34.072 10.422,34.072 11.235,0 10.415,-34.072 8.431,=
34.072 16.583,0 L 0,0 z"
inkscape:connector-curvature=3D"0" />
</g>
<g
transform=3D"matrix(1.25,0,0,-1.25,171.33084,331.41352)"
id=3D"g2999">
<path
id=3D"path3001"
style=3D"fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:no=
ne"
d=3D"m 0,0 -5.801,-17.216 11.234,0 L 0,0 z m 12.595,-40.05 -2.99=
5,9.606 -19.839,0 -3.172,-9.606 -16.582,0 23.47,64.515 12.233,0 23.467,-64.=
515 -16.582,0 z"
inkscape:connector-curvature=3D"0" />
</g>
<g
transform=3D"matrix(1.25,0,0,-1.25,-71.586656,868.27814)"
id=3D"g3005"
clip-path=3D"url(#clipPath3007)">
<g
id=3D"g3011"
transform=3D"translate(246.1602,388.897)">
<path
inkscape:connector-curvature=3D"0"
d=3D"m 0,0 c -9.874,0 -17.946,1.812 -24.472,8.517 l 10.154,10.=
15 c 3.351,-3.354 9.244,-4.532 14.409,-4.532 6.246,0 9.241,2.082 9.241,5.79=
9 0,1.543 -0.359,2.809 -1.266,3.804 -0.822,0.819 -2.176,1.452 -4.258,1.726 =
l -7.798,1.084 c -5.71,0.818 -10.054,2.721 -12.954,5.71 -2.99,3.08 -4.438,7=
.43 -4.438,12.96 0,11.779 8.878,20.384 23.558,20.384 9.244,0 16.22,-2.173 2=
1.748,-7.701 l -9.968,-9.968 c -4.082,4.079 -9.427,3.805 -12.233,3.805 -5.5=
28,0 -7.795,-3.169 -7.795,-5.978 0,-0.816 0.277,-1.994 1.269,-2.992 0.813,-=
0.813 2.173,-1.632 4.441,-1.903 l 7.795,-1.086 c 5.801,-0.816 9.965,-2.63 1=
2.689,-5.345 3.434,-3.354 4.794,-8.158 4.794,-14.135 C 24.916,7.159 13.596,=
0 0,0"
style=3D"fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:=
none"
id=3D"path3013" />
</g>
<g
id=3D"g3015"
transform=3D"translate(303.9614,439.8218)">
<path
inkscape:connector-curvature=3D"0"
d=3D"m 0,0 0,-50.38 -15.852,0 0,50.38 -15.858,0 0,14.135 47.57=
4,0 L 15.864,0 0,0 z"
style=3D"fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:=
none"
id=3D"path3017" />
</g>
<g
id=3D"g3019"
transform=3D"translate(324.5342,389.4419)">
<path
inkscape:connector-curvature=3D"0"
d=3D"m 0,0 0,64.515 43.848,0 0,-14.135 -27.994,0 0,-10.784 23.=
924,0 0,-14.135 -23.924,0 0,-11.326 27.994,0 L 43.848,0 0,0 z"
style=3D"fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:=
none"
id=3D"path3021" />
</g>
<g
id=3D"g3023"
transform=3D"translate(678.9355,388.897)">
<path
inkscape:connector-curvature=3D"0"
d=3D"m 0,0 c -9.697,0 -16.04,2.447 -22.118,8.517 l 4.721,4.714=
C -12.059,7.884 -7.067,6.16 0.177,6.16 c 9.421,0 15.227,4.442 15.227,11.96=
3 0,3.354 -1.001,6.251 -3.086,8.065 C 10.236,28 8.605,28.544 3.896,29.269 l=
-7.521,1.177 c -5.074,0.817 -9.064,2.445 -11.877,4.892 -3.257,2.901 -4.888=
,6.888 -4.888,12.053 0,10.964 7.877,18.211 20.659,18.211 8.248,0 13.681,-2.=
082 19.211,-7.067 L 15.042,54.097 C 11.052,57.722 6.794,59.624 0,59.624 c -=
8.613,0 -13.593,-4.803 -13.593,-11.962 0,-3.171 0.904,-5.707 2.895,-7.433 1=
.999,-1.719 5.35,-2.986 8.699,-3.53 l 7.07,-1.087 c 6.073,-0.907 9.062,-2.1=
74 11.783,-4.532 3.534,-2.989 5.433,-7.43 5.433,-12.778 C 22.287,6.977 13.4=
11,0 0,0 m -51.917,0 c -6.35,0 -12.147,2.355 -16.5,6.705 -6.063,6.072 -6.06=
3,12.413 -6.063,26.098 0,13.681 0,20.024 6.063,26.096 4.353,4.347 10.15,6.7=
03 16.5,6.703 11.597,0 20.204,-7.067 22.378,-19.209 l -7.071,0 c -1.72,7.88=
3 -7.244,13.048 -15.307,13.048 -4.268,0 -8.337,-1.631 -11.152,-4.529 -4.076=
,-4.169 -4.535,-8.607 -4.535,-22.109 0,-13.502 0.459,-17.944 4.535,-22.111 =
2.815,-2.9 6.884,-4.532 11.152,-4.532 8.063,0 13.77,5.166 15.492,13.049 l 6=
.886,0 C -31.624,7.067 -40.412,0 -51.917,0 m -43.404,65.06 6.886,0 0,-64.51=
5 -6.886,0 0,64.515 z M -114.612,7.43 C -119.147,2.535 -125.22,0 -131.837,0=
c -6.341,0 -12.144,2.355 -16.494,6.705 -6.069,6.072 -6.069,12.413 -6.069,2=
6.098 0,13.681 0,20.024 6.069,26.096 4.35,4.347 10.062,6.703 16.494,6.703 1=
2.327,0 20.664,-7.972 22.564,-19.297 l -6.889,0 c -1.814,8.154 -7.607,13.13=
6 -15.675,13.136 -4.259,0 -8.34,-1.719 -11.143,-4.62 -4.076,-4.167 -4.536,-=
8.516 -4.536,-22.018 0,-13.502 0.46,-17.944 4.536,-22.111 2.803,-2.9 6.884,=
-4.532 11.143,-4.532 4.712,0 9.247,1.906 12.233,5.528 2.629,3.171 3.627,6.7=
08 3.627,11.691 l 0,4.892 -15.86,0 0,6.072 22.749,0 0,-10.239 c 0,-7.433 -1=
.547,-12.416 -5.524,-16.674 m -62.702,47.391 c -2.813,2.901 -6.894,4.62 -11=
.152,4.62 -4.256,0 -8.331,-1.719 -11.14,-4.62 -4.085,-4.167 -4.539,-8.516 -=
4.539,-22.018 0,-13.502 0.454,-17.852 4.539,-22.022 2.809,-2.897 6.884,-4.6=
21 11.14,-4.621 4.258,0 8.339,1.724 11.152,4.621 4.073,4.17 4.526,8.52 4.52=
6,22.022 0,13.502 -0.453,17.851 -4.526,22.018 m 5.339,-48.116 C -176.324,2.=
355 -182.035,0 -188.466,0 c -6.431,0 -12.141,2.355 -16.491,6.705 -6.072,6.0=
72 -6.072,12.413 -6.072,26.098 0,13.681 0,20.024 6.072,26.096 4.35,4.347 10=
.06,6.703 16.491,6.703 6.431,0 12.142,-2.356 16.491,-6.703 6.079,-6.072 6.0=
79,-12.415 6.079,-26.096 0,-13.685 0,-20.026 -6.079,-26.098 m -82.982,-6.16=
0,64.515 6.888,0 0,-58.355 32.981,0 0,-6.16 -39.869,0 z"
style=3D"fill:#858588;fill-opacity:1;fill-rule:nonzero;stroke:=
none"
id=3D"path3025" />
</g>
<g
id=3D"g3027"
transform=3D"translate(733.2588,380.9956)">
<path
inkscape:connector-curvature=3D"0"
d=3D"M 0,0 C -3.06,-5.271 -7.836,-9.686 -12.009,-13.853 L -25.=
49,-0.37 c 3.062,3.065 4.659,4.414 6.985,8.213 1.225,2.085 1.961,5.515 1.96=
1,10.539 l 0,45.845 c 0,5.024 -0.736,8.458 -1.961,10.54 -2.326,3.801 -3.923=
,5.148 -6.985,8.213 l 13.481,13.481 C -7.836,92.294 -3.06,87.88 0,82.612 3.=
192,77.341 3.561,70.968 3.561,64.963 l 0,-47.315 C 3.561,11.645 3.192,5.269=
0,0 m -335.036,-13.853 c -4.17,4.167 -8.946,8.582 -12.015,13.853 -3.189,5.=
269 -3.549,11.645 -3.549,17.648 l 0,47.315 c 0,6.005 0.36,12.378 3.549,17.6=
49 3.069,5.268 7.845,9.682 12.015,13.849 l 13.484,-13.481 c -3.069,-3.065 -=
4.659,-4.412 -6.985,-8.213 -1.228,-2.082 -1.967,-5.516 -1.967,-10.54 l 0,-4=
5.845 c 0,-5.024 0.739,-8.454 1.967,-10.539 2.326,-3.799 3.916,-5.148 6.985=
,-8.213 l -13.484,-13.483 z"
style=3D"fill:#fcb243;fill-opacity:1;fill-rule:nonzero;stroke:=
none"
id=3D"path3029" />
</g>
</g>
</g>
</g>
</svg>=0A
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64
Content-Location: https://devmaster.myyard.co.uk/sheets/font/myicons-wastelogics.woff
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
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA----
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64
Content-Location: https://devmaster.myyard.co.uk/sheets/fonts/fontawesome-webfont.woff2?v=4.7.0
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
ErDP3wmSVIdN1P6uXwKjM1xqwnqZ6kZzMWf2LhH8YwWOYp2MR5tkPzJSWWABb+3SO8TU9reGqzJ1
o5gluXuZuF5yf7kpYCvwducdFbXbs52L4AX50d0390ZzPYkfoNlDdUPwvXveQy7VPRtaOGtWwFll
BIaSGdhg9tSuX1mJ6pOjVXVA0GnAhFIbfDqRgAUUXtB5r9Qlq5iL9YJ9LtOAH1Q0T4e9wgMuXXFx
pVotdi4bd+muZYj1ab3aw38bkb+0wOZv+465OsL6G+ZmLx4xSXxG3WLithPj2UTSWP+P4uUHQ0Ws
zT97nv+LVfstTnj+5PO5MIt3ipaNNtt+VRy9fn0uePiokJ7v+WPZ02bsniEBFbE293i9PuJ9ngMA
AAALV0FEPGnb6zP88rbXtCmPPvR8UcS3jeZ+2vqKlIYOhYpYm7G7QwLe7fz43s7vfcLz3zxBjz4U
oKLlA9fvzxmFNmMOAFTE2sw7a63d9psjNy57N2Ou6qI4nARUxNr83dP9X5vj/Mw0gIpYm7E7QgIq
Ym3G7ozpIyIiIiqllFJKKUVERERExMzMzMybPzmqpzfN1sd0M1prrWeBExERERER0YGoaHr2ir8c
/beM/nQm3q93Lo7D4VmbTvnLi9W+GbtnSEBFrM3YHSEBFbE2j4329RZ+GWKVct20wZ/IetvJXURE
RERERERmZmZmZmZmVlVVVVVVVVWzabq6e3r7ppOcf4Q2vU5krQEA
------MultipartBoundary--USJ39JQMRuj43DLL835gLaX5R7wanwAr6CtZhLLYUA------
browser=chrome
implicitlyTimeout=10
# Root logger option
log4j.rootLogger=INFO, stdout, file
# Redirect log messages to console
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
# Redirect log messages to a log file, support file rolling.
log4j.appender.file=org.apache.log4j.RollingFileAppender
log4j.appender.file.File=src/logs.log
log4j.appender.file.MaxFileSize=5MB
log4j.appender.file.MaxBackupIndex=10
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
url=/src/main/resources/Company invoices - Waste Logics.mhtml
package tests;
import application.constants.UrlConstants;
import framework.browser.Browser;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
abstract public class BaseTest {
@BeforeTest
public static void init(){
Browser.setImplicitlyWait();
Browser.goToUrl(UrlConstants.WEB_URL);
Browser.maximize();
}
@AfterTest
public static void close(){
Browser.quit();
}
}
package tests;
import application.constants.CompanyInfoConstants;
import application.constants.PricesConstants;
import application.pages.CompanyInvoicesPage;
import org.testng.Assert;
import org.testng.annotations.Test;
public class CompanyInvoicesTest extends BaseTest{
@Test
public static void matchingInfoTest() {
CompanyInvoicesPage companyInvoicesPage = new CompanyInvoicesPage();
Assert.assertEquals(CompanyInfoConstants.EXPECTED_COMPANY, companyInvoicesPage.getCompanyNameLabel().getText(), "Company name does not match");
Assert.assertEquals(CompanyInfoConstants.INVOICE_ADDRESS, companyInvoicesPage.getInvoiceAddressLabel().getText(), "Invoice address does not match");
Assert.assertEquals(CompanyInfoConstants.GRADE, companyInvoicesPage.getGrade().getText(), "Grade does not match");
Assert.assertEquals(CompanyInfoConstants.WEIGHT, companyInvoicesPage.getWeight().getText(), "Weight does not match");
Assert.assertEquals(PricesConstants.FLAT_CHARGE, companyInvoicesPage.getFlatCharge().getText(), "Price entity does not match");
Assert.assertEquals(PricesConstants.PER_TONNE, companyInvoicesPage.getPerTonneLabel().getText(), "Price entity does not match");
Assert.assertEquals(PricesConstants.ITEM, companyInvoicesPage.getItemLabel().getText(), "Price entity does not match");
Assert.assertEquals(PricesConstants.FLAT_CHARGE_PRICE, companyInvoicesPage.getFlatChargePrice().getText(), "Total Cost does not match");
Assert.assertEquals(PricesConstants.PER_TONNE_PRICE, companyInvoicesPage.getPerTonnePrice().getText(), "Total Cost does not match");
Assert.assertEquals(PricesConstants.ITEM_PRICE, companyInvoicesPage.getItemPrice().getText(), "Total Cost does not match");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment