diff --git a/ci/vale/dictionary.txt b/ci/vale/dictionary.txt index d5fac73515f..5cc972d90a7 100644 --- a/ci/vale/dictionary.txt +++ b/ci/vale/dictionary.txt @@ -833,6 +833,7 @@ netifrc netlify netloc netmask +netplan networkd newgrp newtag diff --git a/docs/applications/configuration-management/automate-a-static-site-deployment-with-salt/index.md b/docs/applications/configuration-management/automate-a-static-site-deployment-with-salt/index.md index 31f91157ea2..74f40126841 100644 --- a/docs/applications/configuration-management/automate-a-static-site-deployment-with-salt/index.md +++ b/docs/applications/configuration-management/automate-a-static-site-deployment-with-salt/index.md @@ -6,7 +6,7 @@ description: 'Learn how to use Salt to configure a static site webserver and use keywords: ['salt','saltstack','github','webhooks','hugo','static site','deployment'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-15 -modified: 2018-10-15 +modified: 2019-01-02 modified_by: name: Linode title: "Automate Static Site Deployments with Salt, Git, and Webhooks" @@ -18,6 +18,8 @@ external_resources: - '[SaltStack Git Fileserver Documentation](https://docs.saltstack.com/en/latest/topics/tutorials/gitfs.html#tutorial-gitfs)' - '[SaltStack Salt Formulas Documentation](https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html)' - '[GitHub Developer - Webhooks](https://developer.github.com/webhooks/)' +promo_code_amount: '20' +promo_code: 'Salt20' --- This guide will walk through the deployment of a static site using [SaltStack](https://github.com/saltstack/salt), which is a flexible configuration management system. The configuration files created for Salt will be version controlled using Git. Updates to your static site's code will be automatically communicated to the production system using webhooks, an event notification system for the web. @@ -1033,4 +1035,4 @@ The current Salt configuration can be used as a foundation for more complex depl - Load balance your site by creating more minions and apply the same Pillar data and Salt states to them. Then, set up a [NodeBalancer](https://www.linode.com/nodebalancers) to direct traffic to the minions. -- Set up a separate development branch and development server with Salt's environments feature. \ No newline at end of file +- Set up a separate development branch and development server with Salt's environments feature. diff --git a/docs/applications/configuration-management/beginners-guide-to-salt/index.md b/docs/applications/configuration-management/beginners-guide-to-salt/index.md index e3e24f2256e..a98ca7ab8c5 100644 --- a/docs/applications/configuration-management/beginners-guide-to-salt/index.md +++ b/docs/applications/configuration-management/beginners-guide-to-salt/index.md @@ -5,13 +5,15 @@ author: description: 'A look into Salt''s primary components, features, and configurations for the new SaltStack user' keywords: ["salt", "automation", "saltstack", "configuration management"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-10-16 +modified: 2019-01-02 modified_by: name: Linode published: 2018-10-16 title: A Beginner's Guide to Salt external_resources: - '[SaltStack Documentation](https://docs.saltstack.com/)' +promo_code_amount: '20' +promo_code: 'Salt20' --- [Salt](https://www.saltstack.com) (also referred to as *SaltStack*) is a Python-based configuration management and orchestration system. Salt uses a master/client model in which a dedicated Salt *master* server manages one or more Salt *minion* servers. Two of Salt's primary jobs are: @@ -330,4 +332,4 @@ Beacons can trigger [reactors](https://docs.saltstack.com/en/latest/topics/react Now that you're familiar with some of Salt's basic terminology and components, move on to our guide [Getting Started with Salt - Basic Installation and Setup](https://www.linode.com/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/) to set up a configuration to start running commands and provisioning minion servers. -The SaltStack documentation also contains a page of [best practices](https://docs.saltstack.com/en/latest/topics/best_practices.html) to be mindful of when working with Salt. You should review this page and implement those practices into your own workflow whenever possible. \ No newline at end of file +The SaltStack documentation also contains a page of [best practices](https://docs.saltstack.com/en/latest/topics/best_practices.html) to be mindful of when working with Salt. You should review this page and implement those practices into your own workflow whenever possible. diff --git a/docs/applications/configuration-management/beginners-guide-to-terraform/index.md b/docs/applications/configuration-management/beginners-guide-to-terraform/index.md new file mode 100644 index 00000000000..8ea328cf898 --- /dev/null +++ b/docs/applications/configuration-management/beginners-guide-to-terraform/index.md @@ -0,0 +1,246 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'A look into Terraform''s primary components, features, and configurations for the new Terraform user' +keywords: ['terraform', 'orchestration', 'linode provider'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-12-21 +modified: 2018-12-21 +modified_by: + name: Linode +title: "A Beginner's Guide to Terraform" +external_resources: +- '[Terraform Documentation](https://www.terraform.io/docs/index.html)' +--- + +[Terraform](https://www.terraform.io) by HashiCorp is an orchestration tool that allows you to represent your Linode instances and other resources with declarative code inside configuration files, instead of manually creating those resources via the Linode Manager or API. This practice is referred to as *Infrastructure as Code*, and Terraform is a popular example of this methodology. The basic workflow when using Terraform is: + +1. Write configuration files on your computer in which you declare the elements of your infrastructure that you want to create. + +2. Tell Terraform to analyze your configurations and then create the corresponding infrastructure. + +Terraform's primary job is to create, modify, and destroy servers and other resources. Terraform generally does not configure your servers' software. Configuring your software can be performed with scripts that you [upload to and execute on your new servers](#provisioners), or via configuration management tools or container deployments. + +## The Linode Provider + +Terraform is a general orchestration tool that can interface with a number of different cloud platforms. These integrations are referred to as *providers*. The Terraform provider for Linode was [officially released](https://blog.linode.com/2018/10/30/now-available-linode-terraform-provider/) in October 2018. + +{{< note >}} +The Linode provider relies on Linode's [APIv4](https://developers.linode.com/api/v4), so an API access token is needed to use it. See [Use Terraform to Provision Linode Environments](/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/) for instructions on getting an API token and installing Terraform and the Linode provider on your computer. +{{< /note >}} + +The Linode provider can be used to create Linode instances, Images, domain records, Block Storage Volumes, StackScripts, and other resources. Terraform's [official Linode provider documentation](https://www.terraform.io/docs/providers/linode/index.html) details each resource that can be managed. + +## Infrastructure as Code + +Terraform's representation of your resources in configuration files is referred to as *Infrastructure as Code* (IAC). The benefits of this methodology and of using Terraform include: + +- **Version control of your infrastructure.** Because your resources are declared in code, you can track changes to that code over time in version control systems like Git. + +- **Minimization of human error.** Terraform's analysis of your configuration files will produce the same results every time it creates your declared resources. As well, telling Terraform to repeatedly apply the same configuration will not result in extra resource creation, as Terraform tracks the changes it makes over time. + +- **Better collaboration among team members.** Terraform's [backends](#backends) allow multiple team members to safely work on the same Terraform configuration simultaneously. + +### HashiCorp Configuration Language + +Terraform's configuration files can be written in either the [*HashiCorp Configuration Language*](https://github.com/hashicorp/hcl) (HCL), or in JSON. HCL is a configuration language authored by HashiCorp for use with its products, and it is designed to be human readable and machine friendly. It is recommended that you use HCL over JSON for your Terraform deployments. + +The next sections will illustrate core Terraform concepts with examples written in HCL. For a more complete review of HCL syntax, see [Introduction to HashiCorp Configuration Language (HCL)](/docs/applications/configuration-management/introduction-to-hcl/). + +### Resources + +Here's a simple example of a complete Terraform configuration in HCL: + +{{< file "example.tf" >}} +provider "linode" { + token = "your-linode-api-token" +} + +resource "linode_instance" "example_instance" { + label = "example_instance_label" + image = "linode/ubuntu18.04" + region = "us-central" + type = "g6-standard-1" + authorized_keys = ["ssh-rsa AAAA...Gw== user@example.local"] + root_pass = "your-root-password" +} +{{< /file >}} + +{{< note >}} +The SSH key in this example was truncated for brevity. +{{< /note >}} + +This example Terraform file, with the Terraform file extension `.tf`, represents the creation of a single Linode instance labeled `example_instance_label`. This example file is prefixed with a mandatory `provider` block, which sets up the Linode provider and which you must list somewhere in your configuration. + +The `provider` block is followed by a *resource* declaration. Resource declarations correspond with the components of your Linode infrastructure: Linode instances, Block Storage Volumes, etc. + +Resources can accept arguments. `region` and `type` are required arguments for the `linode_instance` resource. A root password must be assigned to every Linode, but the `root_pass` Terraform argument is optional; if it is not specified, a random password will be generated. + +{{< note >}} +The `example_instance` string that follows the `linode_instance` resource type declaration is Terraform's name for the resource. You cannot declare more than one Terraform resource with the same name and resource type. + +The `label` argument specifies the label for the Linode instance in the Linode Manager. This name is independent of Terraform's name for the resource (though you can assign the same value to both). The Terraform name is only recorded in Terraform's [state](#state) and is not communicated to the Linode API. Labels for Linode instances in the same Linode account must be unique. +{{< /note >}} + +### Dependencies + +Terraform resources can depend on each other. When one resource depends on another, it will be created after the resource it depends on, even if it is listed before the other resource in your configuration file. + +The following snippet expands on the previous example. It declares a new domain with an A record that targets the Linode instance's IP address: + +{{< file "example.tf" >}} +provider "linode" { + # ... +} + +resource "linode_instance" "example_instance" { + # ... +} + +resource "linode_domain" "example_domain" { + domain = "example.com" + soa_email = "example@example.com" +} + +resource "linode_domain_record" "example_domain_record" { + domain_id = "${linode_domain.example_domain.id}" + name = "www" + record_type = "A" + target = "${linode_instance.example_instance.ip_address}" +} +{{< /file >}} + +The domain record's `domain_id` and `target` arguments use HCL's [interpolation syntax](/docs/applications/configuration-management/introduction-to-hcl/#interpolation) to retrieve the ID of the domain resource and the IP of the Linode instance, respectively. Terraform creates an *implicit dependency* on the `example_instance` and `example_domain` resources for the `example_domain_record` resource. As a result, the domain record will not be created until after the Linode instance and the domain are created. + +{{< note >}} +[Explicit dependencies](https://www.terraform.io/docs/configuration/resources.html#explicit-dependencies) can also be declared. +{{< /note >}} + +### Input Variables + +The previous example hard-coded sensitive data in your configuration, including your API token and root password. To avoid this practice, Terraform allows you to provide the values for your resource arguments in *input variables*. These variables are declared and referenced in your Terraform configuration (using interpolation syntax), and the values for those variables are assigned in a separate file. + +Input variables can also be used for non-sensitive data. The following example files will employ variables for the sensitive `token` and `root_pass` arguments and the non-sensitive `authorized_keys` and `region` arguments: + +{{< file "example.tf" >}} +provider "linode" { + token = "${var.token}" +} + +resource "linode_instance" "example_instance" { + label = "example_instance_label" + image = "linode/ubuntu18.04" + region = "${var.region}" + type = "g6-standard-1" + authorized_keys = ["${var.ssh_key}"] + root_pass = "${var.root_pass}" +} + +variable "token" {} +variable "root_pass" {} +variable "ssh_key" {} +variable "region" { + default = "us-southeast" +} +{{< /file >}} + +{{< file "terraform.tfvars" >}} +token = "your-linode-api-token" +root_pass = "your-root-password" +ssh_key = "ssh-rsa AAAA...Gw== user@example.local" +{{< /file >}} + +{{< note >}} +Place all of your Terraform project's files in the same directory. Terraform will automatically load input variable values from any file named `terraform.tfvars` or ending in `.auto.tfvars`. +{{< /note >}} + +The `region` variable is not assigned a specific value, so it will use the default value provided in the variable's declaration. See [Introduction to HashiCorp Configuration Language](/docs/applications/configuration-management/introduction-to-hcl/#input-variables) for more detailed information about input variables. + +## Terraform CLI + +You interact with Terraform via its command line interface. After you have created the configuration files in your Terraform project, you need to run the `init` command from the project's directory: + + terraform init + +This command will download the Linode provider plugin and take other actions needed to initialize your project. It is safe to run this command more than once, but you generally will only need to run it again if you are adding another provider to your project. + +### Plan and Apply + +After you have declared your resources in your configuration files, you create them by running Terraform's `apply` command from your project's directory. However, you should always verify that Terraform will create the resources as you expect them to be created before making any actual changes to your infrastructure. To do this, you can first run the `plan` command: + + terraform plan + +This command will generate a report detailing what actions Terraform will take to set up your Linode resources. + +If you are satisfied with this report, run `apply`: + + terraform apply + +This command will ask you to confirm that you want to proceed. When Terraform has finished applying your configuration, it will show a report of what actions were taken. + +### State + +When Terraform analyzes and applies your configuration, it creates an internal representation of the infrastructure it created and uses it to track the changes made. This *state* information is recorded in JSON in a local file named `terraform.tfstate` by default, but it can also be stored in other [backends](#backends). + +{{< caution >}} +Your sensitive infrastructure data (like passwords and tokens) is visible in plain-text in your `terraform.tfstate` file. Review [Secrets Management with Terraform](/docs/applications/configuration-management/secrets-management-with-terraform/#how-to-manage-your-state-file) for guidance on how to secure these secrets. +{{< /caution >}} + +### Other Commands + +Other useful commands are available, like `terraform show`, which reports a human-readable version of your Terraform state. A full list of [Terraform commands](https://www.terraform.io/docs/commands/index.html) is available in the official Terraform documentation. + +## Provisioners + +In addition to resource declarations, Terraform configurations can include *provisioners*. You declare provisioners to run scripts and commands in your local development environment or on your Terraform-managed servers. These actions are performed when you apply your Terraform configuration. + +The following example uploads a setup script to a newly created Linode instance and then executes it. This pattern can be used to bootstrap the new instance or enroll it in configuration management: + +{{< file "example.tf" >}} +resource "linode_instance" "example_instance" { + # ... + + provisioner "file" { + source = "setup_script.sh" + destination = "/tmp/setup_script.sh" + } + + provisioner "remote-exec" { + inline = [ + "chmod +x /tmp/setup_script.sh", + "/tmp/setup_script.sh", + ] + } +} +{{< /file >}} + +Most provisioners are declared inside of a resource declaration. When multiple provisioners are declared inside a resource, they are executed in the order they are listed. For a full list of [provisioners](https://www.terraform.io/docs/provisioners/index.html), review the official Terraform documentation. + +{{< note >}} +Linode [StackScripts](https://www.terraform.io/docs/providers/linode/r/stackscript.html) can also be used to set up a new Linode instance. A distinction between using StackScripts and the `file` and `remote-exec` provisioners is that those provisioners will run and complete synchronously before Terraform continues to apply your plan, while a StackScript will run in parallel while Terraform creates the rest of your remaining resources. As a result, Terraform might complete its application before a StackScript has finished running. +{{< /note >}} + +## Modules + +Terraform allows you to organize your configurations into reusable structures called *modules*. This is useful if you need to create multiple instances of the same cluster of servers. Review [Create a Terraform Module](/docs/applications/configuration-management/create-terraform-module/) for more information on authoring and using modules. + +## Backends + +By default, Terraform maintains its state in your project's directory. Terraform also supports storing your state in non-local [*backends*](https://www.terraform.io/docs/backends/index.html). The benefits of including your state in another backend include: + +- **Better collaboration with your team.** Backends let you share the same state as other team members that have access to the backend. + +- **Better security.** The state information stored in and retrieved from backends is only kept in memory on your computer. + +- **Remote operations.** When working with a large infrastructure, `terraform apply` can take a long time to complete. Some backends allow you to run the `apply` remotely, instead of on your computer. + +The [kinds of backends available](https://www.terraform.io/docs/backends/types/index.html) are listed in Terraform's official documentation. + +## Importing + +It is possible to import Linode infrastructure that was created outside of Terraform into your Terraform plan. Review [Import Existing Infrastructure to Terraform](/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/) for instructions on this subject. + +## Next Steps + +To get started with installing Terraform and creating your first projects, read through our [Use Terraform to Provision Linode Environments](/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/) guide. \ No newline at end of file diff --git a/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/index.md b/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/index.md index 292289d33cf..ef84fa03d99 100644 --- a/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/index.md +++ b/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/index.md @@ -7,12 +7,14 @@ og_description: "Salt Cloud is a part of the SaltStack that makes provisioning m keywords: ["SaltStack", "Salt", "salt-cloud"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-10-27 -modified: 2018-10-11 +modified: 2019-01-02 modified_by: name: Linode title: 'Configure and Use Salt Cloud and Cloud Maps to Provision Systems' contributor: name: Sergey Bulavintsev +promo_code_amount: '20' +promo_code: 'Salt20' --- ![Salt Cloud](SaltCloud.jpg) diff --git a/docs/applications/configuration-management/configure-and-use-salt-ssh/index.md b/docs/applications/configuration-management/configure-and-use-salt-ssh/index.md index 6de14319362..eec9fd4c3c4 100644 --- a/docs/applications/configuration-management/configure-and-use-salt-ssh/index.md +++ b/docs/applications/configuration-management/configure-and-use-salt-ssh/index.md @@ -6,12 +6,14 @@ description: 'Learn how to configure and use Salt SSH in this simple tutorial' keywords: ["Saltstack", " salt", " salt-ssh"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-07-25 -modified: 2017-08-15 +modified: 2019-01-02 modified_by: name: Linode title: 'Configure and Use Salt SSH to Manage Your Linodes' contributor: name: Sergey Bulavintsev +promo_code_amount: '20' +promo_code: 'Salt20' --- ## Introduction to Salt SSH diff --git a/docs/applications/configuration-management/configure-apache-with-salt-stack/index.md b/docs/applications/configuration-management/configure-apache-with-salt-stack/index.md index 407d0535437..dfc70f5dc90 100644 --- a/docs/applications/configuration-management/configure-apache-with-salt-stack/index.md +++ b/docs/applications/configuration-management/configure-apache-with-salt-stack/index.md @@ -6,7 +6,7 @@ description: 'Configure Apache on Ubuntu, Debian and CentOS with Salt Stack.' keywords: ['salt','stack','saltstack','apache','httpd','ubuntu','debian','centos'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-19 -modified: 2018-11-08 +modified: 2019-01-02 modified_by: name: Linode title: "Configure Apache with Salt Stack" @@ -15,6 +15,8 @@ external_resources: - '[Salt Apache_Conf State Module](https://docs.saltstack.com/en/latest/ref/states/all/salt.states.apache_conf.html)' - '[Salt Apache_Site State Module](https://docs.saltstack.com/en/latest/ref/states/all/salt.states.apache_site.html)' - '[Using Grains in SLS Modules](https://docs.saltstack.com/en/latest/topics/tutorials/states_pt3.html#using-grains-in-sls-modules)' +promo_code_amount: '20' +promo_code: 'Salt20' --- Salt is a powerful configuration management tool. In this guide you will create Salt state files that are capable of installing and configuring Apache on Ubuntu 18.04, Debian 9, or CentOS 7. diff --git a/docs/applications/configuration-management/create-a-salt-execution-module/index.md b/docs/applications/configuration-management/create-a-salt-execution-module/index.md index d3fb7149ab0..afb8d4deda5 100644 --- a/docs/applications/configuration-management/create-a-salt-execution-module/index.md +++ b/docs/applications/configuration-management/create-a-salt-execution-module/index.md @@ -6,13 +6,15 @@ description: 'Create a Salt execution module.' keywords: ['salt','execution module','saltstack'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-22 -modified: 2018-10-22 +modified: 2019-01-02 modified_by: name: Linode title: "Create a Salt Execution Module" external_resources: - '[Writing Execution Modules](https://docs.saltstack.com/en/latest/ref/modules/)' - '[Execution of Salt Modules From Within States](https://docs.saltstack.com/en/latest/ref/states/all/salt.states.module.html#execution-of-salt-modules-from-within-states)' +promo_code_amount: '20' +promo_code: 'Salt20' --- A Salt *execution module* is a Python module that runs on a Salt minion. It perform tasks and returns data to the Salt master. In this tutorial you will create and install an execution module that will call the [US National Weather Service API](https://forecast-v3.weather.gov/documentation) and return the current temperature at a specified weather station. This example could easily be adapted to access any API. @@ -239,4 +241,4 @@ local: 16.7 {{< /output >}} -You have now successfully created and installed a Salt execution module. \ No newline at end of file +You have now successfully created and installed a Salt execution module. diff --git a/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/index.md b/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/index.md index f963312af63..26bec214d81 100644 --- a/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/index.md +++ b/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/index.md @@ -6,11 +6,13 @@ description: 'Salt is a server management platform that can control a number of keywords: ["salt", "configuration management"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['applications/salt/install-salt/','applications/configuration-management/install-salt/','applications/configuration-management/install-and-configure-salt-master-and-minion-servers/'] -modified: 2018-03-23 +modified: 2019-01-02 modified_by: name: Linode published: 2015-09-22 title: Getting Started with Salt - Basic Installation and Setup +promo_code_amount: '20' +promo_code: 'Salt20' --- [Salt](https://saltstack.com/) is a Python-based configuration management platform designed to control a number of slave servers (called Minions in Salt terminology) from a single master server. This guide walks you through configuring a Salt Master and Minion, and is relevant to any supported Linux distribution. diff --git a/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/index.md b/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/index.md index 332b91f0de1..dd5f85ae32d 100644 --- a/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/index.md +++ b/docs/applications/configuration-management/how-to-build-your-infrastructure-using-terraform-and-linode/index.md @@ -42,12 +42,18 @@ Any Personal Access Tokens generated from the previous Linode Manager are API v3 ## Install Terraform +If you're using macOS, you can install Terraform via [Homebrew](https://brew.sh/) by running the following command: + + brew install terraform + +You can then skip to [Building with the Terraform Provider](#building-with-the-linode-provider"). If you are using Linux, or would rather not install Terraform with Homebrew, follow the instructions below. + 1. Make a Terraform project directory in your home directory and then navigate to it: mkdir ~/terraform cd ~/terraform -1. Download the following files from [Terraform's website](https://www.terraform.io/downloads.html). Example `wget` commands are listed using the latest version available at time of publishing (0.11.9). You should inspect the links on the download page to see if a newer version is available and update the `wget` commands to use those URLs instead: +2. Download the following files from [Terraform's website](https://www.terraform.io/downloads.html). Example `wget` commands are listed using the latest version available at time of publishing (0.11.9). You should inspect the links on the download page to see if a newer version is available and update the `wget` commands to use those URLs instead: - The 64-bit Linux `.zip` archive diff --git a/docs/applications/configuration-management/introduction-to-jinja-templates-for-salt/index.md b/docs/applications/configuration-management/introduction-to-jinja-templates-for-salt/index.md index 102357c39e9..5122349ba89 100644 --- a/docs/applications/configuration-management/introduction-to-jinja-templates-for-salt/index.md +++ b/docs/applications/configuration-management/introduction-to-jinja-templates-for-salt/index.md @@ -5,7 +5,7 @@ description: 'An introduction to Jinja using Salt configuration management examp keywords: ['salt','jinja','configuration management'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-29 -modified: 2018-10-29 +modified: 2019-01-02 modified_by: name: Linode title: "Introduction to Jinja Templates for Salt" @@ -15,6 +15,8 @@ external_resources: - '[Salt Best Practices](https://docs.saltstack.com/en/latest/topics/best_practices.html#modularity-within-states)' - '[Salt States Tutorial](https://docs.saltstack.com/en/latest/topics/tutorials/states_pt1.html)' - '[Jinja Template Designer Documentation](http://jinja.pocoo.org/docs/2.10/templates/#import)' +promo_code_amount: '20' +promo_code: 'Salt20' --- ## Introduction to Templating Languages @@ -384,4 +386,4 @@ If Jinja is overused, its power and versatility can create unmaintainable Salt s {% import_yaml "users.yml" as users %} -- Use Salt [Pillars](https://docs.saltstack.com/en/latest/topics/tutorials/pillar.html) to store general or sensitive data as variables. Access these variables inside state files and template files. \ No newline at end of file +- Use Salt [Pillars](https://docs.saltstack.com/en/latest/topics/tutorials/pillar.html) to store general or sensitive data as variables. Access these variables inside state files and template files. diff --git a/docs/applications/configuration-management/monitoring-salt-minions-with-beacons/index.md b/docs/applications/configuration-management/monitoring-salt-minions-with-beacons/index.md index 0521c010f0c..95e27a75f7b 100644 --- a/docs/applications/configuration-management/monitoring-salt-minions-with-beacons/index.md +++ b/docs/applications/configuration-management/monitoring-salt-minions-with-beacons/index.md @@ -6,7 +6,7 @@ description: 'How to monitor Salt minions with beacons.' keywords: ['salt','saltstack','minion','minions','beacon','beacons','reactor','reactors','monitor','configuration drift','slack'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-19 -modified: 2018-10-19 +modified: 2019-01-02 modified_by: name: Linode title: "Monitoring Salt Minions with Beacons" @@ -14,6 +14,8 @@ external_resources: - '[Salt Beacons Documentation](https://docs.saltstack.com/en/latest/topics/beacons/)' - '[Salt Beacon Modules](https://docs.saltstack.com/en/latest/ref/beacons/all/index.html)' - '[Salt Reactors Documentation](https://docs.saltstack.com/en/latest/topics/reactor/)' +promo_code_amount: '20' +promo_code: 'Salt20' --- Every action performed by Salt, such as applying a highstate or restarting a minion, generates an event. *Beacons* emit events for non-salt processes, such as system state changes or file changes. This guide will use Salt beacons to notify the Salt master of changes to minions, and Salt *reactors* to react to those changes. @@ -288,4 +290,4 @@ salt/job/20181010161053393111/ret/salt-minion { 1. Open Slack and you should see that your app has notified the room. -Congratulations, you now know how to monitor your Salt minion's memory usage with Slack integration. Salt can also monitor CPU load, disk usage, and a number of other things. Refer to the More Information section below for additional resources. \ No newline at end of file +Congratulations, you now know how to monitor your Salt minion's memory usage with Slack integration. Salt can also monitor CPU load, disk usage, and a number of other things. Refer to the More Information section below for additional resources. diff --git a/docs/applications/configuration-management/salt-command-line-reference/index.md b/docs/applications/configuration-management/salt-command-line-reference/index.md index 4fd3e6560ab..97b98ad92a1 100644 --- a/docs/applications/configuration-management/salt-command-line-reference/index.md +++ b/docs/applications/configuration-management/salt-command-line-reference/index.md @@ -6,7 +6,7 @@ description: 'A reference for the SaltStack command line interface.' keywords: ['salt','saltstack','cli','command line','reference'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-03 -modified: 2018-10-03 +modified: 2019-01-02 modified_by: name: Linode title: "SaltStack Command Line Reference" @@ -16,6 +16,8 @@ contributor: external_resources: - '[SaltStack Command Line Documentation](https://docs.saltstack.com/en/latest/ref/cli/index.html)' - '[Linode Cloud Module](https://docs.saltstack.com/en/latest/ref/clouds/all/salt.cloud.clouds.linode.html)' +promo_code_amount: '20' +promo_code: 'Salt20' --- [SaltStack](https://github.com/saltstack/salt) is a powerful configuration management tool. The following is a quick-reference guide for Salt's command line interface (CLI). @@ -296,4 +298,4 @@ Used to start the Salt API |`--pid-file`|Specify the file path of the pidfile. Default is `/var/run/salt-api.pid`|`salt-api --pid-file /path/to/new/pid`| |`-l`, `--log-level`|Change console log level. Defaults to `warning`. Available options are `all`, `garbage`, `trace`, `debug`, `info`, `warning`, `error`, and `quiet`.|`salt-api -l info`| |`--log-file`|Change the log file path. Defaults to `/var/log/salt/api`|`salt-api --log-file /home/salt/log`| -|`--log-file-level`|Change the logging level of the log file. Same options as `--log-level`|`salt-api --log-level all`| \ No newline at end of file +|`--log-file-level`|Change the logging level of the log file. Same options as `--log-level`|`salt-api --log-level all`| diff --git a/docs/applications/configuration-management/secrets-management-with-salt/index.md b/docs/applications/configuration-management/secrets-management-with-salt/index.md index bbc2c3af54b..032429dfe91 100644 --- a/docs/applications/configuration-management/secrets-management-with-salt/index.md +++ b/docs/applications/configuration-management/secrets-management-with-salt/index.md @@ -6,7 +6,7 @@ description: 'An overview of available options to manage secrets with SaltStack' keywords: ['salt','saltstack','secret','secure','management','sdb','gpg','vault'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-11-06 -modified: 2018-11-06 +modified: 2019-01-02 modified_by: name: Linode title: "Secrets Management with Salt" @@ -18,6 +18,8 @@ external_resources: - '[Salt GPG Renderer](https://docs.saltstack.com/en/latest/ref/renderers/all/salt.renderers.gpg.html)' - '[Salt SDB Documentation](https://docs.saltstack.com/en/latest/topics/sdb/)' - '[Salt SDB Modules](https://docs.saltstack.com/en/latest/ref/sdb/all/index.html)' +promo_code_amount: '20' +promo_code: 'Salt20' --- Salt is a powerful configuration management tool which helps you manage your server deployments with configuration *state* files. These files are easily shared with others on your team and can be checked in to version control systems like Git. diff --git a/docs/applications/configuration-management/test-salt-locally-with-kitchen-salt/index.md b/docs/applications/configuration-management/test-salt-locally-with-kitchen-salt/index.md index b3e52c5b7a2..3671a040b36 100644 --- a/docs/applications/configuration-management/test-salt-locally-with-kitchen-salt/index.md +++ b/docs/applications/configuration-management/test-salt-locally-with-kitchen-salt/index.md @@ -6,7 +6,7 @@ description: 'Test Salt states locally with Kitchen and kitchen-salt.' keywords: ['saltstack','salt','kitchen','kitchen-salt','kitchensalt','salt solo','saltsolo'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-10-15 -modified: 2018-12-14 +modified: 2019-01-02 modified_by: name: Linode title: "Test Salt States Locally with KitchenSalt" @@ -16,6 +16,8 @@ external_resources: - '[Salt Formulas](https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html)' - '[Writing a Test](https://kitchen.ci/docs/getting-started/writing-test/)' - '[Sample Pytest tests](https://github.com/gtmanfred/wordpress-formula/tree/master/tests/integration)' +promo_code_amount: '20' +promo_code: 'Salt20' --- KitchenSalt allows you to use Test Kitchen to test your Salt configurations locally without a Salt master or minions. In this guide you will install KitchenSalt and use Docker to test a Salt state. This guide was created using a system running Ubuntu 18.04. diff --git a/docs/applications/configuration-management/use-and-modify-official-saltstack-formulas/index.md b/docs/applications/configuration-management/use-and-modify-official-saltstack-formulas/index.md index a87301deefc..440e08a2b31 100644 --- a/docs/applications/configuration-management/use-and-modify-official-saltstack-formulas/index.md +++ b/docs/applications/configuration-management/use-and-modify-official-saltstack-formulas/index.md @@ -6,7 +6,7 @@ description: 'Learn how to use and modify official SaltStack formulas to manage keywords: ['salt', 'formulas', 'git'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-11-12 -modified: 2018-11-12 +modified: 2019-01-02 modified_by: name: Linode title: "Use and Modify Official SaltStack Formulas" @@ -15,6 +15,8 @@ contributor: external_resources: - '[Salt Formulas](https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html)' - '[Git Fileserver Backend Walkthrough](https://docs.saltstack.com/en/latest/topics/tutorials/gitfs.html)' +promo_code_amount: '20' +promo_code: 'Salt20' --- ## Salt State Files diff --git a/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/index.md b/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/index.md index 840eeba4e97..868d0685819 100644 --- a/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/index.md +++ b/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/index.md @@ -6,11 +6,13 @@ description: 'Use Salt States to Create a LAMP Stack on Debian 8.' keywords: ["salt", "salt states", "linux", "apache", "mysql", "php", "debian 8"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['applications/salt/salt-states-configuration-apache-mysql-php/'] -modified: 2017-07-10 +modified: 2019-01-02 modified_by: name: Linode published: 2015-07-02 title: Use Salt States to Configure a LAMP Stack on a Minion +promo_code_amount: '20' +promo_code: 'Salt20' --- This tutorial will configure a Minion's LAMP stack with further use of Salt States. This tutorial is written for Debian 8 but can easily be adjusted for other Linux Distributions. You will need a working Salt master and minion configuration before starting this guide. If you need to set up that prerequisite, see our [Salt installation guide](/docs/applications/configuration-management/getting-started-with-salt-basic-installation-and-setup/) to get started. diff --git a/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/index.md b/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/index.md index dc28a1558f2..bc368ce4ba3 100644 --- a/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/index.md +++ b/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/index.md @@ -6,11 +6,13 @@ description: 'Use Salt States to Create a LAMP Stack and Fail2ban Across All Lis keywords: ["salt", "salt state", "lamp stack", "apache", "mysql", "php", "fail2ban", "salt minions", "debian 8"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['applications/salt/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/','applications/salt/salt-states-apache-mysql-php-fail2ban/'] -modified: 2016-11-22 +modified: 2019-01-02 modified_by: - name: Edward Angert + name: Linode published: 2015-07-02 title: Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions +promo_code_amount: '20' +promo_code: 'Salt20' --- Salt States can install and define a server setup on other servers. This tutorial demonstrates the use of Salt States to create a LAMP stack across all Salt Minions. diff --git a/docs/applications/media-servers/install-plex-media-server-with-salt/index.md b/docs/applications/media-servers/install-plex-media-server-with-salt/index.md index 85733d2a711..ff155f90269 100644 --- a/docs/applications/media-servers/install-plex-media-server-with-salt/index.md +++ b/docs/applications/media-servers/install-plex-media-server-with-salt/index.md @@ -6,7 +6,7 @@ description: 'Install Plex Media Server on Ubuntu 18.04 with Salt masterless.' keywords: ['plex','media','server','ubuntu 18.04','ubuntu','salt','saltstack'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-11-13 -modified: 2018-11-13 +modified: 2019-01-02 modified_by: name: Linode title: "Install Plex Media Server on Ubuntu 18.04 Using Salt Masterless" @@ -16,6 +16,8 @@ external_resources: - '[Salt Masterless Walkthough](https://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html)' - '[Salt Fileserver Backend Walthrough](https://docs.saltstack.com/en/latest/topics/tutorials/gitfs.html)' - '[Plex Media Server Quick State](https://support.plex.tv/articles/200264746-quick-start-step-by-step-guides/)' +promo_code_amount: '20' +promo_code: 'Salt20' --- Plex is a media server that allows you to stream video and audio content that you own to many different types of devices. In this guide you will learn how to use a masterless Salt minion to set up a Plex server, attach and use a Block Storage Volume, and how to connect to your media server to stream content to your devices. diff --git a/docs/development/nodejs/install-nodejs-nodesource/index.md b/docs/development/nodejs/install-nodejs-nodesource/index.md index 9751fe10fa1..d7aed8e614e 100644 --- a/docs/development/nodejs/install-nodejs-nodesource/index.md +++ b/docs/development/nodejs/install-nodejs-nodesource/index.md @@ -6,7 +6,7 @@ description: 'Install an up to date Node.js binary from NodeSource on Debian or keywords: [] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-03-06 -modified: 2018-03-26 +modified: 2018-12-27 modified_by: name: Linode title: 'Install Node.js from NodeSource on Debian or Ubuntu' @@ -23,6 +23,6 @@ headless: true 3. The setup script will run an `apt-get update` automatically, so you can install Node.js right away: - sudo apt install nodejs + sudo apt install nodejs npm The Node Package Manager (NPM) will be installed alongside Node.js. diff --git a/docs/email/running-a-mail-server/index.md b/docs/email/running-a-mail-server/index.md index 80de03b6a5a..d887ef5d501 100644 --- a/docs/email/running-a-mail-server/index.md +++ b/docs/email/running-a-mail-server/index.md @@ -7,7 +7,7 @@ og_description: 'Take control of your email with your own mail server. This guid keywords: ["mail server", "linode guide", "running a mail server", "Self-host Mail"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['mailserver/'] -modified: 2018-10-19 +modified: 2019-01-07 modified_by: name: Linode published: 2013-06-05 @@ -245,8 +245,8 @@ Here are some of the typical mail ports: * `143`: IMAP * `993`: IMAPS (encrypted) * `25`: SMTP (sometimes blocked by ISPs) -* `587`: SMTP (actually the preferred non-encrypted port for outgoing connections from mail clients) -* `465`: SSMTP (encrypted) +* `587`: SMTP (The preferred non-encrypted port for outgoing connections from mail clients. Use STARTTLS for encryption.) +* `465`: SMTP (should only be used for legacy support) If you're using a firewall, be sure to edit the rules for your mail server's ports. See Linode's guide to [configuring a firewall](/docs/security/securing-your-server/#configure-a-firewall) for more information. diff --git a/docs/networking/an-overview-of-ipv6-on-linode/index.md b/docs/networking/an-overview-of-ipv6-on-linode/index.md index 72f73220726..46f59f26a8b 100644 --- a/docs/networking/an-overview-of-ipv6-on-linode/index.md +++ b/docs/networking/an-overview-of-ipv6-on-linode/index.md @@ -7,14 +7,14 @@ og_description: "This guide is a brief overview of IPv6 support on Linode, inclu keywords: ["ipv6 networking", "IP configuration"] aliases: ['networking/native-ipv6-networking/','networking/how-to-enable-native-ipv6-on-linux/'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-05-17 +modified: 2019-01-02 modified_by: name: Linode published: 2011-05-03 title: An Overview of IPv6 on Linode external_resources: - '[Understanding IP Addressing](http://www.ripe.net/internet-coordination/press-centre/understanding-ip-addressing)' - - '[IPv6 Subnet Cheat Sheet](http://www.ipv6ve.info/project-definition/ipv6-subnet-cheat-sheet-and-ipv6-cheat-sheet-reference)' + - '[IPv6 Chart](https://www.ripe.net/support/training/material/lir-training-course/LIR-Training-Handbook-Appendices/IPv6Chart_2015.pdf)' --- ![An Overview of IPv6 on Linode](an-overview-of-ipv6-on-linode-title-graphic.jpg "An Overview of IPv6 on Linode") diff --git a/docs/networking/linux-static-ip-configuration/index.md b/docs/networking/linux-static-ip-configuration/index.md index 5faa77ef517..2e3754a723f 100644 --- a/docs/networking/linux-static-ip-configuration/index.md +++ b/docs/networking/linux-static-ip-configuration/index.md @@ -6,7 +6,7 @@ description: 'Set static IP, routes and DNS in Linux.' keywords: ["static", "ip address", "addresses"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['networking/configuring-static-ip-interfaces/'] -modified: 2017-11-30 +modified: 2018-01-02 modified_by: name: Linode published: 2014-07-20 @@ -55,7 +55,7 @@ Our [Network Helper](/docs/platform/network-helper/) tool is enabled by default [![Linode Manager: Dashboard > Configuration Profile > Edit](linode-dashboard-hilighted_small.png)](linode-dashboard-hilighted.png) -2. Under **Filesystem/Boot Helpers** at the bottom of the page, set **Auto-configure Networking** to **No**. Then click **Save Changes**. +1. Under **Filesystem/Boot Helpers** at the bottom of the page, set **Auto-configure Networking** to **No**. Then click **Save Changes**. [![Linode Manager: Dashboard > Configuration Profile > Edit](network-helper-hilighted_small.png)](network-helper-hilighted.png) @@ -74,7 +74,7 @@ On the **Remote Access** tab of the Linode Manager, you'll see the following inf Below are example configurations for the given Linux distribution. Edit the example files substituting the example IP addresses with those of your Linode, gateway and DNS nameservers. Depending on the amount of addresses you want to configure, not all lines will be necessary. -### Arch, CoreOS Container Linux, Ubuntu 17.10 +### Arch, CoreOS Container Linux Networking in these distributions is managed entirely by *systemd*. See `man systemd-networkd` and `man systemd-resolved` for more information. @@ -242,7 +242,7 @@ iface eth0 inet6 static address 2001:db8:2000:aff0::2/32 {{< /file >}} -2. Populate `resolv.conf` with DNS resolver addresses and resolv.conf options ([see man 5 resolv.conf](https://linux.die.net/man/5/resolv.conf)). Be aware that resolv.conf can only use up to three `nameserver` entries. The *domain* and *options* lines aren't necessary, but useful to have. +1. Populate `resolv.conf` with DNS resolver addresses and resolv.conf options ([see man 5 resolv.conf](https://linux.die.net/man/5/resolv.conf)). Be aware that resolv.conf can only use up to three `nameserver` entries. The *domain* and *options* lines aren't necessary, but useful to have. {{< file "/etc/resolv.conf" >}} nameserver 203.0.113.1 @@ -303,14 +303,14 @@ IPV6_DEFAULTGW=fe80::1 IPV6ADDR_SECONDARIES=2001:db8:2000:aff0::3/64 2001:db8:2000:aff0::4/64 {{< /file >}} -2. Then add your IPv4 gateway to the network routes file: +1. Then add your IPv4 gateway to the network routes file: {{< file "/etc/sysconfig/network/routes" >}} # Destination Gateway Netmask Device default 198.51.100.1 - eth0 {{< /file >}} -3. Last, set your DNS resolvers and options for netconfig, which then uses this info to modify `resolv.conf`: +1. Last, set your DNS resolvers and options for netconfig, which then uses this info to modify `resolv.conf`: {{< file "/etc/sysconfig/network/config" >}} . . . @@ -321,10 +321,52 @@ NETCONFIG_DNS_STATIC_SEARCHLIST="members.linode.com" NETCONFIG_DNS_RESOLVER_OPTIONS="rotate" {{< /file >}} +### Ubuntu 18.04 -### Ubuntu +[Netplan](https://netplan.io/) is used to configure networking in Ubuntu 18.04 and later. Ubuntu Server is packaged with `systemd-networkd` as the [backend](https://netplan.io/design#design-overview) for Netplan, while NetworkManager is used as the Netplan backend in Ubuntu Desktop. The `ifupdown` package has been deprecated, and `/etc/network/interfaces` is no longer used, but it's still possible to configure static networking with `/etc/systemd/network/*.network` files. -The configuration below applies to 14.04 and 16.04. See above for 17.10. Ubuntu 14.04 and 16.04 include [resolvconf](http://packages.ubuntu.com/xenial/resolvconf) in their base installation. This is an application which manages the contents of `/etc/resolv.conf`, so do not edit `resolv.conf` directly. Instead, add DNS resolver addresses and options to the network interface file as shown. +{{< note >}} +If you have upgraded to Ubuntu 18.04 or later from an earlier version, you may need to enable `systemd-networkd`: + + systemctl enable systemd-networkd +{{< /note >}} + +1. Remove default configuration files that may interfere with static addressing: + + sudo rm /etc/systemd/network/05-eth0.network + sudo rm /etc/netplan/01-netcfg.yaml + +1. Create the configuration file for Netplan: + + {{< file "/etc/netplan/01-eth0.yaml" >}} +# This file describes the network interfaces available on your system +# For more information, see netplan(5). +network: + version: 2 + renderer: networkd + ethernets: + eth0: + dhcp4: no + dhcp6: no + addresses: + - 198.51.100.5/24 # Your Linode's public IPv4 address. + - 192.168.1.2/17 # Private IPv4 address. + - "2001:db8:2000:aff0::2/64" # Primary IPv6 address. + gateway4: 198.51.100.1 # Primary IPv4 gateway. + gateway6: "fe80::1" # Primary IPv6 gateway. + nameservers: + search: [members.linode.com] # Search domain. + addresses: [203.0.113.20,203.0.113.21] # DNS Server IP addresses. +{{< /file >}} + +1. Apply the changes and reboot: + + sudo netplan apply + + +### Ubuntu 14.04, 16.04 + +Ubuntu 14.04 and 16.04 include [resolvconf](http://packages.ubuntu.com/xenial/resolvconf) in their base installation. This is an application which manages the contents of `/etc/resolv.conf`, so do not edit `resolv.conf` directly. Instead, add DNS resolver addresses and options to the network interface file as shown. Like with Debian, systemd-networkd and systemd-resolved are both present but not enabled in Ubuntu 16.04. If you decide to enable these services to manage networking, you can not set static addresses in the file `/etc/network/interfaces` as shown below. You'll need to use the section further above for [Arch, Container Linux and Ubuntu 17.10](#arch-coreos-container-linux-ubuntu-17-10). For more information, see `man ifup`, `man ifdown`, `man interfaces 5`, `man systemd-networkd` and `man systemd-resolved`. @@ -362,20 +404,27 @@ iface eth0 inet6 static To apply your changes, reboot from the Linode Manager's dashboard. Rebooting ensures that the new settings take effect without issues and that the all networking services reliably start again. +If for whatever reason you prefer not to reboot, you should be able to bring your networking online using the following series of commands with most major Distributions: + + sudo ip addr flush dev eth0 + ip link set eth0 up + ip addr add 198.51.100.5/24 broadcast 198.51.100.255 dev eth0 + ip route add default via 198.51.100.1 + ## Test Connectivity 1. Log into your Linode via SSH. -2. Use the `ip` tool to be sure the addresses you set above were applied: +1. Use the `ip` tool to be sure the addresses you set above were applied: root@localhost:~# ip addr | grep inet inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host - inet 74.207.231.122/24 brd 74.207.231.255 scope global eth0 + inet 198.51.100.5/24 brd 198.51.100.255 scope global eth0 inet6 2600:3c02::f03c:91ff:fe24:3a2f/64 scope global inet6 fe80::f03c:91ff:fe24:3a2f/64 scope link -3. Confirm that your `/etc/resolv.conf` exists and is correct. Its contents will differ according to the Linux distribution. +1. Confirm that your `/etc/resolv.conf` exists and is correct. Its contents will differ according to the Linux distribution. root@localhost:~# cat /etc/resolv.conf nameserver 8.8.8.8 @@ -383,7 +432,7 @@ To apply your changes, reboot from the Linode Manager's dashboard. Rebooting ens domain members.linode.com options rotate -4. Try pinging something to confirm you have full connectivity, both over IPv4 and IPv6. +1. Try pinging something to confirm you have full connectivity, both over IPv4 and IPv6. ping -c 3 google.com ping6 -c 3 ipv6.google.com diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/index.md b/docs/networking/vpn/install-openvpn-access-server-on-linux/index.md index 69395b40688..4768a08ff53 100644 --- a/docs/networking/vpn/install-openvpn-access-server-on-linux/index.md +++ b/docs/networking/vpn/install-openvpn-access-server-on-linux/index.md @@ -5,7 +5,7 @@ description: 'This guide will show how to install and configure an OpenVPN acces keywords: ["openvpn", "vpn"] aliases: ['networking/vpn/openvpn-access-server/','networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-10-04 +modified: 2019-01-01 modified_by: name: Linode published: 2015-04-30 @@ -70,14 +70,14 @@ Configuration log file has been written to /usr/local/openvpn_as/init.log Please enter "passwd openvpn" to set the initial administrative password, then login as "openvpn" to continue -configuration here: https://74.207.231.122:943/admin +configuration here: https://192.0.2.0:943/admin To reconfigure manually, use the /usr/local/openvpn_as/bin/ovpn-init tool. +++++++++++++++++++++++++++++++++++++++++++++++ Access Server Web UIs are available here: -Admin UI: https://74.207.231.122:943/admin -Client UI: https://74.207.231.122:943/ +Admin UI: https://192.0.2.0:943/admin +Client UI: https://192.0.2.0:943/ +++++++++++++++++++++++++++++++++++++++++++++++ {{< /output >}} diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-access-status-overview.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-access-status-overview.png index 81f789e6cf7..15a74f19570 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-access-status-overview.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-access-status-overview.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-connect-windows-4-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-connect-windows-4-resize.png index a5023f4420b..cec13de544c 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-connect-windows-4-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-connect-windows-4-resize.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-download-profile-ubuntu-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-download-profile-ubuntu-resize.png index efc8574e720..1b205fd55d8 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-download-profile-ubuntu-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-download-profile-ubuntu-resize.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-2-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-2-resize.png index d1e170e3038..ce4b7857094 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-2-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-2-resize.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-3-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-3-resize.png index e009dc4611e..3adec8d8fd1 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-3-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-3-resize.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-4-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-4-resize.png index 188966c7cee..d7ecae1e639 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-4-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-osx-install-4-resize.png differ diff --git a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-windows-installer-1-resize.png b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-windows-installer-1-resize.png index 3b6f37aa7d8..251db3a5cb4 100644 Binary files a/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-windows-installer-1-resize.png and b/docs/networking/vpn/install-openvpn-access-server-on-linux/openvpn-windows-installer-1-resize.png differ diff --git a/docs/networking/vpn/pritunl-vpn-ubuntu/index.md b/docs/networking/vpn/pritunl-vpn-ubuntu/index.md index 2234aa7fc16..3ee4b0225b0 100644 --- a/docs/networking/vpn/pritunl-vpn-ubuntu/index.md +++ b/docs/networking/vpn/pritunl-vpn-ubuntu/index.md @@ -6,7 +6,8 @@ description: 'Set up Pritunl, an open source VPN server with an intuitive web in keywords: ["pritunl", "vpn", "vpn server", "ubuntu", "ubuntu 14.04"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2015-07-27 -modified: 2015-07-27 +modified: 2019-01-02 +deprecated: true modified_by: name: Linode title: 'Pritunl VPN Server and Management Panel on Ubuntu 14.04' diff --git a/docs/platform/billing-and-support/support-new-manager/community-site-header.png b/docs/platform/billing-and-support/support-new-manager/community-site-header.png new file mode 100644 index 00000000000..5b54d03e344 Binary files /dev/null and b/docs/platform/billing-and-support/support-new-manager/community-site-header.png differ diff --git a/docs/platform/billing-and-support/support-new-manager/index.md b/docs/platform/billing-and-support/support-new-manager/index.md new file mode 100644 index 00000000000..193ef7a23b2 --- /dev/null +++ b/docs/platform/billing-and-support/support-new-manager/index.md @@ -0,0 +1,71 @@ +--- +author: + name: Linode + email: docs@linode.com +description: Our guide to submitting support tickets and getting technical support. +keywords: ["support", "tech support", "tickets", "help desk"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['support/','platform/support/'] +modified: 2019-01-07 +modified_by: + name: Linode +published: 2012-03-21 +title: Linode Support +hiddenguide: true +--- + +Linode provides live technical support services 24 hours a day, 7 days a week. Linode Support ensures network availability, verifies that you can access your Linode, resolves performance issues with hosts, and works to fix any service-related issues you may be experiencing. + +Linode also offers a number of resources you can refer to when troubleshooting application and server configuration issues. These issues are generally outside the scope of Linode Support, and the other resources Linode provides can help you find solutions for your questions. + +## Resources + +Linode provides community spaces, an AI-powered assistant, libraries of reference material, and status updates for infrastructure components: + +- **Linode Community and the Community Site:** Customers and staff discuss the projects they're working on in the [Linode Community Site](/community/). You can search this site to see if your issue has already been addressed there. If you can't find any existing posts related to your issue, you can create a new one or ask your question in the [IRC channel](/chat/). + + ![Linode Community Site](community-site-header.png "Linode Community Site") + +- **Linode Support Bot:** The Linode Support Bot can answer a number of technical, billing, and account management questions, and it learns new answers every day. If the Linode Support Bot does not know an answer, it can create a support ticket for you. This feature is available from the Linode Cloud Manager by clicking navigating to the **Get Help**, and then selecting **Linode Support Bot**. After clicking this link, a chat panel will slide in from the right side of the page: + + ![Accessing the Linode Support Bot from the Manager](linode-support-bot.gif "Accessing the Linode Support Bot from the Manager") + +- **Linode Guides & Tutorials:** The [Guides & Tutorials](/docs/) library hosts a catalogued and searchable list of guides on a large number of topics. Here are a few that focus on troubleshooting: + + - The [Troubleshooting](/docs/troubleshooting/troubleshooting/) quick start guide provides answers for common server connectivity and management issues. + + - The [Linode Beginner's Guide](/docs/platform/billing-and-support/linode-beginners-guide/) displays a curated list of the most frequently asked questions from Linode customers. + + - The [Quick Answers](/docs/quick-answers/) section offers short guides with fast answers. + +- **Network Status:** If a data center experiences downtime, Linode's staff will regularly update the [Status webpage](http://status.linode.com/) until the issue has been resolved. + +## Scope of Support + +As declared in Linode's [Terms of Service](https://www.linode.com/tos), the Linode Support Team does not provide support regarding the installation or configuration of application software, such as mail and web server software, nor does it provide support regarding the configuration of Linux on your server. For these issues, please consult the various other [resources](#resources) Linode makes available. If you are providing a service to your customers, Linode does not offer tech support for those customers. + +Linode provides support related to the physical operation of your Linode virtual servers, such as: ensuring that your network traffic is properly routed to and from your Linodes' IP addresses; helping with base system performance issues that may be related to Linode's virtualization systems; and resolving potential hardware issues within Linode's infrastructure. + +Linode also helps with products such as NodeBalancers and Block Storage. Additionally, Linode Support can help you use Linode software such as the Linode Manager, and can help you with understanding and paying your bill. + +## Contacting Linode Support + +If you are not able to solve an issue with the resources listed above, you can contact Linode Support. As a reminder, application configuration and other similar topics are outside the [scope of Linode Support](#scope-of-support). The primary method for contacting Linode Support is to open a support ticket from the Linode Manager: + +1. Log in to the [Linode Cloud Manager](https://cloud.linode.com). +2. Select the **Get Help** from the left hand menu. +3. Under **Other Ways to Get Help** select **Customer Support**. +4. Select the **Open New Ticket** link. The **Open a Support Ticket** menu will appear. +5. From the **What is this regarding?** menu, select an product related to the issue you are reporting. +6. Enter a summary of your issue in the **Summary** field of this form. +7. Enter a description of the problem in the **Description** field. Please provide as many details as possible. +8. Optionally, you may attach a file to the ticket. +9. Click **Open Ticket**. + +The Linode Support Team will respond as soon as possible. + +If you are having difficulty logging in to the Linode Manager and opening a support ticket, you can email Linode Support at . You can also call Linode 24 hours a day at **(609) 380-7100** (international) or **(855) 454-6633** (North America toll-free). If your call is diverted to voicemail, please leave a detailed message explaining your problem. Your call will be returned as quickly as possible. + +## Reporting Abuse + +Email to report network abuse, unauthorized access attempts, or spam originating from the Linode platform. Please forward spam with the full headers intact, and include logs documenting unauthorized access. diff --git a/docs/platform/billing-and-support/support-new-manager/linode-support-bot.gif b/docs/platform/billing-and-support/support-new-manager/linode-support-bot.gif new file mode 100644 index 00000000000..035a4690392 Binary files /dev/null and b/docs/platform/billing-and-support/support-new-manager/linode-support-bot.gif differ diff --git a/docs/platform/billing-and-support/support/index.md b/docs/platform/billing-and-support/support/index.md index 33b0fd89fc7..d8a2492d4e3 100644 --- a/docs/platform/billing-and-support/support/index.md +++ b/docs/platform/billing-and-support/support/index.md @@ -6,11 +6,12 @@ description: Our guide to submitting support tickets and getting technical suppo keywords: ["support", "tech support", "tickets", "help desk"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['support/','platform/support/'] -modified: 2018-05-21 +modified: 2019-01-07 modified_by: name: Linode published: 2012-03-21 title: Linode Support +cloud_manager_link: platform/billing-and-support/support-new-manager --- Linode provides live technical support services 24 hours a day, 7 days a week. Linode Support ensures network availability, verifies that you can access your Linode, resolves performance issues with hosts, and works to fix any service-related issues you may be experiencing. @@ -39,9 +40,17 @@ Linode provides community spaces, an AI-powered assistant, libraries of referenc - **Network Status:** If a data center experiences downtime, Linode's staff will regularly update the [Status webpage](http://status.linode.com/) until the issue has been resolved. +## Scope of Support + +As declared in Linode's [Terms of Service](https://www.linode.com/tos), the Linode Support Team does not provide support regarding the installation or configuration of application software, such as mail and web server software, nor does it provide support regarding the configuration of Linux on your server. For these issues, please consult the various other [resources](#resources) Linode makes available. If you are providing a service to your customers, Linode does not offer tech support for those customers. + +Linode provides support related to the physical operation of your Linode virtual servers, such as: ensuring that your network traffic is properly routed to and from your Linodes' IP addresses; helping with base system performance issues that may be related to Linode's virtualization systems; and resolving potential hardware issues within Linode's infrastructure. + +Linode also helps with products such as NodeBalancers and Block Storage. Additionally, Linode Support can help you use Linode software such as the Linode Manager, and can help you with understanding and paying your bill. + ## Contacting Linode Support -If you are not able to solve an issue with the resources listed above, you can contact Linode Support. As a reminder, application configuration and other similar topics are outside the scope of Linode Support. The primary method for contacting Linode Support is to open a support ticket from the Linode Manager: +If you are not able to solve an issue with the resources listed above, you can contact Linode Support. As a reminder, application configuration and other similar topics are outside the [scope of Linode Support](#scope-of-support). The primary method for contacting Linode Support is to open a support ticket from the Linode Manager: 1. Log in to the [Linode Manager](https://manager.linode.com). 2. Select the **Support** link. diff --git a/docs/platform/block-storage/boot-from-block-storage-volume/index.md b/docs/platform/block-storage/boot-from-block-storage-volume/index.md index 84091414c35..cc9dec86bb1 100644 --- a/docs/platform/block-storage/boot-from-block-storage-volume/index.md +++ b/docs/platform/block-storage/boot-from-block-storage-volume/index.md @@ -6,7 +6,7 @@ description: "This guide shows how to boot a Linode from a Block Storage Volume. og_description: "This guide shows how to boot a Linode from a Block Storage Volume." keywords: ["block storage","volume","media","storage","disk", "boot", "boot disk"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-05-04 +modified: 2018-12-19 modified_by: name: Linode published: 2018-05-04 @@ -21,13 +21,13 @@ This guide shows how to create a duplicate of a primary disk to be booted from a ## Create the Block Storage Volume -Create a Block Storage Volume and attach it to the target Linode. Ensure that the Volume is the same size as the primary disk and in the same data center as the Linode. +Create a Block Storage Volume and attach it to the target Linode. Ensure that the Volume is the same size as, or larger than, the primary disk and in the same data center as the Linode. Failure to ensure the Volume is the right size will result in an error. Visit our [Block Storage guide](/docs/platform/how-to-use-block-storage-with-your-linode/) to create a Block Storage Volume. ## Duplicate a Primary Disk to a Block Storage Volume -1. [Reboot into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode) and mount the Block Storage Volume as `/dev/sdc` as shown here: +1. Reboot into Rescue Mode and mount the Block Storage Volume as `/dev/sdc` as shown below. Visit our [Rescue and Rebuild guide](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode) for more information on booting into Rescue Mode. ![Mount the Block Storage Volume as /dev/sdc and reboot into Rescue Mode](bs-rescue-mode-sdc.png "Mount the Block Storage Volume as /dev/sdc and reboot into Rescue Mode") diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/The_Linode_Backup_Service_smg.jpg b/docs/platform/disk-images/linode-backup-service-new-manager/The_Linode_Backup_Service_smg.jpg new file mode 100644 index 00000000000..b257859cbc7 Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/The_Linode_Backup_Service_smg.jpg differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-auto-enroll.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-auto-enroll.png new file mode 100644 index 00000000000..76ec7b2bdfd Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-auto-enroll.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-boot-this-config.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-boot-this-config.png new file mode 100644 index 00000000000..db41a0048c7 Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-boot-this-config.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-enable-backups.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-enable-backups.png new file mode 100644 index 00000000000..e137b7522e9 Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-enable-backups.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-menu.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-menu.png new file mode 100644 index 00000000000..c754e0b2709 Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-menu.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode-menu.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode-menu.png new file mode 100644 index 00000000000..95b8390d66a Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode-menu.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode.png new file mode 100644 index 00000000000..e7ad3f4469d Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-existing-linode.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-new-linode.png b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-new-linode.png new file mode 100644 index 00000000000..a4063b41fbd Binary files /dev/null and b/docs/platform/disk-images/linode-backup-service-new-manager/backups-restore-new-linode.png differ diff --git a/docs/platform/disk-images/linode-backup-service-new-manager/index.md b/docs/platform/disk-images/linode-backup-service-new-manager/index.md new file mode 100644 index 00000000000..820cc09c1f5 --- /dev/null +++ b/docs/platform/disk-images/linode-backup-service-new-manager/index.md @@ -0,0 +1,214 @@ +--- +author: + name: Alex Fornuto +description: 'Use the Linode Backup Service to protect and secure your data.' +keywords: ["backup service", "linode platform", "linode backup service", "enable a backup", "manage a backup", "schedule a backup", "disable a backup", "restore from a backup", "boot from a backup"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['backup-service/','platform/backup-service/', 'security/backups/linode-backup-service/','platform/linode-backup-service/'] +modified: 2018-12-20 +modified_by: + name: Linode +published: 2018-12-20 +title: 'The Linode Backup Service' +hiddenguide: true +--- + +![The Linode Backup Service](The_Linode_Backup_Service_smg.jpg) + +The *Linode Backup Service* is a subscription service add-on that automatically performs daily, weekly, and biweekly backups of your Linode. It's affordable, easy to use, and provides peace of mind. This guide explains how to enable and schedule your backups, make a manual backup snapshot, restore from a backup, and disable the Backup Service. + +## Pricing + +Pricing is per Linode and varies depending upon your Linode's plan: + +### Standard Plans + +| Service | Backups Hourly Rate | Backups Monthly +|:-------------|:--------------------|:--------------- +| Linode 1GB | $0.003/hr | $2/mo +| Linode 2GB | $0.004/hr | $2.50/mo +| Linode 4GB | $0.008/hr | $5/mo +| Linode 8GB | $0.016/hr | $10/mo +| Linode 16GB | $0.03/hr | $20/mo +| Linode 32GB | $0.06/hr | $40/mo +| Linode 64GB | $0.12/hr | $80/mo +| Linode 96GB | $0.18/hr | $120/mo +| Linode 128GB | $0.24/hr | $160/mo +| Linode 192GB | $0.36/hr | $240/mo | + +### High Memory Plans + +| Service | Backups Hourly Rate | Backups Monthly +|:-------------|:--------------------|:--------------- +| Linode 24GB | $0.0075/hr | $5/mo +| Linode 48GB | $0.015/hr | $10/mo +| Linode 90GB | $0.03/hr | $20/mo +| Linode 150GB | $0.06/hr | $40/mo +| Linode 300GB | $0.12/hr | $80/mo + +## Enable the Backup Service + +Use the Linode Manager to enable the Backup Service on a Linode. Here's how: + +1. Log in to the [Linode Cloud Manager](https://cloud.linode.com). + +1. From the **Linodes** screen, select the Linode you want to back up. + +1. Click the **Backups** tab. + + ![Enable Linode Backups by navigating to to the individual Linode's backup menu.](backups-enable-backups.png) + +1. Click **Enable Backups**. + +The Linode Backup Service is now enabled for the selected Linode. + +### Auto Enroll New Linodes in the Backup Service + +You can automatically enroll all new Linodes in the Backup Service. To do so, navigate to the **Account** page in the left-hand navigation, then select the **Global Settings** tab. + +Under **Backup Auto Enrollment** click on the toggle button to enable backups on all new Linodes. + +![Auto enroll all new Linodes in the Backup Service by navigating to the Global Settings tab in the Account settings and enabling Backups.](backups-auto-enroll.png) + +{{< note >}} +Enabling this setting does not retroactively enroll any previously created Linodes in the Backup Service. +{{< /note >}} + +## Manage Backups + +You'll manage your backups with a simple web interface in the Linode Manager. There's no software to install, and there are no commands to run. Just log in to the Linode Manager, navigate to the **Linodes** screen, select a Linode, and then click the **Backups** tab. The backups interface is shown below. + +![The Linode Backup Service interface](backups-menu.png) + +1. A list of available backups. Listed in this view are the date created, the label, how long the backup took to be created, the disks imaged, and the size of the resulting image. + +1. Manually create a backup by taking a *manual snapshot*. For more information, see the [Take a Manual Snapshot](#take-a-manual-snapshot) section. + +1. Configure backup schedule settings. For more information, see the [Schedule Backups](#schedule-backups) section. + +1. Cancel backups. After cancelling your backups you will have to wait 24 hours before you can re-enable them again. + +## How Linode Backups Work + +Backups are stored on a separate system in the same data center as your Linode. The space required to store the backups is *not* subtracted from your storage space. You can store four backups of your Linode, three of which are automatically generated and rotated: + +- **Daily backup:** Automatically initiated daily within the backup window you select. Less than 24 hours old. +- **Current week's backup:** Automatically initiated weekly within the backup window, on the day you select. Less than 7 days old. +- **Last week's backup:** Automatically initiated weekly within the backup window, on the day you select. Between 8 and 14 days old. +- **Manual Snapshot:** A user-initiated snapshot that stays the same until another snapshot is initiated. + +The daily and weekly backups are automatically erased when a new backup is performed. The Linode Backup Service does not keep automated backups older than 8 - 14 days. + +## Schedule Backups + +You can configure when automatic backups are initiated. Here's how: + +1. From the **Linodes** page, select the Linode. + +1. Click the **Backups** tab. + +1. Under **Settings**, select a time interval from the **Time of Day** menu. The Linode Backup Service will generate all backups between these hours. + +1. Select a day from the **Day of Week** menu. This is the day whose backup will be promoted to the weekly slot. The back up will be performed within the time period you specified in step 3. + +1. Click **Save Changes**. + +The Linode Backup Service will backup your Linode according to the schedule you specified. + +## Take a Manual Snapshot + +You can make a manual backup of your Linode by taking a *snapshot*. Here's how: + +1. From the **Linodes** page, select the Linode. + +1. Click the **Backups** tab. + +1. Under **Manual Snapshot**, give your snapshot a name and click **Take Snapshot**. + + {{< note >}} +Taking a new snapshot will overwrite a previously saved snapshot. +{{< /note >}} + +The Linode Backup Service initiates the manual snapshot. Creating the manual snapshot can take several minutes, depending on the size of your Linode and the amount of data you have stored on it. Other Linode Manager jobs for this Linode will not run until the snapshot job has been completed. + +## Restore from a Backup + +This section shows how to restore a backup to a [new](#restore-to-a-new-linode) Linode, or to an [existing](#restore-to-an-existing-linode) Linode. + +Restoring a backup will create a new [configuration profile](/docs/platform/disk-images/disk-images-and-configuration-profiles/#configuration-profiles) and a new set of [disks](/docs/platform/disk-images/disk-images-and-configuration-profiles/#disks) on your Linode. The restore process does not restore single files or directories automatically. Restoring particular files can be done by completing a normal restore, copying the files off of the new disks, and then removing the disks afterward. + +{{< note >}} +The size of the disk(s) created by the restore process will only be slightly larger than the total size of the files restored. This means that the disk(s) created will be 'full'. + +Some applications, like databases, need some amount of free unused space inside the disk in order to run. As a result, you may want to [increase your disk(s) size](/docs/platform/disk-images/resizing-a-linode/) after the restore process is completed. +{{< /note >}} + +To restore a backup to a different data center, first restore to a Linode in the same data center, creating a new one if necessary. Once the restore is complete, use the [Clone](/docs/migrate-to-linode/disk-images/clone-your-linode/) tab to copy the disk(s) to a Linode in a different data center. + +### Restore to a New Linode + +This section covers how to restore a backup to a new Linode that does not have any disks deployed to it. The new Linode will be located in the same data center. If you instead wish to restore your backup to an existing Linode, see the [next section](#restore-to-an-existing-linode). + +1. From **Linodes** page, select the Linode whose backups you intend to restore, and then click on the **Backups** tab. Select the ellipsis (three dots) next to the backup you would like to restore, and click **Deploy New Linode**. + + ![Click on the ellipsis menu icon to restore to a new Linode.](backups-restore-new-linode.png) + +1. You will be taken to the **Create New Linode** screen. The **Create from Backup** tab will already be selected for you, as will the fields corresponding to the Linode and backup that you are restoring from. Choose a Linode plan, enter a label for the new Linode, select any other options you prefer, and click **Create**. The new Linode will be created with the same password and SSH keys (if any) as the original. + + The backup disks and configuration profiles will be restored to the Linode you selected. Watch the notifications area for updates on the process. Restoring from a backup can take several minutes depending on the size of your Linode and the amount of data you have stored on it. + +### Restore to an Existing Linode + +You can restore a backup to any Linode located in the same data center, even if the target does not have the Backup Service enabled. To restore a backup to an existing Linode, you will need to make sure that you have enough storage space that is not currently assigned to disk images. + +{{< note >}} +If you are attempting to restore a disk to the same Linode the backup was created from, the restoration process will not delete the original disk for you. Manually delete the original disk to make room for the backup, if desired. +{{< /note >}} + +1. From **Linodes** page, select the Linode whose backups you intend to restore, and then click on the **Backups** tab. Observe the size of the backup you would like to restore, which is visible in the **Space Required** column. You will need at least this amount of unallocated disk space on the target Linode to complete the restore. + +1. Select the ellipsis (three dots) next to the backup you would like to restore, and click **Restore to Existing Linode**. + + ![Click on the ellipsis menu icon to restore to an existing Linode.](backups-restore-existing-linode.png) + +1. A menu will open with the Linodes that you can restore to. Select a Linode and click **Restore**. + + ![Select the Linode you would like to restore your backup to.](backups-restore-existing-linode-menu.png) + + You will be notified if you do not have enough space on your Linode to restore your backup. Optionally, you can choose to overwrite the Linode you are restoring to. + +1. If the amount of unallocated space available is greater than the size of the backup, you can proceed with restoring. If the amount of unallocated space is less than the size of the backup, you can stop the restoration workflow, [resize your existing disks](/docs/platform/disk-images/disk-images-and-configuration-profiles/#resizing-a-disk) on the target Linode to make room for it, and then come back to the restore page after the disk resize operation has finished. + + {{< note >}} +In some cases, you will not be able to shrink your disks enough to fit the restored backup. As an alternative, you can [change your Linode's plan](/docs/platform/disk-images/resizing-a-linode/) to a higher tier that offers more disk space. +{{< /note >}} + +1. From the **Restore to Existing Linode** menu, click **Restore**. + + Your backup will begin restoring to your Linode, and you can monitor its progress in the notifications area. Note that the time it takes to restore your backup will vary depending upon the restore size, and the number of files being restored. + +## Boot from a Backup + +After the backup has been restored, the disks and configuration profiles will be available to the destination Linode you selected. Select the restored configuration profile and reboot your Linode to start up from the restored disks: + +1. From the **Linodes** page, select the Linode that you restored the backup to. Navigate to the **Settings** tab and open the **Advanced Configurations** section. + +1. Select the ellipsis icon (three dots) next to the configuration profile that was restored and select **Boot This Config**. + + ![Navigate to the Advanced Configurations section of your Linode's Settings tab.](backups-boot-this-config.png) + +The Linode will start from the backup disks. Monitor the notifications area for progress. + +## Cancel the Backup Service + +You can cancel the Backup Service at any time. From your Linode's dashboard, choose the **Backups** tab and click the **Cancel Backups** link at the bottom of the page. Cancelling the service will remove your saved backups from the Linode platform. + +## Limitations + +There are some limitations to what the Linode Backup Service can back up. Here are some things you should be aware of: + +- The Backup Service must be able to mount your disks. If you've created partitions, configured full disk encryption, or made other changes that prevent us from mounting the disk as a filesystem, you will likely not be able to use the Linode Backup Service. The backup system operates at the file level, not at the block level. +- Because the Backup Service is file-based, the number of files stored on disk will impact both the time it takes for backups and restores to complete, and your ability to successfully take and restore backups. Customers who need to permanently store a large number of files may want to archive bundles of smaller files into a single file, or consider other backup services. +- Backups taken of ext4 or ext3 filesystems will be restored as ext4. Backups taken of other mountable filesystem types will have their contents restored using ext4. +- Files that have been modified but have the same size and modify time will not be considered "changed" during a subsequent backup. ACLs and extended attributes are *not* tracked. +- The Backup Service uses a snapshot of your disks to take consistent backups while your Linode is running. This method is very reliable, but can fail to properly back up the data files for database services like MySQL. If the snapshot occurs during a transaction, the database's files may be backed up in an unclean state. We recommend scheduling routine dumps of your database to a file on the filesystem. The resulting file will then be backed up, allowing you to restore the contents of the database if you need to restore from a backup. diff --git a/docs/platform/disk-images/linode-backup-service/index.md b/docs/platform/disk-images/linode-backup-service/index.md index 629ddb288a1..4c859f0d2ff 100644 --- a/docs/platform/disk-images/linode-backup-service/index.md +++ b/docs/platform/disk-images/linode-backup-service/index.md @@ -5,11 +5,12 @@ description: 'Use the Linode Backup Service to protect and secure your data.' keywords: ["backup service", "linode platform", "linode backup service", "enable a backup", "manage a backup", "schedule a backup", "disable a backup", "restore from a backup", "boot from a backup"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['backup-service/','platform/backup-service/', 'security/backups/linode-backup-service/','platform/linode-backup-service/'] -modified: 2018-12-11 +modified: 2018-12-20 modified_by: name: Linode published: 2012-03-14 title: 'The Linode Backup Service' +cloud_manager_link: platform/disk-images/linode-backup-service-new-manager/ --- ![The Linode Backup Service](The_Linode_Backup_Service_smg.jpg) @@ -61,6 +62,14 @@ You can also follow along with this video to enable the Backup Service on your L {{< youtube X1J1OigQre0 >}} +### Auto Enroll New Linodes in the Backup Service + +You can automatically enroll all new Linodes in the Backup Service. To do so, navigate to the **Account** tab in the Linode Manager, then select the **Account Settings** tab. In the **Linode Backup Enrollment** section, select the **AUTOMATIC** option and save the change. + +{{< note >}} +Enabling this setting does not retroactively enroll any previously created Linodes in the Backup Service. To enroll your existing Linodes in the Backup Service, click the **Enable backups for all existing Linodes** link in the **Linode Backup Enrollment** section and then confirm your choice in the page that appears. +{{< /note >}} + ## Manage Backups You'll manage your backups with a simple web interface in the Linode Manager. There's no software to install, and there are no commands to run. Just log in to the Linode Manager, click the **Linodes** tab, select a Linode, and then click the **Backups** tab. The backups interface is shown below. diff --git a/docs/platform/linode-managed/index.md b/docs/platform/linode-managed/index.md index 59bd984b3fc..6e8aaba96ab 100644 --- a/docs/platform/linode-managed/index.md +++ b/docs/platform/linode-managed/index.md @@ -6,7 +6,7 @@ description: How to configure service monitoring with Linode Managed. keywords: ["linode managed", "service monitoring"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['linode-managed/', 'uptime/linode-managed/'] -modified: 2018-10-16 +modified: 2019-01-02 modified_by: name: Zack Buhman published: 2013-02-12 @@ -15,6 +15,10 @@ title: Linode Managed [Linode Managed](https://www.linode.com/managed/) is a 24/7 incident response service. This robust, multi-homed monitoring system distributes monitoring checks to ensure that your servers remain online and available at all times. Linode Managed can monitor any service or software stack reachable over TCP or HTTP. Once you add a service to Linode Managed, we'll monitor it for connectivity, response, and total request time. This guide shows you how to start monitoring your services with Linode Managed. +{{< note >}} +Linode Managed applies to all Linodes on an account and will be billed at a rate of $100 per month for each Linode. If this service is not needed for all Linodes, a second account can be created to separate Managed Linodes from non-Managed Linodes. If needed, Linodes can be transferred by opening up a Support ticket from both accounts requesting the transfer. +{{< /note >}} + ## Getting Started First, you'll need to [sign up for Linode Managed](https://www.linode.com/managed/). Once Linode Managed is enabled for your account, you'll see the **Managed** tab when you log in to the Linode Manager, as shown below. You'll use this interface to interact with Linode Managed and monitor your servers. diff --git a/docs/platform/longview/longview-app-for-apache/index.md b/docs/platform/longview/longview-app-for-apache/index.md index 69b5cba7160..d0c4cff3ad1 100644 --- a/docs/platform/longview/longview-app-for-apache/index.md +++ b/docs/platform/longview/longview-app-for-apache/index.md @@ -6,7 +6,7 @@ description: Longview App for Apache keywords: ["Longview", " Apache", " statistics", " mod\\_status"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['longview/longview-for-apache/'] -modified: 2014-01-06 +modified: 2018-12-26 modified_by: name: Linode published: 2013-11-04 @@ -36,11 +36,13 @@ If you already have Longview installed, and later want to install Apache and ena For most people, Longview should be able to configure itself automatically, and you will receive output something like this: +{{< output >}} [ ok ] Stopping Longview Agent: longview. Checking Apache configuration... Found Apache status page at http://127.0.0.1/server-status?auto (default URL) [ ok ] Starting Longview Agent: longview. update-rc.d: using dependency based boot sequencing +{{}} Once you see this successful message, the Longview Apache App should automatically start collecting Apache data. Refresh the Longview Apache tab in the Linode Manager to start viewing your stats. @@ -58,14 +60,12 @@ To enable the Apache Longview app manually, follow these steps on your Linode vi 2. Your `httpd.conf` file (or the file where you enabled mod\_status; `status.conf` is another common location) should look like the following: - {{< file "httpd.conf" >}} + {{< file "httpd.conf" apache >}} ExtendedStatus On SetHandler server-status - Order deny,allow - Deny from all - Allow from 127.0.0.1 + Require local @@ -73,7 +73,7 @@ To enable the Apache Longview app manually, follow these steps on your Linode vi 3. Edit `/etc/linode/longview.d/Apache.conf` to look like the following: - {{< file "/etc/linode/longview.d/Apache.conf" >}} + {{< file "/etc/linode/longview.d/Apache.conf" apache >}} location http://127.0.0.1/server-status?auto {{< /file >}} @@ -178,6 +178,7 @@ If you choose: - **\**: the Longview tool will quit, and you can do a [manual configuration](#manual-configuration-all-distributions). This is the safer option. - **\**: the Longview tool will attempt to enable mod\_status, set the status page location, and restart Apache. This option is easier, but has the potential to disrupt your current Apache configuration. If you choose yes, and the configuration is successful, you should see output like the following: + {{< output >}} [ ok ] Stopping Longview Agent: longview. Checking Apache configuration... Enabling module status. @@ -187,12 +188,15 @@ If you choose: Apache mod_status enabled [ ok ] Starting Longview Agent: longview. update-rc.d: using dependency based boot sequencing + {{}} Refresh the Longview Apache tab in the Linode Manager to verify that it's working now. If instead you receive a failure message, such as: + {{< output >}} [FAIL] Reloading web server config: apache2 failed! + {{}} You will need to double-check your Apache installation, and then do a [manual configuration](#manual-configuration-all-distributions). @@ -226,7 +230,7 @@ To fix this, follow these steps: 3. Check the location for `mod_status`. The default location on Debian and Ubuntu systems is `http://127.0.0.1/server-status?auto` on localhost. In the Apache configuration file (typically `httpd.conf` or `status.conf`), this is designated with the lines: - {{< file "httpd.conf" >}} + {{< file "httpd.conf" apache >}} SetHandler server-status @@ -238,7 +242,7 @@ To fix this, follow these steps: To direct Longview to the cPanel customized status page, edit the `location` line in `/etc/linode/longview.d/Apache.conf` to match the following: - {{< file "/etc/linode/longview.d/Apache.conf" >}} + {{< file "/etc/linode/longview.d/Apache.conf" apache >}} location http://localhost/whm-server-status?auto {{< /file >}} @@ -247,7 +251,7 @@ location http://localhost/whm-server-status?auto 4. Longview is designed to check the default location automatically. If you use the default location shown above, you should be done. Refresh the Longview Apache tab in the Linode Manager to verify that it's working now. 5. If you're not using the default location, you need to create a new file, `/etc/linode/longview.d/Apache.conf`, and set the `location` variable to match what you set in the Apache configuration file: - {{< file "/etc/linode/longview.d/Apache.conf" >}} + {{< file "/etc/linode/longview.d/Apache.conf" apache >}} location http://127.0.0.1/custom/location/path {{< /file >}} @@ -296,7 +300,7 @@ If some of your Apache graphs are missing, you may see the error `Enable Extende This indicates that you need to add the following line to your Apache configuration file (typically `httpd.conf` or `status.conf`) in the `` section: -{{< file "httpd.conf" >}} +{{< file "httpd.conf" apache >}} ExtendedStatus On {{< /file >}} diff --git a/docs/platform/tokyo2-migration/index.md b/docs/platform/tokyo2-migration/index.md index 679f2ba1fec..bbbfc6a87eb 100644 --- a/docs/platform/tokyo2-migration/index.md +++ b/docs/platform/tokyo2-migration/index.md @@ -5,10 +5,10 @@ author: description: Linode is retiring our Tokyo 1 data center, and this guide shows how to migrate to our new Tokyo 2 location. keywords: ["tokyo 1", "tokyo 2", "migrate", "migration", "migrating", "data center"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-09-27 +modified: 2018-12-31 modified_by: name: Linode -published: 2018-09-27 +published: 2018-12-31 title: Migrating from Tokyo 1 to Tokyo 2 hiddenguide: true promo_default: false @@ -26,44 +26,49 @@ The Tokyo 2 data center provides access to features that are not available in To ## When will My Linodes be Migrated? -You will receive a support ticket from Linode that lists the scheduled dates and times for the migration of your Tokyo 1 Linodes. This ticket will be sent to you at least three months in advance of the start of your first migration. +You will receive a support ticket from Linode that lists the scheduled dates and times for the migrations of your Tokyo 1 Linodes. This ticket will be sent to you at least three months in advance of the start of your first migration. Different Linodes will be scheduled to migrate on different dates and times. The support ticket you receive will list the migration schedule for all of your Tokyo 1 Linodes. **Linode will not be able to adjust this schedule of migrations.** You are able to move your servers to Tokyo 2 before the scheduled migration dates. We recommend that all customers move their servers early. Moving early will help you better control the uptime of your services. +### Will my Linode Backups be Migrated? + +If your Tokyo 1 Linode is enrolled in the [Linode Backup Service](https://www.linode.com/backups), it will remain enrolled in the service after the migration. However, the saved backups and snapshots that have been created for your Linode prior to the migration **will not move** to the new Tokyo 2 facility. Instead, your Linode will start creating new scheduled backups after it is migrated to the Tokyo 2 date center (according to its [backup schedule](/docs/platform/disk-images/linode-backup-service/#schedule-backups)). + ## What are My Options for Migrating? There are three different options for moving your servers to the Tokyo 2 data center. The first two of these methods can be followed before the scheduled migration deadlines for your Linodes. -Regardless of which option you choose, **all of your Tokyo 1 Linodes' IP addresses will change** when moving to the new location. This includes all public and private IPv4 addresses, as well as public and link-local IPv6 addresses. +Regardless of which option you choose, **all of your Tokyo 1 Linodes' IP addresses will change** when moving to the new location. This includes all public and private IPv4 addresses, as well as public and link-local IPv6 addresses. When the schedule for your Linodes' migrations is set, new IP addresses in the Tokyo 2 data center will be reserved in advance for each of your Tokyo 1 Linodes. These reserved addresses will be listed in the same support ticket that lists the schedule for your migrations. Later sections in this guide describe how to update your [network interface configuration](#update-your-network-configuration) and [DNS records](#update-dns-records) to use the new IPs. -{{< note >}} -If your Tokyo 1 Linode is enrolled in the [Linode Backup Service](https://www.linode.com/backups), it will remain enrolled in the service after the migration. However, the saved backups and snapshots that have been created for your Linode prior to the migration **will not move** to the new Tokyo 2 facility. Instead, your Linode will start creating new scheduled backups after it is migrated to the Tokyo 2 date center (according to its [backup schedule](/docs/platform/disk-images/linode-backup-service/#schedule-backups)). -{{}} - ### Option 1: Migrate Early When you receive the support ticket which lists your migration times, you will also see a new banner appear in the dashboard of each of your Tokyo 1 Linodes. This banner will give you the option to initiate an early migration of your Linode to Tokyo 2. +{{< note >}} +The early migration banner will actually appear on your Tokyo 1 Linodes' dashboards before you receive the support ticket for your scheduled migrations. You will be able to perform a migration as soon as you see this banner. However, new IPs in the Tokyo 2 data center will not be reserved for your Linode until you receive the support ticket. + +This means that if you migrate before you receive your ticket, you will not know what your new IP addresses will be before you start the migration. Once you start the early migration, your new Tokyo 2 IP addresses will become visible in the [Remote Access tab](/docs/platform/manager/remote-access/) of the Linode's dashboard. +{{< /note >}} + Clicking on the banner will take you to a new page which shows the estimated duration for the migration. This page will let you initiate the migration. The following sequence executes when you start the migration: 1. If your Linode is running, your Linode is gracefully powered down. -1. At the same time, your Linode will be assigned new IP addresses. You will be able to view these new IPs from the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. +1. At the same time, your Linode will be assigned its reserved Tokyo 2 IP addresses. These new IPs will become visible in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. 1. The migration of your Linode is started immediately after the shutdown completes. 1. If the Linode was running before the migration started, it will be automatically booted after the migration completes. If the Linode was not running, it will remain offline after the migration. -You will be able to monitor the progress of your Linode's migration from its dashboard. While waiting on the migration to complete, [update your DNS records](#update-dns-records) to use your new IP addresses. DNS changes can take time to propagate, so we recommend doing this quickly after the migration is initiated. - -When the migration finishes, you may need to update your Linode's [network configuration](#update-your-network-configuration) to use the new IPs. +You will be able to monitor the progress of your Linode's migration from its dashboard. While waiting on the migration to complete, update your [DNS records](#update-dns-records) to use your new IP addresses. DNS changes can take time to propagate, so we recommend doing this quickly after the migration is initiated. Consider updating your [domain's TTL](#update-your-ttl) *before* you initiate the migration. +When the migration finishes, you may need to update your Linode's [network configuration](#update-your-network-configuration) to work properly with its new IP addresses. ### Option 2: Clone your Linodes @@ -79,7 +84,11 @@ Cloning your Linodes offers these benefits: - You will be able to set up your new Linodes in Tokyo 2 and verify that they run normally before you remove your Tokyo 1 Linodes. -- When you have verified that your Tokyo 2 Linodes work, you can update your DNS records. Updating your DNS records will gracefully direct your users to your new servers without downtime. +- To move your customers to your new Tokyo 2 servers, you can update your DNS records with your new Tokyo 2 IP addresses. You can keep your Tokyo 1 servers running while you update your DNS. Updating your DNS records in this way will gracefully direct your users to your new servers without downtime. + +{{< note >}} +New Linodes that you create in Tokyo 2 will not receive the IP addresses that are reserved for your Tokyo 1 Linodes' scheduled migrations. If you choose to clone your Linodes, your new Tokyo 2 Linodes' IP addresses will be listed in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linodes' dashboards. +{{< /note >}} To clone a Linode, follow these steps: @@ -87,11 +96,13 @@ To clone a Linode, follow these steps: 1. Follow the [cloning guide](/docs/platform/disk-images/clone-your-linode/) to complete the clone operation. When following these steps, enable all of the configuration profile options for your Linode. -After you have created your new Linode and completed the clone, you may need to update your new Linode's [network configuration](#update-your-network-configuration). After making sure that your new Tokyo 2 servers all work as expected, [update your DNS records](#update-dns-records). +1. Boot the new Tokyo 2 Linode when the clone completes. -{{< note >}} +After you have completed the clone, you may need to update your new Linode's [network configuration](#update-your-network-configuration) to work properly with its new IP addresses. After making sure that your new Tokyo 2 servers all work as expected, update your [DNS records](#update-dns-records). Consider updating your [domain's TTL](#update-your-ttl) *before* you update your DNS records. + +{{< caution >}} If you clone your Tokyo 1 Linodes to Tokyo 2, your Tokyo 1 Linodes will remain running and active on your account by default. To prevent double-billing, [remove](/docs/platform/billing-and-support/billing-and-payments/#removing-services) the original Tokyo 1 Linodes after you have finished your clones. -{{< /note >}} +{{< /caution >}} ### Option 3: Migrate when Scheduled @@ -101,7 +112,7 @@ If you do not choose to migrate or clone early, Linode will automatically start If Linode initiates your migration when it is scheduled, **your Linode will not be powered on automatically when the migration finishes**. Your Linode is not powered on in order to minimize potential security issues that could result from booting under a new IP assignment. {{< /caution >}} -After the scheduled migration completes, you can log into the Linode's dashboard and power it on. You may need to update your new Linode's [network configuration](#update-your-network-configuration). Then, [update your DNS records](#update-dns-records). You can also choose to update your DNS records as soon as the migration starts. +After the scheduled migration completes, you can log into the Linode's dashboard and power it on. You may need to update your new Linode's [network configuration](#update-your-network-configuration) to work properly with its new IP addresses. Then, update your [DNS records](#update-dns-records). You can also choose to update your DNS records as soon as the migration starts. Consider updating your [domain's TTL](#update-your-ttl) *before* the scheduled migration starts. ## Update your Network Configuration @@ -115,12 +126,18 @@ You may also need to update the configuration of your applications if they expli ## Update DNS Records -To direct your users to your new Tokyo 2 servers' IPs, you need to update your DNS records to use the new IPs. If you are using Linode's DNS Manager, follow the DNS Manager guide to [update your records](/docs/platform/manager/dns-manager/#edit-records). +To direct your users to your new Tokyo 2 servers' IPs, you need to update your DNS records to use the new IPs. If you are using Linode's DNS Manager, follow the DNS Manager guide to update your [DNS records](/docs/platform/manager/dns-manager/#edit-records). If you use a different DNS provider, you will need to visit that provider's website to update your records. {{< content "update-dns-at-common-name-server-authorities" >}} +### Update your TTL + +DNS resolvers hold a cache for your domain's records. A resolver will update its cached records according to your domain's *Time To Live* (TTL) value. This means that when you update your DNS records, other DNS resolvers will not immediately update their records for your domain. Instead, they will receive your new records when their caches expires. + +Having a short TTL means that your users will be directed to your new IP addresses faster when you update your DNS records. It is recommended that you lower your TTL ahead of your migrations. To set the TTL, review the [DNS Manager](/docs/platform/manager/dns-manager/#set-the-time-to-live-or-ttl) guide. After you complete your migrations and have updated your DNS successfully, you can raise your TTL back to the default value of 24 hours. + ## Contact Linode Support If you have any issues when migrating or cloning to Tokyo 2, or if you have any questions about this process, please [contact Linode Support](/docs/platform/billing-and-support/support/#contacting-linode-support). Technical questions about your Linux deployment's configuration are often outside the scope of support. For any out-of-scope issues, we also recommend searching and asking technical questions in the [Linode Community Site](/community/questions/). \ No newline at end of file diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/advanced-configurations.png b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/advanced-configurations.png new file mode 100644 index 00000000000..0e93eb0fcf5 Binary files /dev/null and b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/advanced-configurations.png differ diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/index.md b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/index.md new file mode 100644 index 00000000000..fa826a9db5c --- /dev/null +++ b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/index.md @@ -0,0 +1,43 @@ +--- +author: + name: Linode Community + email: docs@linode.com +description: 'Increase or decrease the size of your Linode disk.' +keywords: ["linode", "cloud manager", "disk", "resize"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-12-26 +modified: 2018-12-26 +modified_by: + name: Linode +title: "Resize a Linode Disk" +show_on_rss_feed: false +hiddenguide: true +--- +This Quick Answer will show you how to resize a disk on your Linode. See our [Disks and Configuration Profiles](/docs/platform/disk-images/disk-images-and-configuration-profiles/) guide for additional information. + +1. Log in to the [Linode Cloud Manager](https://cloud.linode.com/). +1. Click **Linodes** from the sidebar menu and select the Linode to be resized. + + ![List of Linodes](linodes-list.png "List of all your Linodes") + +1. Power off the Linode. Watch the Linode's **Summary** section for confirmation that the Linode has powered off. + + ![Power off Linode](power-off.png "Power off your Linode") +1. Navigate to the **Settings** tab and open the **Advanced Configurations** panel. + + ![Linode advanced configurations](advanced-configurations.png "Linode advanced configurations") +1. Under the **Disks** section, find the disk you would like to resize and choose the **Resize** option from the menu. + + ![Resize the Linode disk](resize-linode.png "Resize the Linode Disk") + +1. In the **Size** field, enter a different size for the disk in megabytes and select **Submit**. + + ![Resize the Linode disk and submit](submit-linode-resize.png "Resize the Linode disk and submit") + +1. Watch for confirmation that the disk has been resized. + +1. Power on your Linode once the resize is complete. + +{{< note >}} +The Linode Cloud Manager will not allow you to resize your disk to an amount smaller than the space taken up by files on your filesystem. To confirm how much space you're using, issue the `df -h` command on your Linode. +{{< /note >}} \ No newline at end of file diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/linodes-list.png b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/linodes-list.png new file mode 100644 index 00000000000..eb0a20fdc6e Binary files /dev/null and b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/linodes-list.png differ diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/power-off.png b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/power-off.png new file mode 100644 index 00000000000..a9ecdab2b7d Binary files /dev/null and b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/power-off.png differ diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/resize-linode.png b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/resize-linode.png new file mode 100644 index 00000000000..283a5311e50 Binary files /dev/null and b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/resize-linode.png differ diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/submit-linode-resize.png b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/submit-linode-resize.png new file mode 100644 index 00000000000..59ec524d87b Binary files /dev/null and b/docs/quick-answers/linode-platform/resize-a-linode-disk-new-manager/submit-linode-resize.png differ diff --git a/docs/quick-answers/linode-platform/resize-a-linode-disk/index.md b/docs/quick-answers/linode-platform/resize-a-linode-disk/index.md index 28142769a77..0ed634ead09 100644 --- a/docs/quick-answers/linode-platform/resize-a-linode-disk/index.md +++ b/docs/quick-answers/linode-platform/resize-a-linode-disk/index.md @@ -10,9 +10,10 @@ modified_by: name: Linode published: 2017-05-08 title: Resize a Linode Disk +cloud_manager_link: quick-answers/linode-platform/resize-a-linode-disk-new-manager --- -This QuickAnswer will show you how to resize a disk on your Linode. See our [Disks and Configuration Profiles](/docs/platform/disk-images/disk-images-and-configuration-profiles/) guide for additional information. +This Quick Answer will show you how to resize a disk on your Linode. See our [Disks and Configuration Profiles](/docs/platform/disk-images/disk-images-and-configuration-profiles/) guide for additional information. 1. Log in to the [Linode Manager](https://manager.linode.com). 2. Click the **Linodes** tab. @@ -24,5 +25,5 @@ This QuickAnswer will show you how to resize a disk on your Linode. See our [Dis 8. Click **Boot** to turn on the Linode. {{< note >}} -The Linode Manager will not allow you to resize your disk to an amount smaller than the space taken up by files on your filesystem. To confirm how much space you're using, issue the `df -h` command on your Linode +The Linode Manager will not allow you to resize your disk to an amount smaller than the space taken up by files on your filesystem. To confirm how much space you're using, issue the `df -h` command on your Linode. {{< /note >}} diff --git a/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/index.md b/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/index.md index 612aa351004..ba8186d6bb7 100644 --- a/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/index.md +++ b/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/index.md @@ -6,13 +6,15 @@ description: "Let's Encrypt is an SSL certificate authority managed by the Inter keywords: ['ACME','HTTPS',"Let's Encrypt",'SSL','SSL certificates', 'renew certificate'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2016-02-25 -modified: 2018-05-11 +modified: 2018-12-19 modified_by: name: 'Linode' title: "Install Let's Encrypt to Create SSL Certificates" contributor: name: 'Sean Webber' link: 'https://github.com/seanthewebber' +deprecated: true +deprecated_link: quick-answers/websites/secure-http-traffic-certbot/ external_resources: - "[Let's Encrypt Homepage](https://letsencrypt.org/)" --- @@ -21,9 +23,9 @@ external_resources: [Let's Encrypt](https://letsencrypt.org/) is an SSL certificate authority managed by the Internet Security Research Group (ISRG). It utilizes the [Automated Certificate Management Environment](https://github.com/ietf-wg-acme/acme/) (ACME) to automatically deploy free SSL certificates that are trusted by nearly all major browsers. -{{< note >}} +{{< caution >}} For most situations, the recommended method for installing Let's Encrypt certificates is the official [Certbot](https://certbot.eff.org/) tool. Certbot automates the process of obtaining and installing a certificate, and can also automatically update your web server configuration. The instructions in this guide install Let's Encrypt and add certificates manually, which is not necessary for most users. -{{< /note >}} +{{< /caution >}} ## Before you Begin @@ -74,7 +76,7 @@ Let's Encrypt automatically performs Domain Validation (DV) using a series of *c sudo -H ./letsencrypt-auto certonly --standalone -d example.com -d www.example.com {{< note >}} -Let's Encrypt **does not** deploy wildcard certificates. Each subdomain requires its own certificate. +ACME version 2 now supports wildcard certificates for subdomains by using the a DNS challenge. For more information on obtaining wildcards, visit the [Let's Encrypt documentation](https://community.letsencrypt.org/t/acme-v2-production-environment-wildcards/55578). {{< /note >}} 2. When prompted, specify an administrative email address. This will allow you to regain control of a lost certificate and receive urgent security notices if necessary. Press **ENTER** or **RETURN** to save. diff --git a/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/index.md b/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/index.md index c0c36349b56..d36cce30209 100644 --- a/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/index.md +++ b/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/index.md @@ -5,9 +5,9 @@ author: description: 'FreeBSD is a free and open source operating system based on the Berkeley Software Distribution from the late 1970''s. Today FreeBSD is used all over the world.' keywords: ["freebsd", "bsd"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2016-03-14 +modified: 2019-01-02 modified_by: - name: Rainbow + name: Linode published: 2016-03-14 title: 'Install FreeBSD on Linode' external_resources: @@ -64,7 +64,7 @@ Begin by creating the Linode and making some preliminary changes. - /dev/sda: FreeBSD disk image. - root / boot device: Standard /dev/sda -4. Boot into **Rescue Mode** with the installer disk mounted to `/dev/sda` and access your Linode using [Lish via SSH](/docs/platform/manager/using-the-linode-shell-lish/) from the **Remote Access** tab of the Linode Manager. +4. [Boot into **Rescue Mode**](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode) with the installer disk mounted to `/dev/sda` and access your Linode using [Lish via SSH](/docs/platform/manager/using-the-linode-shell-lish/) from the **Remote Access** tab of the Linode Manager. 5. Once in Rescue Mode, run the following command, replacing latest with the latest `memstick.img` file from the [FreeBSD download page](ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/ISO-IMAGES/): diff --git a/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/index.md b/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/index.md index ccdef07992f..655c67b1eac 100644 --- a/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/index.md +++ b/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/index.md @@ -7,7 +7,7 @@ keywords: ["apache", " mod_security"] og_description: 'Besides providing logging capabilities, Mod_security, as a web-detection tool, can monitor the HTTP traffic in real time in order to spot attacks. This guide shows how to load and run Mod_security on your Linode.' license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['web-servers/apache/mod-security/','websites/apache-tips-and-tricks/modsecurity-on-apache/','web-servers/apache-tips-and-tricks/modsecurity-on-apache/'] -modified: 2017-10-27 +modified: 2018-12-19 modified_by: name: Linode published: 2011-11-10 @@ -30,7 +30,7 @@ Although ModSecurity comes with a default configuration, this guide will use OWA Before you install ModSecurity, you will need to have Apache installed on your Linode. This guide will use a LAMP stack; for installation instructions, see the [LAMP Guides](/docs/websites/lamp/). -### Ubuntu/Debian +### Debian sudo apt install libapache2-modsecurity @@ -46,6 +46,18 @@ Verify the version of ModSecurity is 2.8.0 or higher: When listing all mods using `apachectl -M`, ModSecurity is listed under the name `security2_module`. {{< /note >}} +### Ubuntu + + sudo apt-get install libapache2-mod-security2 + +Restart Apache: + + /etc/init.d/apache2 restart + +Verify the version of ModSecurity is 2.8.0 or higher: + + apt-cache show libapache2-mod-security2 + ### CentOS yum install mod_security diff --git a/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/index.md b/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/index.md index 07a77940693..3a6de7311b7 100644 --- a/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/index.md +++ b/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/index.md @@ -6,9 +6,9 @@ description: Tuning your Apache server to optimize your website. keywords: ["configuration", "apache", "web server", "resource tuning"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['websites/apache-tips-and-tricks/tuning-your-apache-server/'] -modified: 2017-08-11 +modified: 2018-12-31 modified_by: - name: AMiller + name: Linode published: 2015-02-27 title: Tuning Your Apache Server external_resources: @@ -190,4 +190,10 @@ If you need to increase the `MaxClients` above `256`, then increase your `Server ### KeepAlive -The `KeepAlive` directive, when set to `on` allows for multiple requests to come from the same TCP connection. When a KeepAlive connection is used, it counts as only one request against the `MaxRequestsPerChild` directive. This value is kept outside of your MPM, but can tie in closely to your MPM choices. +[KeepAlive](https://httpd.apache.org/docs/2.4/mod/core.html#keepalive) allows connecting clients to use a single TCP connection to make multiple requests, instead of opening a new one for each request. This decreases page load times and lowers CPU use for your web server, at the expense of an increase in your server's RAM use. + +In the past, this setting was often disabled to conserve RAM use, but server resources have become less expensive, and the option is now enabled by default in Apache 2.4. Enabling KeepAlive can significantly benefit your site's user experience, so be wary of disabling it without testing the effects of doing so. KeepAlive can be enabled or disabled in your web server configuration, or within a Virtual Host block. + +{{< note >}} +A KeepAlive connection will be counted as a single "request" for the [`MaxConnectionsPerChild` directive](https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxconnectionsperchild). +{{< /note >}} \ No newline at end of file diff --git a/docs/web-servers/apache/apache-web-server-debian-7/index.md b/docs/web-servers/apache/apache-web-server-debian-7/index.md index a5863c0febb..d03d1ab3bab 100644 --- a/docs/web-servers/apache/apache-web-server-debian-7/index.md +++ b/docs/web-servers/apache/apache-web-server-debian-7/index.md @@ -1,4 +1,5 @@ --- +deprecated: true author: name: Linode email: docs@linode.com @@ -6,7 +7,7 @@ description: 'Install Apache on your Debian 7 server, configure virtual hosting, keywords: ["apache", "apache 2", "debian", "debian 7", "wheezy", "apache web server"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['web-servers/apache/installation/debian-7-wheezy/','websites/apache/apache-2-web-server-on-debian-7-wheezy/','websites/apache/how-to-install-and-configure-the-apache-web-server-on-debian-7-wheezy/','websites/apache/apache-web-server-debian-7/'] -modified: 2014-01-10 +modified: 2018-12-31 modified_by: name: Linode published: 2013-09-05 diff --git a/docs/web-servers/apache/apache-web-server-debian-8/index.md b/docs/web-servers/apache/apache-web-server-debian-8/index.md index e2a1957acee..0153073cd9b 100644 --- a/docs/web-servers/apache/apache-web-server-debian-8/index.md +++ b/docs/web-servers/apache/apache-web-server-debian-8/index.md @@ -6,7 +6,7 @@ description: 'Install Apache on your Debian 8 (Jessie) server, configure virtual keywords: ["apache debian 8", "apache debian jessie", "linux web server", "apache on debian", "apache jessie", "apache", "debian", "web server"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['websites/apache/apache-web-server-debian-8/'] -modified: 2017-09-05 +modified: 2018-12-31 modified_by: name: Linode published: 2015-06-29 @@ -43,16 +43,9 @@ This guide is written for a non-root user. Commands that require elevated privil ## Install Apache -1. Install the Apache 2 web server, its documentation, and a collection of utilities: +Install the Apache 2 web server, its documentation, and a collection of utilities: - sudo apt-get install apache2 apache2-doc apache2-utils - -2. Edit the main Apache configuration file and turn off the `KeepAlive` setting: - - {{< file "/etc/apache2/apache2.conf" aconf >}} -KeepAlive Off - -{{< /file >}} + sudo apt-get install apache2 apache2-doc apache2-utils ### Configure the Multi-Processing Module diff --git a/docs/web-servers/apache/apache-web-server-on-centos-6/index.md b/docs/web-servers/apache/apache-web-server-on-centos-6/index.md index ab204909e4e..c74a13a9d8e 100644 --- a/docs/web-servers/apache/apache-web-server-on-centos-6/index.md +++ b/docs/web-servers/apache/apache-web-server-on-centos-6/index.md @@ -6,9 +6,9 @@ description: 'Install Apache on your CentOS 6 server, configure virtual hosting, keywords: ["Apache", "web sever", "CentOS 6", "centos", "apache 2", "httpd"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['web-servers/apache/installation/centos-6/','websites/apache/apache-2-web-server-on-centos-6/'] -modified: 2015-07-31 +modified: 2018-12-31 modified_by: - name: Elle Krout + name: Linode published: 2013-11-11 title: Apache Web Server on CentOS 6 external_resources: @@ -50,8 +50,6 @@ This guide is written for a non-root user. Commands that require elevated privil 2. Edit the main Apache configuration file to adjust the resource use settings. The settings shown below are a good starting point for a **Linode 2GB**: {{< file "/etc/httpd/conf/httpd.conf" aconf >}} -KeepAlive Off - StartServers 4 diff --git a/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/index.md b/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/index.md index daf0abd7afa..4233101f06b 100644 --- a/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/index.md +++ b/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/index.md @@ -6,7 +6,7 @@ description: 'Install Apache on your Ubuntu 14.04 (Trusty Tahr) server, configur keywords: ["apache", "ubuntu", "ubuntu 14.04", "trusty tahr", "http", "web server"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['websites/apache/apache-web-server-on-ubuntu-14-04/'] -modified: 2017-09-05 +modified: 2018-12-31 modified_by: name: Linode published: 2015-07-31 @@ -41,19 +41,11 @@ This guide is written for a non-root user. Commands that require elevated privil sudo apt-get update && sudo apt-get upgrade - ## Install Apache -1. Install Apache 2.4, its documentation, and a collection of utilities: - - sudo apt-get install apache2 apache2-doc apache2-utils - -2. Edit the main Apache configuration file and turn off the `KeepAlive` setting: +Install Apache 2.4, its documentation, and a collection of utilities: - {{< file "/etc/apache2/apache2.conf" >}} -KeepAlive Off - -{{< /file >}} + sudo apt-get install apache2 apache2-doc apache2-utils ### Configure the Multi-Processing Module diff --git a/docs/web-servers/caddy/compile-caddy-from-source/index.md b/docs/web-servers/caddy/compile-caddy-from-source/index.md index 875310e95f4..3ae4589c720 100644 --- a/docs/web-servers/caddy/compile-caddy-from-source/index.md +++ b/docs/web-servers/caddy/compile-caddy-from-source/index.md @@ -6,7 +6,7 @@ description: 'This guide will explain how to build Caddy from source' keywords: ["caddy", "web server"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-09-14 -modified: 2018-02-02 +modified: 2019-01-07 modified_by: name: Linode title: 'How To Build Caddy From Source' @@ -22,7 +22,11 @@ Caddy has recently updated their license, clearly defining what is considered pe You will need a current version of Go on your Linode. Read our guide on [installing Go](/docs/development/go/install-go-on-ubuntu/). -1. Pull Caddy from the source. If you followed our guide on installing Go, the `$GOPATH` is `/usr/local/go`, otherwise use `$GOPATH/drc` +1. Print your Go installation's current `$GOPATH`: + + go env GOPATH + +1. Pull Caddy from the source. Replace `$GOPATH` with the path retrieved in the previous step. cd $GOPATH/src go get -u github.com/mholt/caddy @@ -30,7 +34,7 @@ You will need a current version of Go on your Linode. Read our guide on [install 2. Navigate to the Caddy directory and start the build: - cd $GOPATH/src/go/src/github.com/mholt/caddy + cd $GOPATH/src/github.com/mholt/caddy/caddy go run build.go -goos=linux -goarch=amd64 3. When the build finishes you will have a Caddy binary in the current directory. Move the binary to `/usr/bin` so that Caddy can function correctly: diff --git a/docs/web-servers/lamp/lamp-on-debian-8-jessie/index.md b/docs/web-servers/lamp/lamp-on-debian-8-jessie/index.md index 1c412d92784..f8d209baf43 100644 --- a/docs/web-servers/lamp/lamp-on-debian-8-jessie/index.md +++ b/docs/web-servers/lamp/lamp-on-debian-8-jessie/index.md @@ -5,9 +5,9 @@ author: description: 'Get your website or web application online by setting up Apache, MySQL, and PHP' keywords: ["debian 8 LAMP server", "debian LAMP", "LAMP howto", "lamp", "debian", "debian 8", "websites", "apache", "mysql", "php", "apache 2.4", "lamp debian"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2015-12-01 +modified: 2019-01-02 modified_by: - name: Alex Fornuto + name: Linode published: 2015-06-29 title: 'LAMP on Debian 8 (Jessie)' aliases: ['websites/lamp/lamp-server-debian-8/','websites/lamp/lamp-on-debian-8-jessie/'] @@ -50,15 +50,8 @@ Prior to installing your LAMP stack ensure that: sudo apt-get install apache2 -2. Edit the main Apache configuration file and turn off the `KeepAlive` setting: - {{< file "/etc/apache2/apache2.conf" aconf >}} -KeepAlive Off - -{{< /file >}} - - -3. Open `/etc/apache2/mods-available/mpm_prefork.conf` in your text editor and edit the values as needed. The following is optimized for a 2GB Linode: +1. Open `/etc/apache2/mods-available/mpm_prefork.conf` in your text editor and edit the values as needed. The following is optimized for a 2GB Linode: {{< file "/etc/apache2/mods-available/mpm_prefork.conf" aconf >}} # prefork MPM @@ -82,15 +75,15 @@ KeepAlive Off {{< note >}} -These settings are good starting points, but should be adjusted to best suite your specific stack's needs. +These settings are good starting points, but they should be adjusted to best suit your deployment's needs. {{< /note >}} -4. On Debian 8, the *event module* is enabled by default. This should be disabled, and the *prefork module* enabled: +1. On Debian 8, the *event module* is enabled by default. This should be disabled, and the *prefork module* enabled: sudo a2dismod mpm_event sudo a2enmod mpm_prefork -5. Restart Apache: +1. Restart Apache: sudo systemctl restart apache2 @@ -106,7 +99,7 @@ There can be as many virtual hosts files as needed to support the amount of doma Repeat the process if you intend on hosting multiple websites on your Linode. -2. Create an `example.com.conf` file in `/etc/apache2/sites-available` with your text editor, replacing instances of `example.com` with your own domain URL in both the configuration file and in the file name: +1. Create an `example.com.conf` file in `/etc/apache2/sites-available` with your text editor, replacing instances of `example.com` with your own domain URL in both the configuration file and in the file name: {{< file "/etc/apache2/sites-available/example.com.conf" aconf >}} @@ -136,7 +129,7 @@ There can be as many virtual hosts files as needed to support the amount of doma {{< /file >}} -3. Symbolically link your virtual hosts files from the `sites-available` directory to the `sites-enabled` directory. Replace the filename with your own: +1. Symbolically link your virtual hosts files from the `sites-available` directory to the `sites-enabled` directory. Replace the filename with your own: sudo a2ensite example.com.conf sudo a2ensite example.org.conf @@ -145,7 +138,7 @@ There can be as many virtual hosts files as needed to support the amount of doma Should you need to disable a site, you can use `a2dissite example.com`. {{< /note >}} -4. Restart Apache: +1. Restart Apache: sudo systemctl restart apache2 @@ -162,7 +155,7 @@ MySQL is a *relational database management system* (RDBMS) and is a popular comp Input a secure password when prompted by the installation. -2. Run `mysql_secure_installation` to remove the test database and any extraneous user permissions added during the initial installation process: +1. Run `mysql_secure_installation` to remove the test database and any extraneous user permissions added during the initial installation process: sudo mysql_secure_installation @@ -178,12 +171,12 @@ Next, you can create a database and grant your users permissions to use database Enter MySQL's root password when prompted. -2. Create a database and grant your users permissions on it. Change the database name (`webdata`) and username (`username`). Change the password (`password`): +1. Create a database and grant your users permissions on it. Change the database name (`webdata`) and username (`username`). Change the password (`password`): create database webdata; grant all on webdata.* to 'username' identified by 'password'; -3. Exit MySQL: +1. Exit MySQL: quit @@ -191,13 +184,26 @@ Next, you can create a database and grant your users permissions to use database PHP makes it possible to produce dynamic and interactive pages using your own scripts and popular web development frameworks. -1. Install PHP 5 and the PHP Extension and Application Repository: +### Install PHP + +PHP 7.3 is the [latest version available](http://php.net/supported-versions.php) and has the longest period of support offered as of this guide's publishing: + +1. Add the [sury.org](https://deb.sury.org) repository, which packages PHP 7.3 for Debian 8: + + sudo apt install lsb-release apt-transport-https ca-certificates + sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg + echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php7.3.list + sudo apt update + +1. Install PHP 7.3 and the PHP Extension and Application Repository: + + sudo apt-get install php7.3 php-pear - sudo apt-get install php5 php-pear +### Configure PHP -2. Open `/etc/php5/apache2/php.ini` in your text editor, and edit the following values. These settings are optimized for the 2GB Linode: +1. Open `/etc/php/7.3/apache2/php.ini` in your text editor and edit the following values. These settings are optimized for the 2GB Linode: - {{< file "/etc/php5/apache2/php.ini" ini >}} + {{< file "/etc/php/7.3/apache2/php.ini" ini >}} error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR error_log = /var/log/php/error.log max_input_time = 30 @@ -209,15 +215,15 @@ max_input_time = 30 Ensure that all values are uncommented, by making sure they do not start with a semicolon (**;**). {{< /note >}} -3. Create the log directory for PHP and give the Apache user ownership: +1. Create the log directory for PHP and give the Apache user ownership: sudo mkdir /var/log/php sudo chown www-data /var/log/php -4. If you need support for MySQL in PHP, then you must install the php5-mysql package: +1. If you need support for MySQL in PHP, then you must install the php7.3-mysql package: - sudo apt-get install php5-mysql + sudo apt-get install php7.3-mysql -5. Restart Apache: +1. Restart Apache: sudo systemctl restart apache2 diff --git a/themes/docsmith/layouts/partials/cloud_manager_link.html b/themes/docsmith/layouts/partials/cloud_manager_link.html index 31806290f9c..201efca8c70 100644 --- a/themes/docsmith/layouts/partials/cloud_manager_link.html +++ b/themes/docsmith/layouts/partials/cloud_manager_link.html @@ -1,7 +1,7 @@ {{ with .Params.cloud_manager_link }} {{ end }} diff --git a/themes/docsmith/layouts/partials/github.html b/themes/docsmith/layouts/partials/github.html index 9bb36cc08e7..ec63909470d 100644 --- a/themes/docsmith/layouts/partials/github.html +++ b/themes/docsmith/layouts/partials/github.html @@ -5,6 +5,6 @@ {{ $path := .Params.path | default .Path }} Report an Issue | View File | - Edit File + Edit File

diff --git a/themes/docsmith/layouts/partials/includes_head_prod.html b/themes/docsmith/layouts/partials/includes_head_prod.html index 517b9e33470..1813e9744fc 100644 --- a/themes/docsmith/layouts/partials/includes_head_prod.html +++ b/themes/docsmith/layouts/partials/includes_head_prod.html @@ -1 +1 @@ - + diff --git a/themes/docsmith/static/build/js/libs-900db6b09b.min.js b/themes/docsmith/static/build/js/libs-900db6b09b.min.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/js/libs.js b/themes/docsmith/static/build/js/libs.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/js/libs.min.js b/themes/docsmith/static/build/js/libs.min.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css b/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css new file mode 100644 index 00000000000..5f32d36bf65 --- /dev/null +++ b/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css @@ -0,0 +1,19 @@ +@charset "UTF-8";/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}body,figure{margin:0}.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu{float:left}.btn,.text-nowrap{white-space:nowrap}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}.form-control-feedback,a.btn.disabled,a.resumator-basic-widget input[type=button].disabled,fieldset[disabled] a.btn,fieldset[disabled] a.resumator-basic-widget input[type=button]{pointer-events:none}#article-body,.fa,.glyphicon{-moz-osx-font-smoothing:grayscale}.fa-ul,.sub-menu{list-style-type:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{border:0;vertical-align:middle}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.glyphicon,address{font-style:normal}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.form-control,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-success,.open>.dropdown-toggle.btn-warning{background-image:none}.img-thumbnail,body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}body{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.42857143;color:#333}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0089bc;text-decoration:none}a:focus,a:hover{color:#005170;text-decoration:underline}a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin:0 auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:22px;margin-bottom:22px;border:0;border-top:1px solid #eee}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Lato,sans-serif;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}dt,kbd kbd,label{font-weight:700}address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143}.h1,.h2,.h3,h1,h2,h3{margin-top:22px;margin-bottom:11px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:11px;margin-bottom:11px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}@media (min-width:768px){.lead{font-size:24px}}.small,small{font-size:87%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#00aeef}a.text-primary:focus,a.text-primary:hover{color:#0089bc}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#00aeef}a.bg-primary:focus,a.bg-primary:hover{background-color:#0089bc}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:10px;margin:44px 0 22px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}address,dl{margin-bottom:22px}ol,ul{margin-bottom:11px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt:after,.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clear,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.doc-time:after,.form-horizontal .form-group:after,.library-categories-row:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar:after,.pager:after,.panel-body:after,.row-content:after,.row-tiles:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:11px 22px;margin:0 0 22px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#777}legend,pre{display:block;color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%;border-radius:0}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{color:#555;background-color:#ebeff0}kbd{color:#fff;background-color:#333;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{padding:10.5px;margin:0 0 11px;word-break:break-all;word-wrap:break-word;background-color:#fff;border:1px solid #e7e6e6}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;max-width:100%;margin-bottom:22px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:16.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{width:100%;margin-bottom:22px;font-size:24px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{line-height:1.42857143;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px;font-size:16px;color:#555}.form-control{width:100%;height:36px;padding:6px 12px;background-color:#fff}.form-control:focus{outline:0}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:36px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:33px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:22px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:38px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.form-group-sm .form-control,.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-sm{height:33px;line-height:1.5}select.input-sm{height:33px;line-height:33px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:33px;line-height:1.5}.form-group-sm select.form-control{height:33px;line-height:33px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:33px;min-height:36px;padding:6px 10px;font-size:14px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:40px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:45px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:36px;height:36px;line-height:36px;text-align:center}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:33px;height:33px;line-height:33px}.has-success .form-control{border-color:#3c763d}.has-success .form-control:focus{border-color:#2b542c}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b}.has-warning .form-control:focus{border-color:#66512c}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442}.has-error .form-control:focus{border-color:#843534}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:27px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:29px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:14px}}.btn{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle,.carousel-control:focus,.carousel-control:hover,.dropdown-toggle:focus,.modal,.modal-content,.navbar-toggle:focus,.open>a,button:focus{outline:0}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#00aeef;border-color:#009bd6}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0089bc;border-color:#003f56}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#0089bc;border-color:#006f98}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#006f98;border-color:#003f56}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#00aeef;border-color:#009bd6}.btn-primary .badge{color:#00aeef;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#0089bc;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#005170;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:14px;line-height:1.5;border-radius:0}.btn-block{display:block}.btn-block+.btn-block{margin-top:5px}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-menu{position:absolute;top:100%;left:0;z-index:9001;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:16px;text-align:left;background-color:#fff;border:1px solid #e7e6e6;background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-menu .divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e7e6e6}.dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-image:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#fff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0}.dropdown-header,.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.nav>li.disabled>a{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:14px}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:8991}.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child),.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0;font-size:18px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.nav>li,.nav>li>a{display:block;position:relative}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:16px;font-weight:400;line-height:1;text-align:center;border:1px solid #ccc;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#0089bc}.nav .nav-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li{float:none}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2d8ec6}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}.navbar{border-radius:0}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:57px}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.carousel-inner,.embed-responsive,.media,.media-body,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:9001;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:21px 15px;font-size:18px;line-height:22px;height:57px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:11.5px;margin-bottom:11.5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:10.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:22px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:22px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-danger,.progress-striped .progress-bar-info,.progress-striped .progress-bar-success,.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:21px;padding-bottom:21px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:10.5px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:0}.navbar-btn{margin-top:10.5px;margin-bottom:10.5px}.navbar-btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-xs,.navbar-text{margin-top:17.5px;margin-bottom:17.5px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#323232;border-color:#212121}.navbar-default .navbar-brand{color:#a6a6a6}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#a6a6a6}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:transparent}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:#e6e6e6}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#212121}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#a6a6a6}.navbar-default .navbar-link:hover{color:#d9d9d9}.navbar-default .btn-link{color:#a6a6a6}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#d9d9d9}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:22px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:22px 0;border-radius:0}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#0089bc;background-color:#fff;border:1px solid #e7e6e6;margin-left:-1px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span,.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span,.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#005170;background-color:#edf7fe;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#2d8ec6;border-color:#00aeef;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:14px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pager{padding-left:0;margin:22px 0;list-style:none;text-align:center}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e7e6e6;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#edf7fe}.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:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;font-size:75%;color:#fff}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#00aeef}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#0089bc}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:14px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0089bc;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:24px;font-weight:200}.alert,.thumbnail{margin-bottom:22px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:72px}}.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0089bc}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;border-radius:0}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:22px;margin-bottom:22px;background-color:#f5f5f5;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:14px;line-height:22px;color:#fff;text-align:center;background-color:#00aeef;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-bar-info{background-color:#5bc0de}.progress-bar-warning{background-color:#f0ad4e}.progress-bar-danger{background-color:#d9534f}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle,.switcher-controls a{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#2d8ec6;border-color:#2d8ec6}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#cce5f3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:22px;background-color:#fff;border:1px solid transparent;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-title{margin-top:0;font-size:18px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:22px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#00aeef}.panel-primary>.panel-heading{color:#fff;background-color:#00aeef;border-color:#00aeef}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00aeef}.panel-primary>.panel-heading .badge{color:#00aeef;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00aeef}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{float:right;font-size:24px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #e7e6e6;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e7e6e6}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e7e6e6}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:14px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:16px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:16px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1px -1px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.callout-title:before+.lead,.has-inner-before:before+.lead,.has-outer-before:before+.lead{padding-top:10px}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt .belt-inner .belt-content:before,.belt-outer .belt:after,.belt-outer .belt:before,.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.library-categories-row:after,.library-categories-row:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar-nav .open .dropdown-menu.dropdown-mega:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row-content:after,.row-content:before,.row-tiles:after,.row-tiles:before,.row:after,.row:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.callout-title:before,.has-inner-before:before{font-family:Lato,sans-serif;margin-top:11px}#article-body .disclosure-note,.community,.note{background-color:#edf7fe;border-left:4px solid #bde2fb}.affix{position:fixed}.has-outer-before:before,.output:before{position:relative;top:-40px;left:-10.5px}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}/*! +Animate.css - http://daneden.me/animate +Licensed under the MIT license + +Copyright (c) 2013 Daniel Eden + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}@keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.belt-outer .belt .belt-inner.subnav,.input-group-addon.subnav{opacity:.96}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}.rounded{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}.border-radius-default,.cornered{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.remove-gradient{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.remove-box-shadow{-webkit-box-shadow:none;box-shadow:none}.transition-base{-webkit-transition:.2s all;transition:.2s all}.link-standard:active,.link-standard:link,.link-standard:visited{color:#0089bc}.link-standard:hover{color:#005170}.callout-title:before{line-height:1.1;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;color:#000}.callout-title:before .small,.callout-title:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.callout-text *{font-size:16px;font-weight:400;line-height:1.5}.has-inner-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;display:inline-block;margin-bottom:10px}.has-inner-before:before .small,.has-inner-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.has-outer-before{margin-top:40px}#article-body .disclosure-note:before,.community:before,.has-outer-before:before,.note:before{font-family:Lato,sans-serif;margin-top:11px;margin-bottom:11px}.has-outer-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;display:block;height:0}.has-outer-before:before .small,.has-outer-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note{padding:15px}.note *{font-size:16px;font-weight:400;line-height:1.5}.note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.note:before .small,.note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note:before+.lead{padding-top:10px}.note a{color:#0089bc}.note a:hover{color:#006489}.note strong{font-weight:700}.community{padding:15px}.community *{font-size:16px;font-weight:400;line-height:1.5}.community:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.community:before .small,.community:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.community:before+.lead{padding-top:10px}.community a{color:#0089bc}.community a:hover{color:#006489}.community strong{font-weight:bolder}#article-body .disclosure-note{padding:15px}#article-body .disclosure-note *{font-size:16px;font-weight:400;line-height:1.5}#article-body .disclosure-note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}#article-body .disclosure-note:before .small,#article-body .disclosure-note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}#article-body .disclosure-note:before+.lead{padding-top:10px}#article-body .disclosure-note a{color:#0089bc}#article-body .disclosure-note a:hover{color:#006489}#article-body .disclosure-note strong{font-weight:700}#article-body .disclosure-note img.disclosure-icon{display:inline-block;height:1.5em;margin:-.1em 0 0;-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(1);transform:scaleY(1)}#article-body .disclosure-note .disclosure-note-content{overflow:hidden;margin-top:10px}.caution:before,.cloud_manager_link:before,.deprecated:before{display:inline-block;margin-top:11px;margin-bottom:11px;font-family:Lato,sans-serif}#article-body .disclosure-note table:not([class])>thead>tr>th{background:0 0}#article-body .disclosure-note table:not([class])>tbody>tr:nth-of-type(odd){background:#fff}#article-body .disclosure-note.disclosed img.disclosure-icon{-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(-1);transform:scaleY(-1)}.caution{padding:15px;background-color:#fdf3f2;border-left:4px solid #f8c9c4}.caution *{font-size:16px;font-weight:400;line-height:1.5}.caution:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.caution:before .small,.caution:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.caution:before+.lead{padding-top:10px}.caution a{color:#0089bc}.caution a:hover{color:#006489}.caution strong{font-weight:700}.deprecated{padding:15px;background-color:#ffeedf;border-left:4px solid #ffd4ac}.deprecated *{font-size:16px;font-weight:400;line-height:1.5}.deprecated:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.deprecated:before .small,.deprecated:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.deprecated:before+.lead{padding-top:10px}.deprecated a{color:#0089bc}.deprecated a:hover{color:#006489}.deprecated strong{font-weight:700}.cloud_manager_link{padding:15px;background-color:#edf7fe;border-left:4px solid #bde2fb}.file-name,.variable{border-width:1px;border-style:solid}.cloud_manager_link *{font-size:16px;font-weight:400;line-height:1.5}.cloud_manager_link:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.cloud_manager_link:before .small,.cloud_manager_link:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.cloud_manager_link:before+.lead{padding-top:10px}.cloud_manager_link a{color:#0089bc}.cloud_manager_link a:hover{color:#006489}.cloud_manager_link strong{font-weight:700}.terminal{background-color:#000;color:rgba(65,255,0,.85);padding:0 10px}.file dt:before+.lead,.output:before+.lead{padding-top:10px}.terminal code{white-space:pre-line}.file pre.chroma code,pre code{white-space:pre}pre.terminal code::-moz-selection{background-color:#B2D7FF;color:#000}pre.terminal code::selection{background-color:#B2D7FF;color:#000}.output{margin-top:40px;background-color:#f8f8f8}.file dt:before,.output:before{margin-top:11px;margin-bottom:11px;font-weight:400}.output:before{font-family:Lato,sans-serif;line-height:1.1;font-size:14px;font-size:19px;color:#000;display:block;height:0;content:"Output"}.output:before .small,.output:before small{font-weight:400;line-height:1;color:#777;font-size:75%}pre code{word-wrap:normal;overflow-wrap:normal}.variable{background-color:#cff0df;border-color:#a9e3c5!important}.file-name{background-color:#f9f9ef;border-color:#ebebca!important}.file dt{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}.file dt:before,.navbar{font-family:Lato,sans-serif}.file dt:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;padding-right:5px}.file dt:before .small,.file dt:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.file dd+dt{margin-top:20px}.file dt{background-color:#073642;padding:.5em;margin-bottom:0;color:#93a1a1;text-align:center;font-size:16px}.highlight{margin-bottom:.7em}@media screen and (min-width:768px){.sticky-header{position:fixed;right:0;left:0;z-index:1030;top:0;border-width:0 0 1px}.sticky-header .navbar-collapse{max-height:340px}.navbar.navbar-default{height:57px}}@media screen and (min-width:768px) and (max-device-width:480px) and (orientation:landscape){.sticky-header .navbar-collapse{max-height:200px}}@media screen and (min-width:768px) and (min-width:768px){.sticky-header{border-radius:0}}.navbar{font-size:15px;line-height:15px;font-weight:300;margin-bottom:0;border:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{font-size:19px;line-height:19px;-webkit-transition:.2s color;transition:.2s color}.navbar .navbar-nav>li>span{display:inline-block}.navbar .divider-vertical{margin-left:15px;margin-right:15px}@media (max-width:767px){.navbar .divider-vertical{display:none!important}}.navbar .divider-vertical span{color:#737373!important}.navbar .navbar-nav .btn{margin-left:12px;font-size:15px}.navbar .navbar-nav .btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar .nav-home{color:inherit!important}.navbar .nav-home:after{content:"Home"}@media screen and (min-width:768px){.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px}.navbar .nav-home:after{content:""}}@media screen and (min-width:992px){.navbar .nav-home{display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px}.navbar .nav-home.tile{font-size:150px;margin-bottom:20px!important}.navbar .nav-home.tile-small{font-size:100px;margin-bottom:35px!important}.navbar .nav-home.glyphicon-heart{color:#e74c3c}.navbar .nav-home:before{content:"\e021"}}.nav-sidebar,.nav-sidebar .nav-sidebar.collapse{display:none}@media screen and (min-width:992px) and screen and (min-width:768px){.navbar .nav-home.tile-small{margin-bottom:0!important}}.navbar.navbar-default .navbar-nav>li.dropdown.open{background-color:#4c4c4c}#main-nav .navbar-collapse{max-height:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:0}.subnav{background-color:#323232;border-color:#212121;font-weight:400;font-family:Lato,sans-serif;min-height:0}.subnav .navbar-brand{color:#a6a6a6}.subnav .navbar-brand:focus,.subnav .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.subnav .navbar-text{color:#777}.subnav .navbar-nav>li>a{color:#a6a6a6}.subnav .navbar-nav>li>a:focus,.subnav .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav>.active>a,.subnav .navbar-nav>.active>a:focus,.subnav .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav>.disabled>a,.subnav .navbar-nav>.disabled>a:focus,.subnav .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.subnav .navbar-toggle{border-color:transparent}.subnav .navbar-toggle:focus,.subnav .navbar-toggle:hover{background-color:transparent}.subnav .navbar-toggle .icon-bar{background-color:#e6e6e6}.subnav .navbar-collapse,.subnav .navbar-form{border-color:#212121}.subnav .navbar-nav>.open>a,.subnav .navbar-nav>.open>a:focus,.subnav .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.subnav .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.subnav .navbar-nav .open .dropdown-menu>li>a:focus,.subnav .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.active>a,.subnav .navbar-nav .open .dropdown-menu>.active>a:focus,.subnav .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.disabled>a,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:focus,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.subnav .navbar-link{color:#a6a6a6}.subnav .navbar-link:hover{color:#d9d9d9}.subnav .btn-link{color:#a6a6a6}.subnav .btn-link:focus,.subnav .btn-link:hover{color:#d9d9d9}.subnav .btn-link[disabled]:focus,.subnav .btn-link[disabled]:hover,fieldset[disabled] .subnav .btn-link:focus,fieldset[disabled] .subnav .btn-link:hover{color:#ccc}.subnav li>a{font-size:15px;line-height:15px}@media screen and (min-width:768px){.navbar li.active>a>span.nav-home{display:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:21px}.subnav li>a{margin:13px 12px 0;padding:0}}.subnav li:first-child a{margin-left:0}.subnav li:last-child a{margin-right:0}.subnav .navbar-toggle{margin-top:21px;margin-bottom:21px}.subnav-divider{margin:0 -15px}@media screen and (min-width:768px){.subnav-divider{margin:0}}.nav-sidebar .nav-sidebar,.sidebar>ul>li{margin-bottom:30px}.nav-sidebar{border-right:1px solid #e7e6e6;position:static}.nav-sidebar li{text-align:right;border-right:#fff solid 2px}.nav-sidebar li:hover{border-right:#e7e6e6 solid 2px}.nav-sidebar li.active,.nav-sidebar li.header-active{border-right:#000 solid 2px}.nav-sidebar li>a{padding:3px 15px;font-size:14px}.nav-sidebar .nav-sidebar.collapse.in{display:block}tr.nav-sidebar .nav-sidebar.collapse.in{display:table-row}tbody.nav-sidebar .nav-sidebar.collapse.in{display:table-row-group}@media screen and (min-width:992px){.nav-sidebar{width:213px;top:24px;display:block}.nav-sidebar.affix{position:fixed}.nav-sidebar.affix-bottom{position:absolute}}.sidebar-toggle{background:0 0;border:none;padding:0}.sidebar-toggle .toggle-closed,.sidebar-toggle .toggle-open{font-size:10px;position:relative;top:-1px;color:#626262}.sidebar-toggle .toggle-closed:hover,.sidebar-toggle .toggle-open:hover{color:#000}.sidebar-modal ul{list-style:none;padding-left:0}.sidebar-modal ul li a{padding:5px 0 5px 10px}.sidebar-modal ul li a:hover{background-color:transparent}.sidebar-modal ul li a:active{background-color:#eee}.sidebar-modal ul li.header a{display:inline-block;padding:5px 0;font-weight:800}.sidebar-modal ul li.header a:hover{background-color:transparent}.sidebar{margin-top:30px!important;padding-top:30px;border-top:1px solid #e7e6e6}.sidebar ul{list-style:none;padding-left:0}@media screen and (min-width:768px){.sidebar{margin-top:0!important;padding-top:0;border-top:0}.sidebar ul{padding-left:20px;border-left:1px solid #e7e6e6}.sidebar>ul{text-align:left}}.sidebar ul>li>ul{border:0;padding-left:0}.sidebar ul.list{padding-left:20px;list-style:disc}.sidebar ul.list>li{padding:10px 0;font-size:16px}@media screen and (min-width:768px){.sidebar>ul>li{padding:0}}.sidebar>ul>li>ul>li{padding:6px 0;font-size:19px}.sidebar>ul>li>ul>li:first-child{padding-top:0}.sidebar>ul>li>ul>li:last-child{padding-bottom:0}@media screen and (min-width:768px){.sidebar>ul>li>ul>li{padding:0;font-size:16px}}.nav-tiny>ul{padding:0;width:90%;display:table;table-layout:fixed}.nav-tiny>ul>li{display:table-cell}.toggle-closed,.toggle-open{display:none}.follow-header{top:0;display:block;z-index:1030;background-color:rgba(0,0,0,.4)}.follow-header.affix{position:fixed}.follow-header.affix-bottom{position:absolute}@media screen and (min-width:992px){.follow-header{display:none}.container{max-width:970px}}.jumbotron{padding:0;margin:0;line-height:1.64285714;color:inherit;background-color:transparent}.jumbotron .h1,.jumbotron h1{font-size:39px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron .h3,.jumbotron h3{font-size:23px}.jumbotron .h4,.jumbotron h4{font-size:21px}.jumbotron .h5,.jumbotron h5{font-size:20px}.jumbotron .h6,.jumbotron h6{font-size:18px}.jumbotron .h2,.jumbotron .h3,.jumbotron .h4,.jumbotron .h5,.jumbotron .h6,.jumbotron h2,.jumbotron h3,.jumbotron h4,.jumbotron h5,.jumbotron h6{font-weight:300}@media screen and (min-width:768px){.jumbotron{padding:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.jumbotron .h1,.jumbotron h1{font-size:45px}.jumbotron .h2,.jumbotron h2{font-size:26px}.jumbotron .h3,.jumbotron h3{font-size:24px}.jumbotron .h4,.jumbotron h4{font-size:23px}.jumbotron .h5,.jumbotron h5{font-size:21px}.jumbotron .h6,.jumbotron h6{font-size:20px}.dropdown-menu.dropdown-main-nav{padding:15px 0}}.jumbotron .navbar-brand{font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.switcher-controls,.table-pricing-total>tbody>tr:last-child>td,.table>thead>tr>th{font-family:Lato,sans-serif}.dropdown-menu{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.125);box-shadow:0 6px 12px rgba(0,0,0,.125)}.dropdown-menu>li>a{-webkit-transition:none;transition:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#2d8ec6}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#d9d9d9}.dropdown-menu.dropdown-main-nav{background-color:#4c4c4c;border:0}.dropdown-menu.dropdown-main-nav li a{display:block;padding:6px 20px}.dropdown-menu.dropdown-main-nav li a:active,.dropdown-menu.dropdown-main-nav li a:link,.dropdown-menu.dropdown-main-nav li a:visited{color:#999}.dropdown-menu.dropdown-main-nav li a:hover{color:#fff;background-color:#6f6f6f}.dropdown-menu.dropdown-main-nav .divider{background-color:#555}.navbar-nav .open .dropdown-menu.dropdown-mega{margin-left:-15px;margin-right:0;z-index:9001}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega{padding:15px 0;margin-right:-150px;width:600px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{position:relative;min-height:1px;padding:0}@media (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{float:left;width:33.33333333%}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul{padding:0;list-style:none}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li{margin:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{-webkit-transition:none;transition:none;line-height:22px;padding:8px 35px 8px 40px;display:block;color:#999;font-size:19px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a:hover{color:#fff;background-color:#6f6f6f}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{padding:6px 20px;font-size:16px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third.middle{border-color:#555;border-style:solid;border-width:0 1px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third .divider{margin:10px 20px}.pagination,.pagination>li:first-child>a,.pagination>li:first-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.pagination>li.active a{color:#fff!important}.pagination>li a:link{text-decoration:none}.pager>li>a{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.modal-open .navbar-fixed-bottom,.modal-open .navbar-fixed-top,body.modal-open{margin-right:0}.modal-footer{margin-top:0}.switcher-content{display:none;margin-top:0!important}.switcher-content.active{display:block}.switcher-controls{width:100%;display:table;table-layout:fixed}.switcher-controls a{-webkit-transition:none;transition:none;display:table-cell;width:100%;padding:10px;background-color:#fff;border:2px solid #00aeef;border-right-width:0;text-align:center;cursor:pointer;color:#00aeef}.switcher-controls a:active,.switcher-controls a:link,.switcher-controls a:visited{color:#00aeef}.switcher-controls a:hover{color:#0089bc}.switcher-controls a:last-child{border-right-width:2px}.switcher-controls a.active{background-color:#00aeef;border-color:#00aeef;color:#fff}.switcher-arrow{-webkit-transition:bottom .2s;transition:bottom .2s;display:block;position:relative;width:2px;border:0 solid transparent;border-width:15px 15px 0;margin:0 auto;bottom:15px}.switcher-arrow.active{border-color:#00aeef transparent;bottom:0}.label{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;padding:5px}.table>tbody>tr>td,.table>thead>tr>th{padding:17px 10px;text-align:left;vertical-align:middle}.alert{color:#fff;border:0}.panel,.well{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>thead>tr>th{color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}.table>tbody>tr:first-child{border-top:none}.table>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}.table>tbody>tr>td{width:0;color:#747474}.table>tbody>tr>td:last-child{border-right:none}.table>tbody>tr>td.large{font-size:20px;color:#000}.table>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}table.lntable tbody{display:table;width:inherit}table.lntable tbody>tr>td.lntd:first-child{width:25px}.table-responsive>.table>tbody>tr:last-child{border-bottom-width:0}@media screen and (min-width:768px){.table-responsive>.table>tbody>tr:last-child{border-bottom-width:1px}}.table-pricing,.table-pricing-green{border:none}.table-shadow{-webkit-box-shadow:0 1px 1px 1px rgba(174,174,174,.2);box-shadow:0 1px 1px 1px rgba(174,174,174,.2)}.table-pricing>thead>tr>th{border-top:none;text-align:center;margin-right:12px}.table-pricing>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-green>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f6fcf9;border-bottom:2px solid #3BB878}.table-pricing-green>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-neutral{border:none}.table-pricing-neutral>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f3f7f8;border-bottom:2px solid #8ab}.table-pricing-neutral>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-total>tbody>tr:last-child{font-size:18px;font-weight:300;border-bottom:none}.table-pricing-total>tbody>tr:last-child>td{color:#000}.table-pricing-total>tbody>tr:last-child>td .small{font-weight:100}@media screen and (min-width:768px){.table-pricing-total>tbody>tr:last-child{font-size:22px;font-weight:300;border-bottom:none}}.center-first-column>table tbody>tr:first-child{text-align:center!important}.fixed-layout>table{table-layout:fixed}.form-control{padding-top:8px;border:1px solid #e7e6e6;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;color:#343434;font-size:16px;font-weight:400;-webkit-transition:none;transition:none;-webkit-box-shadow:none;box-shadow:none}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#cecccc}.input-lg{font-size:18px}.form-control-lg,.form-control-sm{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:none;box-shadow:none}.input-group-addon{-moz-border-radius:0;-webkit-border-radius:0;background-color:#f9f9ef;color:#6f6f6f}.input-group-addon .lead a{font-weight:300}.input-group-addon .span>a,.input-group-addon address>a,.input-group-addon em>a,.input-group-addon h1>a,.input-group-addon h2>a,.input-group-addon h3>a,.input-group-addon h4>a,.input-group-addon h5>a,.input-group-addon h6>a,.input-group-addon li>a,.input-group-addon p>a,.input-group-addon td>a{-webkit-transition:.2s color;transition:.2s color}.input-group-addon .nav li>a,.input-group-addon .span>a:active,.input-group-addon .span>a:hover,.input-group-addon address>a:active,.input-group-addon address>a:hover,.input-group-addon em>a:active,.input-group-addon em>a:hover,.input-group-addon h1>a:active,.input-group-addon h1>a:hover,.input-group-addon h2>a:active,.input-group-addon h2>a:hover,.input-group-addon h3>a:active,.input-group-addon h3>a:hover,.input-group-addon h4>a:active,.input-group-addon h4>a:hover,.input-group-addon h5>a:active,.input-group-addon h5>a:hover,.input-group-addon h6>a:active,.input-group-addon h6>a:hover,.input-group-addon li>a:active,.input-group-addon li>a:hover,.input-group-addon p>a:active,.input-group-addon p>a:hover,.input-group-addon td>a:active,.input-group-addon td>a:hover{text-decoration:none}.input-group-addon.separated{border-bottom-color:#e4e4b7}.input-group-addon .h1,.input-group-addon .h2,.input-group-addon .h3,.input-group-addon .h4,.input-group-addon .h5,.input-group-addon .h6,.input-group-addon h1,.input-group-addon h2,.input-group-addon h3,.input-group-addon h4,.input-group-addon h5,.input-group-addon h6{color:#000}.input-group-addon.jumbotron .h1,.input-group-addon.jumbotron h1{color:#2f2f2f}.input-group-addon.jumbotron .h2,.input-group-addon.jumbotron .h3,.input-group-addon.jumbotron .h4,.input-group-addon.jumbotron .h5,.input-group-addon.jumbotron .h6,.input-group-addon.jumbotron h2,.input-group-addon.jumbotron h3,.input-group-addon.jumbotron h4,.input-group-addon.jumbotron h5,.input-group-addon.jumbotron h6{color:#6f6f6f}.input-group-addon .span>a:active,.input-group-addon .span>a:link,.input-group-addon .span>a:visited,.input-group-addon address>a:active,.input-group-addon address>a:link,.input-group-addon address>a:visited,.input-group-addon em>a:active,.input-group-addon em>a:link,.input-group-addon em>a:visited,.input-group-addon h1>a:active,.input-group-addon h1>a:link,.input-group-addon h1>a:visited,.input-group-addon h2>a:active,.input-group-addon h2>a:link,.input-group-addon h2>a:visited,.input-group-addon h3>a:active,.input-group-addon h3>a:link,.input-group-addon h3>a:visited,.input-group-addon h4>a:active,.input-group-addon h4>a:link,.input-group-addon h4>a:visited,.input-group-addon h5>a:active,.input-group-addon h5>a:link,.input-group-addon h5>a:visited,.input-group-addon h6>a:active,.input-group-addon h6>a:link,.input-group-addon h6>a:visited,.input-group-addon li>a:active,.input-group-addon li>a:link,.input-group-addon li>a:visited,.input-group-addon p>a:active,.input-group-addon p>a:link,.input-group-addon p>a:visited,.input-group-addon td>a:active,.input-group-addon td>a:link,.input-group-addon td>a:visited{color:#0089bc}.input-group-addon .span>a:hover,.input-group-addon address>a:hover,.input-group-addon em>a:hover,.input-group-addon h1>a:hover,.input-group-addon h2>a:hover,.input-group-addon h3>a:hover,.input-group-addon h4>a:hover,.input-group-addon h5>a:hover,.input-group-addon h6>a:hover,.input-group-addon li>a:hover,.input-group-addon p>a:hover,.input-group-addon td>a:hover{color:#005170}.input-group-addon .span>a .glyphicon.tile,.input-group-addon address>a .glyphicon.tile,.input-group-addon em>a .glyphicon.tile,.input-group-addon h1>a .glyphicon.tile,.input-group-addon h2>a .glyphicon.tile,.input-group-addon h3>a .glyphicon.tile,.input-group-addon h4>a .glyphicon.tile,.input-group-addon h5>a .glyphicon.tile,.input-group-addon h6>a .glyphicon.tile,.input-group-addon li>a .glyphicon.tile,.input-group-addon p>a .glyphicon.tile,.input-group-addon td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.input-group-addon .span>a .glyphicon.tile:active,.input-group-addon .span>a .glyphicon.tile:hover,.input-group-addon address>a .glyphicon.tile:active,.input-group-addon address>a .glyphicon.tile:hover,.input-group-addon em>a .glyphicon.tile:active,.input-group-addon em>a .glyphicon.tile:hover,.input-group-addon h1>a .glyphicon.tile:active,.input-group-addon h1>a .glyphicon.tile:hover,.input-group-addon h2>a .glyphicon.tile:active,.input-group-addon h2>a .glyphicon.tile:hover,.input-group-addon h3>a .glyphicon.tile:active,.input-group-addon h3>a .glyphicon.tile:hover,.input-group-addon h4>a .glyphicon.tile:active,.input-group-addon h4>a .glyphicon.tile:hover,.input-group-addon h5>a .glyphicon.tile:active,.input-group-addon h5>a .glyphicon.tile:hover,.input-group-addon h6>a .glyphicon.tile:active,.input-group-addon h6>a .glyphicon.tile:hover,.input-group-addon li>a .glyphicon.tile:active,.input-group-addon li>a .glyphicon.tile:hover,.input-group-addon p>a .glyphicon.tile:active,.input-group-addon p>a .glyphicon.tile:hover,.input-group-addon td>a .glyphicon.tile:active,.input-group-addon td>a .glyphicon.tile:hover{color:#494949}.input-group-addon ul.nav-sidebar>li.active>a{color:#000}.input-group-addon ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.input-group-addon ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.input-group-addon ul.nav-sidebar>li>a:hover{color:#000}.input-group-addon ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.input-group-addon ul.dropdown-menu>li>a:hover{color:#fff}.input-group-addon.subnav .navbar-brand{color:#000}.input-group-addon.subnav .navbar-brand a{text-decoration:none;color:#000}.input-group-addon.subnav li>a{color:#aaa}.input-group-addon.subnav li>a.active{color:#000}.input-group-addon.subnav li>a:hover{color:#555}.input-group-addon .sidebar strong,.input-group-addon.subnav .navbar-toggle{color:#000}.input-group-addon.subnav .navbar-toggle:hover{background-color:transparent}.input-group-addon.subnav .navbar-collapse{border-top-color:#e7e6e6}.input-group-addon.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.input-group-addon .sidebar a strong,.input-group-addon .sidebar a strong:active,.input-group-addon .sidebar a strong:link,.input-group-addon .sidebar a strong:visited{color:#0089bc}.input-group-addon .sidebar a strong:hover{color:#005170}.input-group-addon cite.bubble strong{color:#414141}.input-group-addon cite.bubble a:active,.input-group-addon cite.bubble a:link,.input-group-addon cite.bubble a:visited{color:#0089bc}.input-group-addon cite.bubble a:hover{color:#005170}.input-group-addon blockquote,.input-group-addon blockquote p,.input-group-addon blockquote ul>li{color:#747474}.has-error .form-control,.has-error .form-control:focus,.has-success .form-control,.has-success .form-control:focus,.has-warning .form-control,.has-warning .form-control:focus{-webkit-box-shadow:none;box-shadow:none}html{-webkit-tap-highlight-color:transparent;color:#444;background-color:#0a0a0a;font-size:16px}html a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}html a:active,html a:hover{color:#f2f2f2;text-decoration:none}@media (min-width:768px){html{font-size:18px}.belt-outer .belt .belt-inner{float:left;width:83.33333333%}}nav,section{background-color:inherit}header,nav,section{margin:0}.belt-outer .belt,.row-content,.row-tiles{margin-left:-15px;margin-right:-15px}header .row-content:first-child,header .row:first-child,nav .row-content:first-child,nav .row:first-child,section .row-content:first-child,section .row:first-child{margin-top:30px}header .row-content:last-child,header .row:last-child,nav .row-content:last-child,nav .row:last-child,section .row-content:last-child,section .row:last-child{margin-bottom:30px}header .row :first-child,header .row-content :first-child,nav .row :first-child,nav .row-content :first-child,section .row :first-child,section .row-content :first-child{margin-top:0}header .row :last-child,header .row-content :last-child,nav .row :last-child,nav .row-content :last-child,section .row :last-child,section .row-content :last-child{margin-bottom:0}header.small,nav.small,section.small{font-size:14px}header.small .row:first-child,nav.small .row:first-child,section.small .row:first-child{margin-top:5px}header.small .row:last-child,nav.small .row:last-child,section.small .row:last-child{margin-bottom:5px}header.flush-bottom .row-content:last-child,header.flush-bottom .row:last-child,header.small .row :last-child,nav.flush-bottom .row-content:last-child,nav.flush-bottom .row:last-child,nav.small .row :last-child,section.flush-bottom .row-content:last-child,section.flush-bottom .row:last-child,section.small .row :last-child{margin-bottom:0}header.small .row :first-child,nav.small .row :first-child,section.small .row :first-child{margin-top:0}@media screen and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:60px;padding-bottom:60px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:30px;padding-bottom:30px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:60px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:60px}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:30px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:30px}}@media screen and (min-width:768px){header.some-space,nav.some-space,section.some-space{padding-top:30px;padding-bottom:30px}header.some-space.bottom,nav.some-space.bottom,section.some-space.bottom{padding-top:0}header.some-space.top,nav.some-space.top,section.some-space.top{padding-bottom:0}header.some-space-top,nav.some-space-top,section.some-space-top{padding-top:30px}header.some-space-bottom,nav.some-space-bottom,section.some-space-bottom{padding-bottom:30px}header.super-space,nav.super-space,section.super-space{padding-top:90px;padding-bottom:90px}header.super-space.bottom,nav.super-space.bottom,section.super-space.bottom{padding-top:0}header.super-space.top,nav.super-space.top,section.super-space.top{padding-bottom:0}header.super-space-top,nav.super-space-top,section.super-space-top{padding-top:90px}header.super-space-bottom,nav.super-space-bottom,section.super-space-bottom{padding-bottom:90px}}header.flush-bottom,nav.flush-bottom,section.flush-bottom{margin-bottom:0;padding-bottom:0}.row-content.extra-bottom{margin-bottom:90px}.row-content.super-bottom{margin-bottom:120px}@media screen and (max-width:768px){.row-content.shrink{margin-bottom:30px}}div.no-padding{padding:0}.pad-xs{margin-top:30px}.separated{border-bottom-width:1px;border-bottom-style:solid}@media screen and (min-width:768px){.pad-xs{margin-top:0}.belt-outer{height:100px}.belt-outer .belt .belt-inner{top:-50px}}.belt-outer .belt .belt-inner{min-height:1px;background-color:#f9f9ef;color:#6f6f6f;padding:20px;border:1px solid #ebebca;margin-bottom:0;position:relative}@media (min-width:768px){.belt-outer .belt .belt-inner{margin-left:8.33333333%}}.belt-outer .belt .belt-inner .lead a{font-weight:300}.belt-outer .belt .belt-inner .span>a,.belt-outer .belt .belt-inner address>a,.belt-outer .belt .belt-inner em>a,.belt-outer .belt .belt-inner h1>a,.belt-outer .belt .belt-inner h2>a,.belt-outer .belt .belt-inner h3>a,.belt-outer .belt .belt-inner h4>a,.belt-outer .belt .belt-inner h5>a,.belt-outer .belt .belt-inner h6>a,.belt-outer .belt .belt-inner li>a,.belt-outer .belt .belt-inner p>a,.belt-outer .belt .belt-inner td>a{-webkit-transition:.2s color;transition:.2s color}.belt-outer .belt .belt-inner .nav li>a,.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:hover{text-decoration:none}.belt-outer .belt .belt-inner.separated{border-bottom-color:#e4e4b7}.belt-outer .belt .belt-inner .h1,.belt-outer .belt .belt-inner .h2,.belt-outer .belt .belt-inner .h3,.belt-outer .belt .belt-inner .h4,.belt-outer .belt .belt-inner .h5,.belt-outer .belt .belt-inner .h6,.belt-outer .belt .belt-inner h1,.belt-outer .belt .belt-inner h2,.belt-outer .belt .belt-inner h3,.belt-outer .belt .belt-inner h4,.belt-outer .belt .belt-inner h5,.belt-outer .belt .belt-inner h6{color:#000}.belt-outer .belt .belt-inner.jumbotron .h1,.belt-outer .belt .belt-inner.jumbotron h1{color:#2f2f2f}.belt-outer .belt .belt-inner.jumbotron .h2,.belt-outer .belt .belt-inner.jumbotron .h3,.belt-outer .belt .belt-inner.jumbotron .h4,.belt-outer .belt .belt-inner.jumbotron .h5,.belt-outer .belt .belt-inner.jumbotron .h6,.belt-outer .belt .belt-inner.jumbotron h2,.belt-outer .belt .belt-inner.jumbotron h3,.belt-outer .belt .belt-inner.jumbotron h4,.belt-outer .belt .belt-inner.jumbotron h5,.belt-outer .belt .belt-inner.jumbotron h6{color:#6f6f6f}.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:link,.belt-outer .belt .belt-inner .span>a:visited,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:link,.belt-outer .belt .belt-inner address>a:visited,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:link,.belt-outer .belt .belt-inner em>a:visited,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:link,.belt-outer .belt .belt-inner h1>a:visited,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:link,.belt-outer .belt .belt-inner h2>a:visited,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:link,.belt-outer .belt .belt-inner h3>a:visited,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:link,.belt-outer .belt .belt-inner h4>a:visited,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:link,.belt-outer .belt .belt-inner h5>a:visited,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:link,.belt-outer .belt .belt-inner h6>a:visited,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:link,.belt-outer .belt .belt-inner li>a:visited,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:link,.belt-outer .belt .belt-inner p>a:visited,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:link,.belt-outer .belt .belt-inner td>a:visited{color:#0089bc}.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:hover{color:#005170}.belt-outer .belt .belt-inner .span>a .glyphicon.tile,.belt-outer .belt .belt-inner address>a .glyphicon.tile,.belt-outer .belt .belt-inner em>a .glyphicon.tile,.belt-outer .belt .belt-inner h1>a .glyphicon.tile,.belt-outer .belt .belt-inner h2>a .glyphicon.tile,.belt-outer .belt .belt-inner h3>a .glyphicon.tile,.belt-outer .belt .belt-inner h4>a .glyphicon.tile,.belt-outer .belt .belt-inner h5>a .glyphicon.tile,.belt-outer .belt .belt-inner h6>a .glyphicon.tile,.belt-outer .belt .belt-inner li>a .glyphicon.tile,.belt-outer .belt .belt-inner p>a .glyphicon.tile,.belt-outer .belt .belt-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.belt-outer .belt .belt-inner .span>a .glyphicon.tile:active,.belt-outer .belt .belt-inner .span>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner address>a .glyphicon.tile:active,.belt-outer .belt .belt-inner address>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner em>a .glyphicon.tile:active,.belt-outer .belt .belt-inner em>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner li>a .glyphicon.tile:active,.belt-outer .belt .belt-inner li>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner p>a .glyphicon.tile:active,.belt-outer .belt .belt-inner p>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner td>a .glyphicon.tile:active,.belt-outer .belt .belt-inner td>a .glyphicon.tile:hover{color:#494949}.belt-outer .belt .belt-inner ul.nav-sidebar>li.active>a{color:#000}.belt-outer .belt .belt-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,li,p{font-weight:400}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a:hover{color:#000}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:hover{color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-brand{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.belt-outer .belt .belt-inner.subnav li>a{color:#aaa}.belt-outer .belt .belt-inner.subnav li>a.active{color:#000}.belt-outer .belt .belt-inner.subnav li>a:hover{color:#555}.belt-outer .belt .belt-inner .sidebar strong,.belt-outer .belt .belt-inner.subnav .navbar-toggle{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-toggle:hover{background-color:transparent}.white,q.bubble{background-color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.belt-outer .belt .belt-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.belt-outer .belt .belt-inner .sidebar a strong,.belt-outer .belt .belt-inner .sidebar a strong:active,.belt-outer .belt .belt-inner .sidebar a strong:link,.belt-outer .belt .belt-inner .sidebar a strong:visited{color:#0089bc}.belt-outer .belt .belt-inner .sidebar a strong:hover{color:#005170}.belt-outer .belt .belt-inner cite.bubble strong{color:#414141}.belt-outer .belt .belt-inner cite.bubble a:active,.belt-outer .belt .belt-inner cite.bubble a:link,.belt-outer .belt .belt-inner cite.bubble a:visited{color:#0089bc}.belt-outer .belt .belt-inner cite.bubble a:hover{color:#005170}.belt-outer .belt .belt-inner blockquote,.belt-outer .belt .belt-inner blockquote p,.belt-outer .belt .belt-inner blockquote ul>li{color:#747474}.belt-outer .belt .belt-inner .belt-content{margin:0}.vertical-center{display:table-cell;vertical-align:middle}@media screen and (min-width:768px){.reduce-gutter{padding:0 2px}q.bubble{min-height:152px}}img.full-width{display:block;width:100%}img.centered-icon{margin:0 auto;display:block}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')}.large{font-size:18px}.small{font-size:14px}.h1,h1{font-size:48px}.h2,h2{font-size:44px}.h3,h3{font-size:32px}.h4,h4{font-size:25px}.h5,h5{font-size:21px}.h6,h6{font-size:19px}p{font-size:17px;font-size:1.08rem;line-height:1.5;margin:0 0 20px}.lead{padding-top:22px;margin-bottom:22px;font-size:19.8px;font-weight:300;line-height:1.4;font-family:Helvetica,Arial,sans-serif}.h1+.lead,.h2+.lead,.h3+.lead,.h4+.lead,.h5+.lead,.h6+.lead,h1+.lead,h2+.lead,h3+.lead,h4+.lead,h5+.lead,h6+.lead{padding-top:10px}pre{overflow-x:auto;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;font-size:14px}code{-moz-border-radius:0;-webkit-border-radius:0;word-wrap:break-word}.amp{font-family:Helvetica,sans-serif;font-weight:400;line-height:0}.footnote{font-size:10px;margin-top:20px}.doc li,blockquote{font-size:17px}q.bubble{position:relative;display:block;width:100%;padding:10px}@media screen and (min-width:992px){.belt-outer{height:50px}q.bubble{min-height:108px}}q.bubble:after{content:"";display:block;width:0;border:0 solid;border-right-width:20px;border-bottom-width:20px;border-color:transparent #fff;position:absolute;bottom:-20px;left:15px}cite.bubble{display:block;margin-left:50px;margin-top:5px;padding-bottom:20px}blockquote *,blockquote p,blockquote ul>li{font-size:17px;font-weight:300}blockquote strong{font-weight:800}.doc li{font-size:1.08rem}.doc .h1,.doc .h2,.doc .h3,.doc .h4,.doc .h5,.doc .h6,.doc h1,.doc h2,.doc h3,.doc h4,.doc h5,.doc h6{word-wrap:break-word;margin-top:3.125rem}.doc .h1+.h1,.doc .h1+.h2,.doc .h1+.h3,.doc .h1+.h4,.doc .h1+.h5,.doc .h1+.h6,.doc .h1+h1,.doc .h1+h2,.doc .h1+h3,.doc .h1+h4,.doc .h1+h5,.doc .h1+h6,.doc .h2+.h1,.doc .h2+.h2,.doc .h2+.h3,.doc .h2+.h4,.doc .h2+.h5,.doc .h2+.h6,.doc .h2+h1,.doc .h2+h2,.doc .h2+h3,.doc .h2+h4,.doc .h2+h5,.doc .h2+h6,.doc .h3+.h1,.doc .h3+.h2,.doc .h3+.h3,.doc .h3+.h4,.doc .h3+.h5,.doc .h3+.h6,.doc .h3+h1,.doc .h3+h2,.doc .h3+h3,.doc .h3+h4,.doc .h3+h5,.doc .h3+h6,.doc .h4+.h1,.doc .h4+.h2,.doc .h4+.h3,.doc .h4+.h4,.doc .h4+.h5,.doc .h4+.h6,.doc .h4+h1,.doc .h4+h2,.doc .h4+h3,.doc .h4+h4,.doc .h4+h5,.doc .h4+h6,.doc .h5+.h1,.doc .h5+.h2,.doc .h5+.h3,.doc .h5+.h4,.doc .h5+.h5,.doc .h5+.h6,.doc .h5+h1,.doc .h5+h2,.doc .h5+h3,.doc .h5+h4,.doc .h5+h5,.doc .h5+h6,.doc .h6+.h1,.doc .h6+.h2,.doc .h6+.h3,.doc .h6+.h4,.doc .h6+.h5,.doc .h6+.h6,.doc .h6+h1,.doc .h6+h2,.doc .h6+h3,.doc .h6+h4,.doc .h6+h5,.doc .h6+h6,.doc h1+.h1,.doc h1+.h2,.doc h1+.h3,.doc h1+.h4,.doc h1+.h5,.doc h1+.h6,.doc h1+h1,.doc h1+h2,.doc h1+h3,.doc h1+h4,.doc h1+h5,.doc h1+h6,.doc h2+.h1,.doc h2+.h2,.doc h2+.h3,.doc h2+.h4,.doc h2+.h5,.doc h2+.h6,.doc h2+h1,.doc h2+h2,.doc h2+h3,.doc h2+h4,.doc h2+h5,.doc h2+h6,.doc h3+.h1,.doc h3+.h2,.doc h3+.h3,.doc h3+.h4,.doc h3+.h5,.doc h3+.h6,.doc h3+h1,.doc h3+h2,.doc h3+h3,.doc h3+h4,.doc h3+h5,.doc h3+h6,.doc h4+.h1,.doc h4+.h2,.doc h4+.h3,.doc h4+.h4,.doc h4+.h5,.doc h4+.h6,.doc h4+h1,.doc h4+h2,.doc h4+h3,.doc h4+h4,.doc h4+h5,.doc h4+h6,.doc h5+.h1,.doc h5+.h2,.doc h5+.h3,.doc h5+.h4,.doc h5+.h5,.doc h5+.h6,.doc h5+h1,.doc h5+h2,.doc h5+h3,.doc h5+h4,.doc h5+h5,.doc h5+h6,.doc h6+.h1,.doc h6+.h2,.doc h6+.h3,.doc h6+.h4,.doc h6+.h5,.doc h6+.h6,.doc h6+h1,.doc h6+h2,.doc h6+h3,.doc h6+h4,.doc h6+h5,.doc h6+h6{margin-top:0}.doc .h1 a,.doc .h2 a,.doc .h3 a,.doc .h4 a,.doc .h5 a,.doc .h6 a,.doc h1 a,.doc h2 a,.doc h3 a,.doc h4 a,.doc h5 a,.doc h6 a{padding-left:10px;opacity:0}.doc .h1:hover a,.doc .h2:hover a,.doc .h3:hover a,.doc .h4:hover a,.doc .h5:hover a,.doc .h6:hover a,.doc h1:hover a,.doc h2:hover a,.doc h3:hover a,.doc h4:hover a,.doc h5:hover a,.doc h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.alt.subnav,.light-blue.subnav,.light-gray.subnav,.neutral.subnav,.primary.subnav,.sand.subnav,.striped.subnav,.white.subnav,div.logo-tile.subnav{opacity:.96}.doc .h1,.doc h1{font-size:38px;font-size:2.375rem}.doc .h2,.doc h2{font-size:33px;font-size:2.0625rem}.doc .h3,.doc h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}.doc .h4,.doc h4{font-size:23px;font-size:1.4375rem}.doc .h5,.doc h5{font-size:20px;font-size:1.25rem}.doc .h6,.doc h6{font-size:18px;font-size:1.125rem}.doc li ol,.doc li ul{margin-top:10px}.doc li ol li,.doc li ul li{margin-top:5px}.doc li blockquote,.doc li img{margin:20px 0}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.doc li ol+p,.doc li ul+p{margin-top:20px}.doc li+li{margin-top:10px}.doc code{font-size:14px}.glyphicon.tile{font-size:150px;margin-bottom:20px!important}.glyphicon.tile-small{font-size:100px;margin-bottom:35px!important}.glyphicon.glyphicon-heart{color:#e74c3c}.caret-right{display:none}@media screen and (min-width:768px){cite.bubble{padding-bottom:0}.doc{padding-bottom:60px}.glyphicon.tile-small{margin-bottom:0!important}.caret-right{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent}}.login-caret{display:none}.fa,.fa-stack{display:inline-block}.tile-list{text-align:center}@media screen and (min-width:768px){.login-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent;border-left-color:#3BB878}.tile-list{text-align:right}}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.fa-lg{font-size:1.33333333em;line-height:.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.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.cubes.subnav .navbar-collapse,.light-gray.subnav .navbar-collapse,.sand.subnav .navbar-collapse,.striped.subnav .navbar-collapse,.white.subnav .navbar-collapse{border-top-color:#e7e6e6}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.footer-col,.search-form{position:relative}.white{color:#747474}.white .lead a{font-weight:300}.white .span>a,.white address>a,.white em>a,.white h1>a,.white h2>a,.white h3>a,.white h4>a,.white h5>a,.white h6>a,.white li>a,.white p>a,.white td>a{-webkit-transition:.2s color;transition:.2s color}.white .nav li>a,.white .span>a:active,.white .span>a:hover,.white address>a:active,.white address>a:hover,.white em>a:active,.white em>a:hover,.white h1>a:active,.white h1>a:hover,.white h2>a:active,.white h2>a:hover,.white h3>a:active,.white h3>a:hover,.white h4>a:active,.white h4>a:hover,.white h5>a:active,.white h5>a:hover,.white h6>a:active,.white h6>a:hover,.white li>a:active,.white li>a:hover,.white p>a:active,.white p>a:hover,.white td>a:active,.white td>a:hover{text-decoration:none}.white.separated{border-bottom-color:#d9d9d9}.white .h1,.white .h2,.white .h3,.white .h4,.white .h5,.white .h6,.white h1,.white h2,.white h3,.white h4,.white h5,.white h6{color:#000}.white.jumbotron .h1,.white.jumbotron h1{color:#343434}.white.jumbotron .h2,.white.jumbotron .h3,.white.jumbotron .h4,.white.jumbotron .h5,.white.jumbotron .h6,.white.jumbotron h2,.white.jumbotron h3,.white.jumbotron h4,.white.jumbotron h5,.white.jumbotron h6{color:#747474}.white .span>a:active,.white .span>a:link,.white .span>a:visited,.white address>a:active,.white address>a:link,.white address>a:visited,.white em>a:active,.white em>a:link,.white em>a:visited,.white h1>a:active,.white h1>a:link,.white h1>a:visited,.white h2>a:active,.white h2>a:link,.white h2>a:visited,.white h3>a:active,.white h3>a:link,.white h3>a:visited,.white h4>a:active,.white h4>a:link,.white h4>a:visited,.white h5>a:active,.white h5>a:link,.white h5>a:visited,.white h6>a:active,.white h6>a:link,.white h6>a:visited,.white li>a:active,.white li>a:link,.white li>a:visited,.white p>a:active,.white p>a:link,.white p>a:visited,.white td>a:active,.white td>a:link,.white td>a:visited{color:#0089bc}.white .span>a:hover,.white address>a:hover,.white em>a:hover,.white h1>a:hover,.white h2>a:hover,.white h3>a:hover,.white h4>a:hover,.white h5>a:hover,.white h6>a:hover,.white li>a:hover,.white p>a:hover,.white td>a:hover{color:#005170}.white .span>a .glyphicon.tile,.white address>a .glyphicon.tile,.white em>a .glyphicon.tile,.white h1>a .glyphicon.tile,.white h2>a .glyphicon.tile,.white h3>a .glyphicon.tile,.white h4>a .glyphicon.tile,.white h5>a .glyphicon.tile,.white h6>a .glyphicon.tile,.white li>a .glyphicon.tile,.white p>a .glyphicon.tile,.white td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.white .span>a .glyphicon.tile:active,.white .span>a .glyphicon.tile:hover,.white address>a .glyphicon.tile:active,.white address>a .glyphicon.tile:hover,.white em>a .glyphicon.tile:active,.white em>a .glyphicon.tile:hover,.white h1>a .glyphicon.tile:active,.white h1>a .glyphicon.tile:hover,.white h2>a .glyphicon.tile:active,.white h2>a .glyphicon.tile:hover,.white h3>a .glyphicon.tile:active,.white h3>a .glyphicon.tile:hover,.white h4>a .glyphicon.tile:active,.white h4>a .glyphicon.tile:hover,.white h5>a .glyphicon.tile:active,.white h5>a .glyphicon.tile:hover,.white h6>a .glyphicon.tile:active,.white h6>a .glyphicon.tile:hover,.white li>a .glyphicon.tile:active,.white li>a .glyphicon.tile:hover,.white p>a .glyphicon.tile:active,.white p>a .glyphicon.tile:hover,.white td>a .glyphicon.tile:active,.white td>a .glyphicon.tile:hover{color:#4e4e4e}.white ul.nav-sidebar>li.active>a{color:#000}.white ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.white ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.white ul.nav-sidebar>li>a:hover{color:#000}.white ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.white ul.dropdown-menu>li>a:hover{color:#fff}.white.subnav .navbar-brand{color:#000}.white.subnav .navbar-brand a{text-decoration:none;color:#000}.white.subnav li>a{color:#aaa}.white.subnav li>a.active{color:#000}.white.subnav li>a:hover{color:#5b5b5b}.white .sidebar strong,.white.subnav .navbar-toggle{color:#000}.white.subnav .navbar-toggle:hover{background-color:transparent}.white.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.white .sidebar a strong,.white .sidebar a strong:active,.white .sidebar a strong:link,.white .sidebar a strong:visited{color:#0089bc}.white .sidebar a strong:hover{color:#005170}.white cite.bubble strong{color:#414141}.white cite.bubble a:active,.white cite.bubble a:link,.white cite.bubble a:visited{color:#0089bc}.white cite.bubble a:hover{color:#005170}.white blockquote,.white blockquote p,.white blockquote ul>li{color:#747474}.sand{background-color:#f9f9ef;color:#6f6f6f}.sand .lead a{font-weight:300}.sand .span>a,.sand address>a,.sand em>a,.sand h1>a,.sand h2>a,.sand h3>a,.sand h4>a,.sand h5>a,.sand h6>a,.sand li>a,.sand p>a,.sand td>a{-webkit-transition:.2s color;transition:.2s color}.sand .nav li>a,.sand .span>a:active,.sand .span>a:hover,.sand address>a:active,.sand address>a:hover,.sand em>a:active,.sand em>a:hover,.sand h1>a:active,.sand h1>a:hover,.sand h2>a:active,.sand h2>a:hover,.sand h3>a:active,.sand h3>a:hover,.sand h4>a:active,.sand h4>a:hover,.sand h5>a:active,.sand h5>a:hover,.sand h6>a:active,.sand h6>a:hover,.sand li>a:active,.sand li>a:hover,.sand p>a:active,.sand p>a:hover,.sand td>a:active,.sand td>a:hover{text-decoration:none}.sand.separated{border-bottom-color:#e4e4b7}.sand .h1,.sand .h2,.sand .h3,.sand .h4,.sand .h5,.sand .h6,.sand h1,.sand h2,.sand h3,.sand h4,.sand h5,.sand h6{color:#000}.sand.jumbotron .h1,.sand.jumbotron h1{color:#2f2f2f}.sand.jumbotron .h2,.sand.jumbotron .h3,.sand.jumbotron .h4,.sand.jumbotron .h5,.sand.jumbotron .h6,.sand.jumbotron h2,.sand.jumbotron h3,.sand.jumbotron h4,.sand.jumbotron h5,.sand.jumbotron h6{color:#6f6f6f}.sand .span>a:active,.sand .span>a:link,.sand .span>a:visited,.sand address>a:active,.sand address>a:link,.sand address>a:visited,.sand em>a:active,.sand em>a:link,.sand em>a:visited,.sand h1>a:active,.sand h1>a:link,.sand h1>a:visited,.sand h2>a:active,.sand h2>a:link,.sand h2>a:visited,.sand h3>a:active,.sand h3>a:link,.sand h3>a:visited,.sand h4>a:active,.sand h4>a:link,.sand h4>a:visited,.sand h5>a:active,.sand h5>a:link,.sand h5>a:visited,.sand h6>a:active,.sand h6>a:link,.sand h6>a:visited,.sand li>a:active,.sand li>a:link,.sand li>a:visited,.sand p>a:active,.sand p>a:link,.sand p>a:visited,.sand td>a:active,.sand td>a:link,.sand td>a:visited{color:#0089bc}.sand .span>a:hover,.sand address>a:hover,.sand em>a:hover,.sand h1>a:hover,.sand h2>a:hover,.sand h3>a:hover,.sand h4>a:hover,.sand h5>a:hover,.sand h6>a:hover,.sand li>a:hover,.sand p>a:hover,.sand td>a:hover{color:#005170}.sand .span>a .glyphicon.tile,.sand address>a .glyphicon.tile,.sand em>a .glyphicon.tile,.sand h1>a .glyphicon.tile,.sand h2>a .glyphicon.tile,.sand h3>a .glyphicon.tile,.sand h4>a .glyphicon.tile,.sand h5>a .glyphicon.tile,.sand h6>a .glyphicon.tile,.sand li>a .glyphicon.tile,.sand p>a .glyphicon.tile,.sand td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.sand .span>a .glyphicon.tile:active,.sand .span>a .glyphicon.tile:hover,.sand address>a .glyphicon.tile:active,.sand address>a .glyphicon.tile:hover,.sand em>a .glyphicon.tile:active,.sand em>a .glyphicon.tile:hover,.sand h1>a .glyphicon.tile:active,.sand h1>a .glyphicon.tile:hover,.sand h2>a .glyphicon.tile:active,.sand h2>a .glyphicon.tile:hover,.sand h3>a .glyphicon.tile:active,.sand h3>a .glyphicon.tile:hover,.sand h4>a .glyphicon.tile:active,.sand h4>a .glyphicon.tile:hover,.sand h5>a .glyphicon.tile:active,.sand h5>a .glyphicon.tile:hover,.sand h6>a .glyphicon.tile:active,.sand h6>a .glyphicon.tile:hover,.sand li>a .glyphicon.tile:active,.sand li>a .glyphicon.tile:hover,.sand p>a .glyphicon.tile:active,.sand p>a .glyphicon.tile:hover,.sand td>a .glyphicon.tile:active,.sand td>a .glyphicon.tile:hover{color:#494949}.sand ul.nav-sidebar>li.active>a{color:#000}.sand ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.sand ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.sand ul.nav-sidebar>li>a:hover{color:#000}.sand ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.sand ul.dropdown-menu>li>a:hover{color:#fff}.sand.subnav .navbar-brand{color:#000}.sand.subnav .navbar-brand a{text-decoration:none;color:#000}.sand.subnav li>a{color:#aaa}.sand.subnav li>a.active{color:#000}.sand.subnav li>a:hover{color:#555}.sand .sidebar strong,.sand.subnav .navbar-toggle{color:#000}.sand.subnav .navbar-toggle:hover{background-color:transparent}.sand.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.sand .sidebar a strong,.sand .sidebar a strong:active,.sand .sidebar a strong:link,.sand .sidebar a strong:visited{color:#0089bc}.sand .sidebar a strong:hover{color:#005170}.sand cite.bubble strong{color:#414141}.sand cite.bubble a:active,.sand cite.bubble a:link,.sand cite.bubble a:visited{color:#0089bc}.sand cite.bubble a:hover{color:#005170}.sand blockquote,.sand blockquote p,.sand blockquote ul>li{color:#747474}.light-gray{background-color:#f4f4f4;color:#6f6f6f}.light-gray .lead a{font-weight:300}.light-gray .span>a,.light-gray address>a,.light-gray em>a,.light-gray h1>a,.light-gray h2>a,.light-gray h3>a,.light-gray h4>a,.light-gray h5>a,.light-gray h6>a,.light-gray li>a,.light-gray p>a,.light-gray td>a{-webkit-transition:.2s color;transition:.2s color}.light-gray .nav li>a,.light-gray .span>a:active,.light-gray .span>a:hover,.light-gray address>a:active,.light-gray address>a:hover,.light-gray em>a:active,.light-gray em>a:hover,.light-gray h1>a:active,.light-gray h1>a:hover,.light-gray h2>a:active,.light-gray h2>a:hover,.light-gray h3>a:active,.light-gray h3>a:hover,.light-gray h4>a:active,.light-gray h4>a:hover,.light-gray h5>a:active,.light-gray h5>a:hover,.light-gray h6>a:active,.light-gray h6>a:hover,.light-gray li>a:active,.light-gray li>a:hover,.light-gray p>a:active,.light-gray p>a:hover,.light-gray td>a:active,.light-gray td>a:hover{text-decoration:none}.light-gray.separated{border-bottom-color:#cdcdcd}.light-gray .h1,.light-gray .h2,.light-gray .h3,.light-gray .h4,.light-gray .h5,.light-gray .h6,.light-gray h1,.light-gray h2,.light-gray h3,.light-gray h4,.light-gray h5,.light-gray h6{color:#000}.light-gray.jumbotron .h1,.light-gray.jumbotron h1{color:#2f2f2f}.light-gray.jumbotron .h2,.light-gray.jumbotron .h3,.light-gray.jumbotron .h4,.light-gray.jumbotron .h5,.light-gray.jumbotron .h6,.light-gray.jumbotron h2,.light-gray.jumbotron h3,.light-gray.jumbotron h4,.light-gray.jumbotron h5,.light-gray.jumbotron h6{color:#6f6f6f}.light-gray .span>a:active,.light-gray .span>a:link,.light-gray .span>a:visited,.light-gray address>a:active,.light-gray address>a:link,.light-gray address>a:visited,.light-gray em>a:active,.light-gray em>a:link,.light-gray em>a:visited,.light-gray h1>a:active,.light-gray h1>a:link,.light-gray h1>a:visited,.light-gray h2>a:active,.light-gray h2>a:link,.light-gray h2>a:visited,.light-gray h3>a:active,.light-gray h3>a:link,.light-gray h3>a:visited,.light-gray h4>a:active,.light-gray h4>a:link,.light-gray h4>a:visited,.light-gray h5>a:active,.light-gray h5>a:link,.light-gray h5>a:visited,.light-gray h6>a:active,.light-gray h6>a:link,.light-gray h6>a:visited,.light-gray li>a:active,.light-gray li>a:link,.light-gray li>a:visited,.light-gray p>a:active,.light-gray p>a:link,.light-gray p>a:visited,.light-gray td>a:active,.light-gray td>a:link,.light-gray td>a:visited{color:#0089bc}.light-gray .span>a:hover,.light-gray address>a:hover,.light-gray em>a:hover,.light-gray h1>a:hover,.light-gray h2>a:hover,.light-gray h3>a:hover,.light-gray h4>a:hover,.light-gray h5>a:hover,.light-gray h6>a:hover,.light-gray li>a:hover,.light-gray p>a:hover,.light-gray td>a:hover{color:#005170}.light-gray .span>a .glyphicon.tile,.light-gray address>a .glyphicon.tile,.light-gray em>a .glyphicon.tile,.light-gray h1>a .glyphicon.tile,.light-gray h2>a .glyphicon.tile,.light-gray h3>a .glyphicon.tile,.light-gray h4>a .glyphicon.tile,.light-gray h5>a .glyphicon.tile,.light-gray h6>a .glyphicon.tile,.light-gray li>a .glyphicon.tile,.light-gray p>a .glyphicon.tile,.light-gray td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-gray .span>a .glyphicon.tile:active,.light-gray .span>a .glyphicon.tile:hover,.light-gray address>a .glyphicon.tile:active,.light-gray address>a .glyphicon.tile:hover,.light-gray em>a .glyphicon.tile:active,.light-gray em>a .glyphicon.tile:hover,.light-gray h1>a .glyphicon.tile:active,.light-gray h1>a .glyphicon.tile:hover,.light-gray h2>a .glyphicon.tile:active,.light-gray h2>a .glyphicon.tile:hover,.light-gray h3>a .glyphicon.tile:active,.light-gray h3>a .glyphicon.tile:hover,.light-gray h4>a .glyphicon.tile:active,.light-gray h4>a .glyphicon.tile:hover,.light-gray h5>a .glyphicon.tile:active,.light-gray h5>a .glyphicon.tile:hover,.light-gray h6>a .glyphicon.tile:active,.light-gray h6>a .glyphicon.tile:hover,.light-gray li>a .glyphicon.tile:active,.light-gray li>a .glyphicon.tile:hover,.light-gray p>a .glyphicon.tile:active,.light-gray p>a .glyphicon.tile:hover,.light-gray td>a .glyphicon.tile:active,.light-gray td>a .glyphicon.tile:hover{color:#494949}.light-gray ul.nav-sidebar>li.active>a{color:#000}.light-gray ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.light-gray ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.light-gray ul.nav-sidebar>li>a:hover{color:#000}.light-gray ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-gray ul.dropdown-menu>li>a:hover{color:#fff}.light-gray.subnav .navbar-brand{color:#000}.light-gray.subnav .navbar-brand a{text-decoration:none;color:#000}.light-gray.subnav li>a{color:#aaa}.light-gray.subnav li>a.active{color:#000}.light-gray.subnav li>a:hover{color:#555}.light-gray .sidebar strong,.light-gray.subnav .navbar-toggle{color:#000}.light-gray.subnav .navbar-toggle:hover{background-color:transparent}.light-gray.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-gray .sidebar a strong,.light-gray .sidebar a strong:active,.light-gray .sidebar a strong:link,.light-gray .sidebar a strong:visited{color:#0089bc}.light-gray .sidebar a strong:hover{color:#005170}.light-gray cite.bubble strong{color:#414141}.light-gray cite.bubble a:active,.light-gray cite.bubble a:link,.light-gray cite.bubble a:visited{color:#0089bc}.light-gray cite.bubble a:hover{color:#005170}.light-gray blockquote,.light-gray blockquote p,.light-gray blockquote ul>li,.striped{color:#747474}.striped{background:url(/media/images/common/stripes.png)}.striped .lead a{font-weight:300}.striped .span>a,.striped address>a,.striped em>a,.striped h1>a,.striped h2>a,.striped h3>a,.striped h4>a,.striped h5>a,.striped h6>a,.striped li>a,.striped p>a,.striped td>a{-webkit-transition:.2s color;transition:.2s color}.striped .nav li>a,.striped .span>a:active,.striped .span>a:hover,.striped address>a:active,.striped address>a:hover,.striped em>a:active,.striped em>a:hover,.striped h1>a:active,.striped h1>a:hover,.striped h2>a:active,.striped h2>a:hover,.striped h3>a:active,.striped h3>a:hover,.striped h4>a:active,.striped h4>a:hover,.striped h5>a:active,.striped h5>a:hover,.striped h6>a:active,.striped h6>a:hover,.striped li>a:active,.striped li>a:hover,.striped p>a:active,.striped p>a:hover,.striped td>a:active,.striped td>a:hover{text-decoration:none}.striped.separated{border-bottom-color:#d2d2d2}.striped.jumbotron .h1,.striped.jumbotron h1{color:#343434}.striped.jumbotron .h2,.striped.jumbotron .h3,.striped.jumbotron .h4,.striped.jumbotron .h5,.striped.jumbotron .h6,.striped.jumbotron h2,.striped.jumbotron h3,.striped.jumbotron h4,.striped.jumbotron h5,.striped.jumbotron h6{color:#747474}.striped .span>a:active,.striped .span>a:link,.striped .span>a:visited,.striped address>a:active,.striped address>a:link,.striped address>a:visited,.striped em>a:active,.striped em>a:link,.striped em>a:visited,.striped h1>a:active,.striped h1>a:link,.striped h1>a:visited,.striped h2>a:active,.striped h2>a:link,.striped h2>a:visited,.striped h3>a:active,.striped h3>a:link,.striped h3>a:visited,.striped h4>a:active,.striped h4>a:link,.striped h4>a:visited,.striped h5>a:active,.striped h5>a:link,.striped h5>a:visited,.striped h6>a:active,.striped h6>a:link,.striped h6>a:visited,.striped li>a:active,.striped li>a:link,.striped li>a:visited,.striped p>a:active,.striped p>a:link,.striped p>a:visited,.striped td>a:active,.striped td>a:link,.striped td>a:visited{color:#0089bc}.striped .span>a:hover,.striped address>a:hover,.striped em>a:hover,.striped h1>a:hover,.striped h2>a:hover,.striped h3>a:hover,.striped h4>a:hover,.striped h5>a:hover,.striped h6>a:hover,.striped li>a:hover,.striped p>a:hover,.striped td>a:hover{color:#005170}.striped .span>a .glyphicon.tile,.striped address>a .glyphicon.tile,.striped em>a .glyphicon.tile,.striped h1>a .glyphicon.tile,.striped h2>a .glyphicon.tile,.striped h3>a .glyphicon.tile,.striped h4>a .glyphicon.tile,.striped h5>a .glyphicon.tile,.striped h6>a .glyphicon.tile,.striped li>a .glyphicon.tile,.striped p>a .glyphicon.tile,.striped td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.striped .span>a .glyphicon.tile:active,.striped .span>a .glyphicon.tile:hover,.striped address>a .glyphicon.tile:active,.striped address>a .glyphicon.tile:hover,.striped em>a .glyphicon.tile:active,.striped em>a .glyphicon.tile:hover,.striped h1>a .glyphicon.tile:active,.striped h1>a .glyphicon.tile:hover,.striped h2>a .glyphicon.tile:active,.striped h2>a .glyphicon.tile:hover,.striped h3>a .glyphicon.tile:active,.striped h3>a .glyphicon.tile:hover,.striped h4>a .glyphicon.tile:active,.striped h4>a .glyphicon.tile:hover,.striped h5>a .glyphicon.tile:active,.striped h5>a .glyphicon.tile:hover,.striped h6>a .glyphicon.tile:active,.striped h6>a .glyphicon.tile:hover,.striped li>a .glyphicon.tile:active,.striped li>a .glyphicon.tile:hover,.striped p>a .glyphicon.tile:active,.striped p>a .glyphicon.tile:hover,.striped td>a .glyphicon.tile:active,.striped td>a .glyphicon.tile:hover{color:#4e4e4e}.striped ul.nav-sidebar>li.active>a{color:#000}.striped ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.striped ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.striped ul.nav-sidebar>li>a:hover{color:#000}.striped ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.striped ul.dropdown-menu>li>a:hover{color:#fff}.striped.subnav .navbar-brand{color:#000}.striped.subnav .navbar-brand a{text-decoration:none;color:#000}.striped.subnav li>a{color:#aaa}.striped.subnav li>a.active{color:#000}.striped.subnav li>a:hover{color:#5b5b5b}.striped .sidebar strong,.striped.subnav .navbar-toggle{color:#000}.striped.subnav .navbar-toggle:hover{background-color:transparent}.striped.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.striped .sidebar a strong,.striped .sidebar a strong:active,.striped .sidebar a strong:link,.striped .sidebar a strong:visited{color:#0089bc}.striped .sidebar a strong:hover{color:#005170}.striped cite.bubble strong{color:#414141}.striped cite.bubble a:active,.striped cite.bubble a:link,.striped cite.bubble a:visited{color:#0089bc}.striped cite.bubble a:hover{color:#005170}.striped blockquote,.striped blockquote p,.striped blockquote ul>li{color:#747474}.striped .h1,.striped .h2,.striped .h3,.striped .h4,.striped .h5,.striped .h6,.striped h1,.striped h2,.striped h3,.striped h4,.striped h5,.striped h6{color:#4e4e4e}.cubes{color:#747474;background:url(/media/images/common/cube_tile_lt_gray.png)}.cubes .lead a{font-weight:300}.cubes .span>a,.cubes address>a,.cubes em>a,.cubes h1>a,.cubes h2>a,.cubes h3>a,.cubes h4>a,.cubes h5>a,.cubes h6>a,.cubes li>a,.cubes p>a,.cubes td>a{-webkit-transition:.2s color;transition:.2s color}.cubes .nav li>a,.cubes .span>a:active,.cubes .span>a:hover,.cubes address>a:active,.cubes address>a:hover,.cubes em>a:active,.cubes em>a:hover,.cubes h1>a:active,.cubes h1>a:hover,.cubes h2>a:active,.cubes h2>a:hover,.cubes h3>a:active,.cubes h3>a:hover,.cubes h4>a:active,.cubes h4>a:hover,.cubes h5>a:active,.cubes h5>a:hover,.cubes h6>a:active,.cubes h6>a:hover,.cubes li>a:active,.cubes li>a:hover,.cubes p>a:active,.cubes p>a:hover,.cubes td>a:active,.cubes td>a:hover{text-decoration:none}.cubes.separated{border-bottom-color:#d2d2d2}.cubes.jumbotron .h1,.cubes.jumbotron h1{color:#343434}.cubes.jumbotron .h2,.cubes.jumbotron .h3,.cubes.jumbotron .h4,.cubes.jumbotron .h5,.cubes.jumbotron .h6,.cubes.jumbotron h2,.cubes.jumbotron h3,.cubes.jumbotron h4,.cubes.jumbotron h5,.cubes.jumbotron h6{color:#747474}.cubes .span>a:active,.cubes .span>a:link,.cubes .span>a:visited,.cubes address>a:active,.cubes address>a:link,.cubes address>a:visited,.cubes em>a:active,.cubes em>a:link,.cubes em>a:visited,.cubes h1>a:active,.cubes h1>a:link,.cubes h1>a:visited,.cubes h2>a:active,.cubes h2>a:link,.cubes h2>a:visited,.cubes h3>a:active,.cubes h3>a:link,.cubes h3>a:visited,.cubes h4>a:active,.cubes h4>a:link,.cubes h4>a:visited,.cubes h5>a:active,.cubes h5>a:link,.cubes h5>a:visited,.cubes h6>a:active,.cubes h6>a:link,.cubes h6>a:visited,.cubes li>a:active,.cubes li>a:link,.cubes li>a:visited,.cubes p>a:active,.cubes p>a:link,.cubes p>a:visited,.cubes td>a:active,.cubes td>a:link,.cubes td>a:visited{color:#0089bc}.cubes .span>a:hover,.cubes address>a:hover,.cubes em>a:hover,.cubes h1>a:hover,.cubes h2>a:hover,.cubes h3>a:hover,.cubes h4>a:hover,.cubes h5>a:hover,.cubes h6>a:hover,.cubes li>a:hover,.cubes p>a:hover,.cubes td>a:hover{color:#005170}.cubes .span>a .glyphicon.tile,.cubes address>a .glyphicon.tile,.cubes em>a .glyphicon.tile,.cubes h1>a .glyphicon.tile,.cubes h2>a .glyphicon.tile,.cubes h3>a .glyphicon.tile,.cubes h4>a .glyphicon.tile,.cubes h5>a .glyphicon.tile,.cubes h6>a .glyphicon.tile,.cubes li>a .glyphicon.tile,.cubes p>a .glyphicon.tile,.cubes td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.cubes .span>a .glyphicon.tile:active,.cubes .span>a .glyphicon.tile:hover,.cubes address>a .glyphicon.tile:active,.cubes address>a .glyphicon.tile:hover,.cubes em>a .glyphicon.tile:active,.cubes em>a .glyphicon.tile:hover,.cubes h1>a .glyphicon.tile:active,.cubes h1>a .glyphicon.tile:hover,.cubes h2>a .glyphicon.tile:active,.cubes h2>a .glyphicon.tile:hover,.cubes h3>a .glyphicon.tile:active,.cubes h3>a .glyphicon.tile:hover,.cubes h4>a .glyphicon.tile:active,.cubes h4>a .glyphicon.tile:hover,.cubes h5>a .glyphicon.tile:active,.cubes h5>a .glyphicon.tile:hover,.cubes h6>a .glyphicon.tile:active,.cubes h6>a .glyphicon.tile:hover,.cubes li>a .glyphicon.tile:active,.cubes li>a .glyphicon.tile:hover,.cubes p>a .glyphicon.tile:active,.cubes p>a .glyphicon.tile:hover,.cubes td>a .glyphicon.tile:active,.cubes td>a .glyphicon.tile:hover{color:#4e4e4e}.cubes ul.nav-sidebar>li.active>a{color:#000}.cubes ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.blue .lead a,.dark-blue .lead a,.dark-green .lead a,.green .lead a,.light-blue .lead a{font-weight:300}.cubes ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.cubes ul.nav-sidebar>li>a:hover{color:#000}.cubes ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.cubes ul.dropdown-menu>li>a:hover{color:#fff}.cubes.subnav{opacity:.96}.cubes.subnav .navbar-brand{color:#000}.cubes.subnav .navbar-brand a{text-decoration:none;color:#000}.cubes.subnav li>a{color:#aaa}.cubes.subnav li>a.active{color:#000}.cubes.subnav li>a:hover{color:#5b5b5b}.cubes .sidebar strong,.cubes.subnav .navbar-toggle{color:#000}.cubes.subnav .navbar-toggle:hover{background-color:transparent}.cubes.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.cubes .sidebar a strong,.cubes .sidebar a strong:active,.cubes .sidebar a strong:link,.cubes .sidebar a strong:visited{color:#0089bc}.cubes .sidebar a strong:hover{color:#005170}.cubes cite.bubble strong{color:#414141}.cubes cite.bubble a:active,.cubes cite.bubble a:link,.cubes cite.bubble a:visited{color:#0089bc}.cubes cite.bubble a:hover{color:#005170}.cubes blockquote,.cubes blockquote p,.cubes blockquote ul>li{color:#747474}.cubes .h1,.cubes .h2,.cubes .h3,.cubes .h4,.cubes .h5,.cubes .h6,.cubes h1,.cubes h2,.cubes h3,.cubes h4,.cubes h5,.cubes h6{color:#4e4e4e}.green,.green .h1,.green .h2,.green .h3,.green .h4,.green .h5,.green .h6,.green h1,.green h2,.green h3,.green h4,.green h5,.green h6,.green.subnav .navbar-brand{color:#fff}.green{background-color:#3BB878}.green .span>a,.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{-webkit-transition:.2s color;transition:.2s color}.green .nav li>a,.green .span>a:active,.green .span>a:hover,.green address>a:active,.green address>a:hover,.green em>a:active,.green em>a:hover,.green h1>a:active,.green h1>a:hover,.green h2>a:active,.green h2>a:hover,.green h3>a:active,.green h3>a:hover,.green h4>a:active,.green h4>a:hover,.green h5>a:active,.green h5>a:hover,.green h6>a:active,.green h6>a:hover,.green li>a:active,.green li>a:hover,.green p>a:active,.green p>a:hover,.green td>a:active,.green td>a:hover{text-decoration:none}.green.separated{border-bottom-color:#287e52}.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{color:#fff;text-decoration:underline}.dark-green .nav li>a,.dark-green .span>a:active,.dark-green .span>a:hover,.dark-green address>a:active,.dark-green address>a:hover,.dark-green em>a:active,.dark-green em>a:hover,.dark-green h1>a:active,.dark-green h1>a:hover,.dark-green h2>a:active,.dark-green h2>a:hover,.dark-green h3>a:active,.dark-green h3>a:hover,.dark-green h4>a:active,.dark-green h4>a:hover,.dark-green h5>a:active,.dark-green h5>a:hover,.dark-green h6>a:active,.dark-green h6>a:hover,.dark-green li>a:active,.dark-green li>a:hover,.dark-green p>a:active,.dark-green p>a:hover,.dark-green td>a:active,.dark-green td>a:hover,.green address>a:hover,.green em>a:hover,.green h1>a:hover,.green h2>a:hover,.green h3>a:hover,.green h4>a:hover,.green h5>a:hover,.green h6>a:hover,.green li>a:hover,.green p>a:hover,.green td>a:hover,.green.subnav .navbar-brand a{text-decoration:none}.green.subnav li>a{color:#a1e1c0}.green.subnav li>a.active,.green.subnav li>a:hover{color:#fff}.green.subnav .navbar-toggle{color:#226b46}.dark-green,.dark-green .h1,.dark-green .h2,.dark-green .h3,.dark-green .h4,.dark-green .h5,.dark-green .h6,.dark-green h1,.dark-green h2,.dark-green h3,.dark-green h4,.dark-green h5,.dark-green h6,.dark-green.subnav .navbar-brand{color:#fff}.green.subnav .navbar-toggle:hover{background-color:transparent}.green.subnav .navbar-collapse{border-top-color:#226b46}.green.subnav .subnav-divider{border-bottom:1px solid #3BB878}.green .form-control{border:0!important}.dark-green{background-color:#35a56b}.dark-green .span>a,.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{-webkit-transition:.2s color;transition:.2s color}.dark-green.separated{border-bottom-color:#226b46}.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{color:#fff;text-decoration:underline}.blue .nav li>a,.blue .span>a:active,.blue .span>a:hover,.blue address>a:active,.blue address>a:hover,.blue em>a:active,.blue em>a:hover,.blue h1>a:active,.blue h1>a:hover,.blue h2>a:active,.blue h2>a:hover,.blue h3>a:active,.blue h3>a:hover,.blue h4>a:active,.blue h4>a:hover,.blue h5>a:active,.blue h5>a:hover,.blue h6>a:active,.blue h6>a:hover,.blue li>a:active,.blue li>a:hover,.blue p>a:active,.blue p>a:hover,.blue td>a:active,.blue td>a:hover,.dark-green address>a:hover,.dark-green em>a:hover,.dark-green h1>a:hover,.dark-green h2>a:hover,.dark-green h3>a:hover,.dark-green h4>a:hover,.dark-green h5>a:hover,.dark-green h6>a:hover,.dark-green li>a:hover,.dark-green p>a:hover,.dark-green td>a:hover,.dark-green.subnav .navbar-brand a{text-decoration:none}.dark-green.subnav li>a{color:#8edbb3}.dark-green.subnav li>a.active,.dark-green.subnav li>a:hover{color:#fff}.dark-green.subnav .navbar-toggle{color:#1c5739}.blue,.blue .h1,.blue .h2,.blue .h3,.blue .h4,.blue .h5,.blue .h6,.blue h1,.blue h2,.blue h3,.blue h4,.blue h5,.blue h6,.blue.subnav .navbar-brand{color:#fff}.dark-green.subnav .navbar-toggle:hover{background-color:transparent}.dark-green.subnav .navbar-collapse{border-top-color:#1c5739}.dark-green.subnav .subnav-divider{border-bottom:1px solid #35a56b}.dark-green .form-control{border:0!important}.blue{background-color:#00aeef}.blue .span>a,.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{-webkit-transition:.2s color;transition:.2s color}.blue.separated{border-bottom-color:#0076a3}.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{color:#fff;text-decoration:underline}.blue address>a:hover,.blue em>a:hover,.blue h1>a:hover,.blue h2>a:hover,.blue h3>a:hover,.blue h4>a:hover,.blue h5>a:hover,.blue h6>a:hover,.blue li>a:hover,.blue p>a:hover,.blue td>a:hover,.blue.subnav .navbar-brand a,.dark-blue .nav li>a,.dark-blue .span>a:active,.dark-blue .span>a:hover,.dark-blue address>a:active,.dark-blue address>a:hover,.dark-blue em>a:active,.dark-blue em>a:hover,.dark-blue h1>a:active,.dark-blue h1>a:hover,.dark-blue h2>a:active,.dark-blue h2>a:hover,.dark-blue h3>a:active,.dark-blue h3>a:hover,.dark-blue h4>a:active,.dark-blue h4>a:hover,.dark-blue h5>a:active,.dark-blue h5>a:hover,.dark-blue h6>a:active,.dark-blue h6>a:hover,.dark-blue li>a:active,.dark-blue li>a:hover,.dark-blue p>a:active,.dark-blue p>a:hover,.dark-blue td>a:active,.dark-blue td>a:hover{text-decoration:none}.blue.subnav li>a{color:#7fdcff}.blue.subnav li>a.active,.blue.subnav li>a:hover{color:#fff}.blue.subnav .navbar-toggle{color:#006489}.dark-blue,.dark-blue .h1,.dark-blue .h2,.dark-blue .h3,.dark-blue .h4,.dark-blue .h5,.dark-blue .h6,.dark-blue h1,.dark-blue h2,.dark-blue h3,.dark-blue h4,.dark-blue h5,.dark-blue h6,.dark-blue.subnav .navbar-brand{color:#fff}.blue.subnav .navbar-toggle:hover{background-color:transparent}.blue.subnav .navbar-collapse{border-top-color:#006489}.blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.blue .form-control{border:0!important}.dark-blue{background-color:#00aeef}.dark-blue .span>a,.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{-webkit-transition:.2s color;transition:.2s color}.dark-blue.separated{border-bottom-color:#0076a3}.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{color:#fff;text-decoration:underline}.dark-blue address>a:hover,.dark-blue em>a:hover,.dark-blue h1>a:hover,.dark-blue h2>a:hover,.dark-blue h3>a:hover,.dark-blue h4>a:hover,.dark-blue h5>a:hover,.dark-blue h6>a:hover,.dark-blue li>a:hover,.dark-blue p>a:hover,.dark-blue td>a:hover,.dark-blue.subnav .navbar-brand a,.light-blue .nav li>a,.light-blue .span>a:active,.light-blue .span>a:hover,.light-blue address>a:active,.light-blue address>a:hover,.light-blue em>a:active,.light-blue em>a:hover,.light-blue h1>a:active,.light-blue h1>a:hover,.light-blue h2>a:active,.light-blue h2>a:hover,.light-blue h3>a:active,.light-blue h3>a:hover,.light-blue h4>a:active,.light-blue h4>a:hover,.light-blue h5>a:active,.light-blue h5>a:hover,.light-blue h6>a:active,.light-blue h6>a:hover,.light-blue li>a:active,.light-blue li>a:hover,.light-blue p>a:active,.light-blue p>a:hover,.light-blue td>a:active,.light-blue td>a:hover,.light-blue.subnav .navbar-brand a,.red .nav li>a,.red .span>a:active,.red .span>a:hover,.red address>a:active,.red address>a:hover,.red em>a:active,.red em>a:hover,.red h1>a:active,.red h1>a:hover,.red h2>a:active,.red h2>a:hover,.red h3>a:active,.red h3>a:hover,.red h4>a:active,.red h4>a:hover,.red h5>a:active,.red h5>a:hover,.red h6>a:active,.red h6>a:hover,.red li>a:active,.red li>a:hover,.red p>a:active,.red p>a:hover,.red td>a:active,.red td>a:hover{text-decoration:none}.dark-blue.subnav li>a{color:#7fdcff}.dark-blue.subnav li>a.active,.dark-blue.subnav li>a:hover{color:#fff}.dark-blue.subnav .navbar-toggle{color:#006489}.dark-blue.subnav .navbar-toggle:hover{background-color:transparent}.dark-blue.subnav .navbar-collapse{border-top-color:#006489}.dark-blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.dark-blue .form-control{border:0!important}.light-blue{background-color:#edf7fe;color:#747474}.light-blue .span>a,.light-blue address>a,.light-blue em>a,.light-blue h1>a,.light-blue h2>a,.light-blue h3>a,.light-blue h4>a,.light-blue h5>a,.light-blue h6>a,.light-blue li>a,.light-blue p>a,.light-blue td>a{-webkit-transition:.2s color;transition:.2s color}.light-blue.separated{border-bottom-color:#a5d7fa}.light-blue .h1,.light-blue .h2,.light-blue .h3,.light-blue .h4,.light-blue .h5,.light-blue .h6,.light-blue h1,.light-blue h2,.light-blue h3,.light-blue h4,.light-blue h5,.light-blue h6{color:#000}.light-blue.jumbotron .h1,.light-blue.jumbotron h1{color:#343434}.light-blue.jumbotron .h2,.light-blue.jumbotron .h3,.light-blue.jumbotron .h4,.light-blue.jumbotron .h5,.light-blue.jumbotron .h6,.light-blue.jumbotron h2,.light-blue.jumbotron h3,.light-blue.jumbotron h4,.light-blue.jumbotron h5,.light-blue.jumbotron h6{color:#747474}.light-blue .span>a:active,.light-blue .span>a:link,.light-blue .span>a:visited,.light-blue address>a:active,.light-blue address>a:link,.light-blue address>a:visited,.light-blue em>a:active,.light-blue em>a:link,.light-blue em>a:visited,.light-blue h1>a:active,.light-blue h1>a:link,.light-blue h1>a:visited,.light-blue h2>a:active,.light-blue h2>a:link,.light-blue h2>a:visited,.light-blue h3>a:active,.light-blue h3>a:link,.light-blue h3>a:visited,.light-blue h4>a:active,.light-blue h4>a:link,.light-blue h4>a:visited,.light-blue h5>a:active,.light-blue h5>a:link,.light-blue h5>a:visited,.light-blue h6>a:active,.light-blue h6>a:link,.light-blue h6>a:visited,.light-blue li>a:active,.light-blue li>a:link,.light-blue li>a:visited,.light-blue p>a:active,.light-blue p>a:link,.light-blue p>a:visited,.light-blue td>a:active,.light-blue td>a:link,.light-blue td>a:visited{color:#0089bc}.light-blue .span>a:hover,.light-blue address>a:hover,.light-blue em>a:hover,.light-blue h1>a:hover,.light-blue h2>a:hover,.light-blue h3>a:hover,.light-blue h4>a:hover,.light-blue h5>a:hover,.light-blue h6>a:hover,.light-blue li>a:hover,.light-blue p>a:hover,.light-blue td>a:hover{color:#005170}.light-blue .span>a .glyphicon.tile,.light-blue address>a .glyphicon.tile,.light-blue em>a .glyphicon.tile,.light-blue h1>a .glyphicon.tile,.light-blue h2>a .glyphicon.tile,.light-blue h3>a .glyphicon.tile,.light-blue h4>a .glyphicon.tile,.light-blue h5>a .glyphicon.tile,.light-blue h6>a .glyphicon.tile,.light-blue li>a .glyphicon.tile,.light-blue p>a .glyphicon.tile,.light-blue td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-blue .span>a .glyphicon.tile:active,.light-blue .span>a .glyphicon.tile:hover,.light-blue address>a .glyphicon.tile:active,.light-blue address>a .glyphicon.tile:hover,.light-blue em>a .glyphicon.tile:active,.light-blue em>a .glyphicon.tile:hover,.light-blue h1>a .glyphicon.tile:active,.light-blue h1>a .glyphicon.tile:hover,.light-blue h2>a .glyphicon.tile:active,.light-blue h2>a .glyphicon.tile:hover,.light-blue h3>a .glyphicon.tile:active,.light-blue h3>a .glyphicon.tile:hover,.light-blue h4>a .glyphicon.tile:active,.light-blue h4>a .glyphicon.tile:hover,.light-blue h5>a .glyphicon.tile:active,.light-blue h5>a .glyphicon.tile:hover,.light-blue h6>a .glyphicon.tile:active,.light-blue h6>a .glyphicon.tile:hover,.light-blue li>a .glyphicon.tile:active,.light-blue li>a .glyphicon.tile:hover,.light-blue p>a .glyphicon.tile:active,.light-blue p>a .glyphicon.tile:hover,.light-blue td>a .glyphicon.tile:active,.light-blue td>a .glyphicon.tile:hover{color:#4e4e4e}.light-blue ul.nav-sidebar>li.active>a{color:#000}.light-blue ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.dark-purple .lead a,.hero .lead a,.hero-accent .lead a,.light-purple .lead a,.logo-bg-dark .lead a,.primary .lead a,.purple .lead a,.red .lead a{font-weight:300}.light-blue ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.light-blue ul.nav-sidebar>li>a:hover{color:#000}.light-blue ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-blue ul.dropdown-menu>li>a:hover{color:#fff}.light-blue.subnav .navbar-brand,.light-blue.subnav .navbar-brand a{color:#000}.light-blue.subnav li>a{color:#aaa}.light-blue.subnav li>a.active{color:#000}.light-blue.subnav li>a:hover{color:#5b5b5b}.light-blue .sidebar strong,.light-blue.subnav .navbar-toggle{color:#000}.light-blue.subnav .navbar-toggle:hover{background-color:transparent}.light-blue.subnav .navbar-collapse{border-top-color:#e7e6e6}.light-blue.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-blue .sidebar a strong,.light-blue .sidebar a strong:active,.light-blue .sidebar a strong:link,.light-blue .sidebar a strong:visited{color:#0089bc}.light-blue .sidebar a strong:hover{color:#005170}.light-blue cite.bubble strong{color:#414141}.light-blue cite.bubble a:active,.light-blue cite.bubble a:link,.light-blue cite.bubble a:visited{color:#0089bc}.light-blue cite.bubble a:hover{color:#005170}.light-blue blockquote,.light-blue blockquote p,.light-blue blockquote ul>li{color:#747474}.red,.red .h1,.red .h2,.red .h3,.red .h4,.red .h5,.red .h6,.red h1,.red h2,.red h3,.red h4,.red h5,.red h6,.red.subnav .navbar-brand{color:#fff}.red{background-color:#d7594c}.red .span>a,.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{-webkit-transition:.2s color;transition:.2s color}.red.separated{border-bottom-color:#af3428}.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{color:#fff;text-decoration:underline}.purple .nav li>a,.purple .span>a:active,.purple .span>a:hover,.purple address>a:active,.purple address>a:hover,.purple em>a:active,.purple em>a:hover,.purple h1>a:active,.purple h1>a:hover,.purple h2>a:active,.purple h2>a:hover,.purple h3>a:active,.purple h3>a:hover,.purple h4>a:active,.purple h4>a:hover,.purple h5>a:active,.purple h5>a:hover,.purple h6>a:active,.purple h6>a:hover,.purple li>a:active,.purple li>a:hover,.purple p>a:active,.purple p>a:hover,.purple td>a:active,.purple td>a:hover,.red address>a:hover,.red em>a:hover,.red h1>a:hover,.red h2>a:hover,.red h3>a:hover,.red h4>a:hover,.red h5>a:hover,.red h6>a:hover,.red li>a:hover,.red p>a:hover,.red td>a:hover,.red.subnav .navbar-brand a{text-decoration:none}.red.subnav li>a{color:#f1c5c1}.red.subnav li>a.active,.red.subnav li>a:hover{color:#fff}.red.subnav .navbar-toggle{color:#9a2e23}.purple,.purple .h1,.purple .h2,.purple .h3,.purple .h4,.purple .h5,.purple .h6,.purple h1,.purple h2,.purple h3,.purple h4,.purple h5,.purple h6,.purple.subnav .navbar-brand{color:#fff}.red.subnav .navbar-toggle:hover{background-color:transparent}.red.subnav .navbar-collapse{border-top-color:#9a2e23}.red.subnav .subnav-divider{border-bottom:1px solid #d7594c}.red .form-control{border:0!important}.purple{background-color:#c67fcf}.purple .span>a,.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{-webkit-transition:.2s color;transition:.2s color}.purple.separated{border-bottom-color:#ad47ba}.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{color:#fff;text-decoration:underline}.dark-purple .nav li>a,.dark-purple .span>a:active,.dark-purple .span>a:hover,.dark-purple address>a:active,.dark-purple address>a:hover,.dark-purple em>a:active,.dark-purple em>a:hover,.dark-purple h1>a:active,.dark-purple h1>a:hover,.dark-purple h2>a:active,.dark-purple h2>a:hover,.dark-purple h3>a:active,.dark-purple h3>a:hover,.dark-purple h4>a:active,.dark-purple h4>a:hover,.dark-purple h5>a:active,.dark-purple h5>a:hover,.dark-purple h6>a:active,.dark-purple h6>a:hover,.dark-purple li>a:active,.dark-purple li>a:hover,.dark-purple p>a:active,.dark-purple p>a:hover,.dark-purple td>a:active,.dark-purple td>a:hover,.purple address>a:hover,.purple em>a:hover,.purple h1>a:hover,.purple h2>a:hover,.purple h3>a:hover,.purple h4>a:hover,.purple h5>a:hover,.purple h6>a:hover,.purple li>a:hover,.purple p>a:hover,.purple td>a:hover,.purple.subnav .navbar-brand a{text-decoration:none}.purple.subnav li>a{color:#f4e7f6}.purple.subnav li>a.active,.purple.subnav li>a:hover{color:#fff}.purple.subnav .navbar-toggle{color:#9d3fa9}.dark-purple,.dark-purple .h1,.dark-purple .h2,.dark-purple .h3,.dark-purple .h4,.dark-purple .h5,.dark-purple .h6,.dark-purple h1,.dark-purple h2,.dark-purple h3,.dark-purple h4,.dark-purple h5,.dark-purple h6,.dark-purple.subnav .navbar-brand{color:#fff}.purple.subnav .navbar-toggle:hover{background-color:transparent}.purple.subnav .navbar-collapse{border-top-color:#9d3fa9}.purple.subnav .subnav-divider{border-bottom:1px solid #c67fcf}.purple .form-control{border:0!important}.dark-purple{background-color:#be6cc8}.dark-purple .span>a,.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{-webkit-transition:.2s color;transition:.2s color}.dark-purple.separated{border-bottom-color:#9d3fa9}.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{color:#fff;text-decoration:underline}.dark-purple address>a:hover,.dark-purple em>a:hover,.dark-purple h1>a:hover,.dark-purple h2>a:hover,.dark-purple h3>a:hover,.dark-purple h4>a:hover,.dark-purple h5>a:hover,.dark-purple h6>a:hover,.dark-purple li>a:hover,.dark-purple p>a:hover,.dark-purple td>a:hover,.dark-purple.subnav .navbar-brand a,.light-purple .nav li>a,.light-purple .span>a:active,.light-purple .span>a:hover,.light-purple address>a:active,.light-purple address>a:hover,.light-purple em>a:active,.light-purple em>a:hover,.light-purple h1>a:active,.light-purple h1>a:hover,.light-purple h2>a:active,.light-purple h2>a:hover,.light-purple h3>a:active,.light-purple h3>a:hover,.light-purple h4>a:active,.light-purple h4>a:hover,.light-purple h5>a:active,.light-purple h5>a:hover,.light-purple h6>a:active,.light-purple h6>a:hover,.light-purple li>a:active,.light-purple li>a:hover,.light-purple p>a:active,.light-purple p>a:hover,.light-purple td>a:active,.light-purple td>a:hover{text-decoration:none}.dark-purple.subnav li>a{color:#ecd4ef}.dark-purple.subnav li>a.active,.dark-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle{color:#8c3896}.light-purple,.light-purple .h1,.light-purple .h2,.light-purple .h3,.light-purple .h4,.light-purple .h5,.light-purple .h6,.light-purple h1,.light-purple h2,.light-purple h3,.light-purple h4,.light-purple h5,.light-purple h6,.light-purple.subnav .navbar-brand,.light-purple.subnav li>a,.light-purple.subnav li>a.active,.light-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle:hover{background-color:transparent}.dark-purple.subnav .navbar-collapse{border-top-color:#8c3896}.dark-purple.subnav .subnav-divider{border-bottom:1px solid #be6cc8}.dark-purple .form-control{border:0!important}.light-purple{background-color:#eed8f0}.light-purple .span>a,.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{-webkit-transition:.2s color;transition:.2s color}.light-purple.separated{border-bottom-color:#d5a0dc}.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{color:#fff;text-decoration:underline}.charcoal a:active,.charcoal a:hover,.dark a:active,.dark a:hover,.dark-less a:active,.dark-less a:hover,.light-purple address>a:hover,.light-purple em>a:hover,.light-purple h1>a:hover,.light-purple h2>a:hover,.light-purple h3>a:hover,.light-purple h4>a:hover,.light-purple h5>a:hover,.light-purple h6>a:hover,.light-purple li>a:hover,.light-purple p>a:hover,.light-purple td>a:hover,.light-purple.subnav .navbar-brand a,.logo-bg-dark .nav li>a,.logo-bg-dark .span>a:active,.logo-bg-dark .span>a:hover,.logo-bg-dark address>a:active,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:active,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:active,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:active,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:active,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:active,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:active,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:active,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:active,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:active,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:active,.logo-bg-dark td>a:hover{text-decoration:none}.light-purple.subnav .navbar-toggle{color:#cd8ed5}.light-purple.subnav .navbar-toggle:hover{background-color:transparent}.light-purple.subnav .navbar-collapse{border-top-color:#cd8ed5}.light-purple.subnav .subnav-divider{border-bottom:1px solid #eed8f0}.light-purple .form-control{border:0!important}.dark{background-color:#161616;color:#444}.dark a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.dark-less a,.dark-moar a{-webkit-transition:.2s all}.dark a:active,.dark a:hover{color:#f2f2f2}.dark-moar{color:#444;background-color:#0a0a0a}.dark-moar a{transition:.2s all;color:#a6a6a6}.dark-moar a:active,.dark-moar a:hover{color:#f2f2f2;text-decoration:none}.dark-less{background-color:#222;color:#fff}.dark-less a{transition:.2s all;color:#a6a6a6}.dark-less a:active,.dark-less a:hover{color:#f2f2f2}.charcoal{color:#444;background-color:#353535}.charcoal a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.charcoal a:active,.charcoal a:hover{color:#f2f2f2}.logo-bg-dark,.logo-bg-dark .h1,.logo-bg-dark .h2,.logo-bg-dark .h3,.logo-bg-dark .h4,.logo-bg-dark .h5,.logo-bg-dark .h6,.logo-bg-dark h1,.logo-bg-dark h2,.logo-bg-dark h3,.logo-bg-dark h4,.logo-bg-dark h5,.logo-bg-dark h6,.logo-bg-dark.subnav .navbar-brand{color:#fff}.logo-bg-dark{background-color:#2d3339}.logo-bg-dark .span>a,.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{-webkit-transition:.2s color;transition:.2s color}.logo-bg-dark.separated{border-bottom-color:#0b0d0e}.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{color:#fff;text-decoration:underline}.hero .nav li>a,.hero .span>a:active,.hero .span>a:hover,.hero address>a:active,.hero address>a:hover,.hero em>a:active,.hero em>a:hover,.hero h1>a:active,.hero h1>a:hover,.hero h2>a:active,.hero h2>a:hover,.hero h3>a:active,.hero h3>a:hover,.hero h4>a:active,.hero h4>a:hover,.hero h5>a:active,.hero h5>a:hover,.hero h6>a:active,.hero h6>a:hover,.hero li>a:active,.hero li>a:hover,.hero p>a:active,.hero p>a:hover,.hero td>a:active,.hero td>a:hover,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:hover,.logo-bg-dark.subnav .navbar-brand a{text-decoration:none}.logo-bg-dark.subnav li>a{color:#6c7a89}.logo-bg-dark.subnav li>a.active,.logo-bg-dark.subnav li>a:hover{color:#fff}.logo-bg-dark.subnav .navbar-toggle{color:#000}.hero,.hero .h1,.hero .h2,.hero .h3,.hero .h4,.hero .h5,.hero .h6,.hero h1,.hero h2,.hero h3,.hero h4,.hero h5,.hero h6,.hero.subnav .navbar-brand{color:#fff}.logo-bg-dark.subnav .navbar-toggle:hover{background-color:transparent}.logo-bg-dark.subnav .navbar-collapse{border-top-color:#000}.logo-bg-dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}.logo-bg-dark .form-control{border:0!important}.hero{background-color:#3BB878}.hero .span>a,.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{-webkit-transition:.2s color;transition:.2s color}.hero.separated{border-bottom-color:#287e52}.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{color:#fff;text-decoration:underline}.hero address>a:hover,.hero em>a:hover,.hero h1>a:hover,.hero h2>a:hover,.hero h3>a:hover,.hero h4>a:hover,.hero h5>a:hover,.hero h6>a:hover,.hero li>a:hover,.hero p>a:hover,.hero td>a:hover,.hero-accent .nav li>a,.hero-accent .span>a:active,.hero-accent .span>a:hover,.hero-accent address>a:active,.hero-accent address>a:hover,.hero-accent em>a:active,.hero-accent em>a:hover,.hero-accent h1>a:active,.hero-accent h1>a:hover,.hero-accent h2>a:active,.hero-accent h2>a:hover,.hero-accent h3>a:active,.hero-accent h3>a:hover,.hero-accent h4>a:active,.hero-accent h4>a:hover,.hero-accent h5>a:active,.hero-accent h5>a:hover,.hero-accent h6>a:active,.hero-accent h6>a:hover,.hero-accent li>a:active,.hero-accent li>a:hover,.hero-accent p>a:active,.hero-accent p>a:hover,.hero-accent td>a:active,.hero-accent td>a:hover,.hero.subnav .navbar-brand a{text-decoration:none}.hero.subnav li>a{color:#a1e1c0}.hero.subnav li>a.active,.hero.subnav li>a:hover{color:#fff}.hero.subnav .navbar-toggle{color:#226b46}.hero-accent,.hero-accent .h1,.hero-accent .h2,.hero-accent .h3,.hero-accent .h4,.hero-accent .h5,.hero-accent .h6,.hero-accent h1,.hero-accent h2,.hero-accent h3,.hero-accent h4,.hero-accent h5,.hero-accent h6,.hero-accent.subnav .navbar-brand{color:#fff}.hero.subnav .navbar-toggle:hover{background-color:transparent}.hero.subnav .navbar-collapse{border-top-color:#226b46}.hero.subnav .subnav-divider{border-bottom:1px solid #3BB878}.hero .form-control{border:0!important}.hero-accent{background-color:#35a56b}.hero-accent .span>a,.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{-webkit-transition:.2s color;transition:.2s color}.hero-accent.separated{border-bottom-color:#226b46}.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{color:#fff;text-decoration:underline}.alt .nav li>a,.alt .span>a:active,.alt .span>a:hover,.alt address>a:active,.alt address>a:hover,.alt em>a:active,.alt em>a:hover,.alt h1>a:active,.alt h1>a:hover,.alt h2>a:active,.alt h2>a:hover,.alt h3>a:active,.alt h3>a:hover,.alt h4>a:active,.alt h4>a:hover,.alt h5>a:active,.alt h5>a:hover,.alt h6>a:active,.alt h6>a:hover,.alt li>a:active,.alt li>a:hover,.alt p>a:active,.alt p>a:hover,.alt td>a:active,.alt td>a:hover,.alt ul.dropdown-menu>li>a:link,.alt.subnav .navbar-brand a,.bold .nav li>a,.bold .span>a:active,.bold .span>a:hover,.bold address>a:active,.bold address>a:hover,.bold em>a:active,.bold em>a:hover,.bold h1>a:active,.bold h1>a:hover,.bold h2>a:active,.bold h2>a:hover,.bold h3>a:active,.bold h3>a:hover,.bold h4>a:active,.bold h4>a:hover,.bold h5>a:active,.bold h5>a:hover,.bold h6>a:active,.bold h6>a:hover,.bold li>a:active,.bold li>a:hover,.bold p>a:active,.bold p>a:hover,.bold td>a:active,.bold td>a:hover,.hero-accent address>a:hover,.hero-accent em>a:hover,.hero-accent h1>a:hover,.hero-accent h2>a:hover,.hero-accent h3>a:hover,.hero-accent h4>a:hover,.hero-accent h5>a:hover,.hero-accent h6>a:hover,.hero-accent li>a:hover,.hero-accent p>a:hover,.hero-accent td>a:hover,.hero-accent.subnav .navbar-brand a,.primary .nav li>a,.primary .span>a:active,.primary .span>a:hover,.primary address>a:active,.primary address>a:hover,.primary em>a:active,.primary em>a:hover,.primary h1>a:active,.primary h1>a:hover,.primary h2>a:active,.primary h2>a:hover,.primary h3>a:active,.primary h3>a:hover,.primary h4>a:active,.primary h4>a:hover,.primary h5>a:active,.primary h5>a:hover,.primary h6>a:active,.primary h6>a:hover,.primary li>a:active,.primary li>a:hover,.primary p>a:active,.primary p>a:hover,.primary td>a:active,.primary td>a:hover,.primary.subnav .navbar-brand a{text-decoration:none}.hero-accent.subnav li>a{color:#8edbb3}.hero-accent.subnav li>a.active,.hero-accent.subnav li>a:hover{color:#fff}.hero-accent.subnav .navbar-toggle{color:#1c5739}.hero-accent.subnav .navbar-toggle:hover{background-color:transparent}.hero-accent.subnav .navbar-collapse{border-top-color:#1c5739}.hero-accent.subnav .subnav-divider{border-bottom:1px solid #35a56b}.hero-accent .form-control{border:0!important}.alt.subnav .navbar-collapse,.primary.subnav .navbar-collapse{border-top-color:#e7e6e6}.primary{background-color:#fff;color:#747474}.primary .span>a,.primary address>a,.primary em>a,.primary h1>a,.primary h2>a,.primary h3>a,.primary h4>a,.primary h5>a,.primary h6>a,.primary li>a,.primary p>a,.primary td>a{-webkit-transition:.2s color;transition:.2s color}.primary.separated{border-bottom-color:#d9d9d9}.primary .h1,.primary .h2,.primary .h3,.primary .h4,.primary .h5,.primary .h6,.primary h1,.primary h2,.primary h3,.primary h4,.primary h5,.primary h6{color:#000}.primary.jumbotron .h1,.primary.jumbotron h1{color:#343434}.primary.jumbotron .h2,.primary.jumbotron .h3,.primary.jumbotron .h4,.primary.jumbotron .h5,.primary.jumbotron .h6,.primary.jumbotron h2,.primary.jumbotron h3,.primary.jumbotron h4,.primary.jumbotron h5,.primary.jumbotron h6{color:#747474}.primary .span>a:active,.primary .span>a:link,.primary .span>a:visited,.primary address>a:active,.primary address>a:link,.primary address>a:visited,.primary em>a:active,.primary em>a:link,.primary em>a:visited,.primary h1>a:active,.primary h1>a:link,.primary h1>a:visited,.primary h2>a:active,.primary h2>a:link,.primary h2>a:visited,.primary h3>a:active,.primary h3>a:link,.primary h3>a:visited,.primary h4>a:active,.primary h4>a:link,.primary h4>a:visited,.primary h5>a:active,.primary h5>a:link,.primary h5>a:visited,.primary h6>a:active,.primary h6>a:link,.primary h6>a:visited,.primary li>a:active,.primary li>a:link,.primary li>a:visited,.primary p>a:active,.primary p>a:link,.primary p>a:visited,.primary td>a:active,.primary td>a:link,.primary td>a:visited{color:#0089bc}.primary .span>a:hover,.primary address>a:hover,.primary em>a:hover,.primary h1>a:hover,.primary h2>a:hover,.primary h3>a:hover,.primary h4>a:hover,.primary h5>a:hover,.primary h6>a:hover,.primary li>a:hover,.primary p>a:hover,.primary td>a:hover{color:#005170}.primary .span>a .glyphicon.tile,.primary address>a .glyphicon.tile,.primary em>a .glyphicon.tile,.primary h1>a .glyphicon.tile,.primary h2>a .glyphicon.tile,.primary h3>a .glyphicon.tile,.primary h4>a .glyphicon.tile,.primary h5>a .glyphicon.tile,.primary h6>a .glyphicon.tile,.primary li>a .glyphicon.tile,.primary p>a .glyphicon.tile,.primary td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.primary .span>a .glyphicon.tile:active,.primary .span>a .glyphicon.tile:hover,.primary address>a .glyphicon.tile:active,.primary address>a .glyphicon.tile:hover,.primary em>a .glyphicon.tile:active,.primary em>a .glyphicon.tile:hover,.primary h1>a .glyphicon.tile:active,.primary h1>a .glyphicon.tile:hover,.primary h2>a .glyphicon.tile:active,.primary h2>a .glyphicon.tile:hover,.primary h3>a .glyphicon.tile:active,.primary h3>a .glyphicon.tile:hover,.primary h4>a .glyphicon.tile:active,.primary h4>a .glyphicon.tile:hover,.primary h5>a .glyphicon.tile:active,.primary h5>a .glyphicon.tile:hover,.primary h6>a .glyphicon.tile:active,.primary h6>a .glyphicon.tile:hover,.primary li>a .glyphicon.tile:active,.primary li>a .glyphicon.tile:hover,.primary p>a .glyphicon.tile:active,.primary p>a .glyphicon.tile:hover,.primary td>a .glyphicon.tile:active,.primary td>a .glyphicon.tile:hover{color:#4e4e4e}.primary ul.nav-sidebar>li.active>a{color:#000}.primary ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.primary ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.primary ul.nav-sidebar>li>a:hover{color:#000}.primary ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.primary ul.dropdown-menu>li>a:hover{color:#fff}.primary.subnav .navbar-brand,.primary.subnav .navbar-brand a{color:#000}.primary.subnav li>a{color:#aaa}.primary.subnav li>a.active{color:#000}.primary.subnav li>a:hover{color:#5b5b5b}.primary .sidebar strong,.primary.subnav .navbar-toggle{color:#000}.primary.subnav .navbar-toggle:hover{background-color:transparent}.primary.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.primary .sidebar a strong,.primary .sidebar a strong:active,.primary .sidebar a strong:link,.primary .sidebar a strong:visited{color:#0089bc}.primary .sidebar a strong:hover{color:#005170}.primary cite.bubble strong{color:#414141}.primary cite.bubble a:active,.primary cite.bubble a:link,.primary cite.bubble a:visited{color:#0089bc}.primary cite.bubble a:hover{color:#005170}.alt,.primary blockquote,.primary blockquote p,.primary blockquote ul>li{color:#747474}.alt{background-color:#edf7fe}.alt .lead a{font-weight:300}.alt .span>a,.alt address>a,.alt em>a,.alt h1>a,.alt h2>a,.alt h3>a,.alt h4>a,.alt h5>a,.alt h6>a,.alt li>a,.alt p>a,.alt td>a{-webkit-transition:.2s color;transition:.2s color}.alt.separated{border-bottom-color:#a5d7fa}.alt .h1,.alt .h2,.alt .h3,.alt .h4,.alt .h5,.alt .h6,.alt h1,.alt h2,.alt h3,.alt h4,.alt h5,.alt h6{color:#000}.alt.jumbotron .h1,.alt.jumbotron h1{color:#343434}.alt.jumbotron .h2,.alt.jumbotron .h3,.alt.jumbotron .h4,.alt.jumbotron .h5,.alt.jumbotron .h6,.alt.jumbotron h2,.alt.jumbotron h3,.alt.jumbotron h4,.alt.jumbotron h5,.alt.jumbotron h6{color:#747474}.alt .span>a:active,.alt .span>a:link,.alt .span>a:visited,.alt address>a:active,.alt address>a:link,.alt address>a:visited,.alt em>a:active,.alt em>a:link,.alt em>a:visited,.alt h1>a:active,.alt h1>a:link,.alt h1>a:visited,.alt h2>a:active,.alt h2>a:link,.alt h2>a:visited,.alt h3>a:active,.alt h3>a:link,.alt h3>a:visited,.alt h4>a:active,.alt h4>a:link,.alt h4>a:visited,.alt h5>a:active,.alt h5>a:link,.alt h5>a:visited,.alt h6>a:active,.alt h6>a:link,.alt h6>a:visited,.alt li>a:active,.alt li>a:link,.alt li>a:visited,.alt p>a:active,.alt p>a:link,.alt p>a:visited,.alt td>a:active,.alt td>a:link,.alt td>a:visited{color:#0089bc}.alt .span>a:hover,.alt address>a:hover,.alt em>a:hover,.alt h1>a:hover,.alt h2>a:hover,.alt h3>a:hover,.alt h4>a:hover,.alt h5>a:hover,.alt h6>a:hover,.alt li>a:hover,.alt p>a:hover,.alt td>a:hover{color:#005170}.alt .span>a .glyphicon.tile,.alt address>a .glyphicon.tile,.alt em>a .glyphicon.tile,.alt h1>a .glyphicon.tile,.alt h2>a .glyphicon.tile,.alt h3>a .glyphicon.tile,.alt h4>a .glyphicon.tile,.alt h5>a .glyphicon.tile,.alt h6>a .glyphicon.tile,.alt li>a .glyphicon.tile,.alt p>a .glyphicon.tile,.alt td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.alt .span>a .glyphicon.tile:active,.alt .span>a .glyphicon.tile:hover,.alt address>a .glyphicon.tile:active,.alt address>a .glyphicon.tile:hover,.alt em>a .glyphicon.tile:active,.alt em>a .glyphicon.tile:hover,.alt h1>a .glyphicon.tile:active,.alt h1>a .glyphicon.tile:hover,.alt h2>a .glyphicon.tile:active,.alt h2>a .glyphicon.tile:hover,.alt h3>a .glyphicon.tile:active,.alt h3>a .glyphicon.tile:hover,.alt h4>a .glyphicon.tile:active,.alt h4>a .glyphicon.tile:hover,.alt h5>a .glyphicon.tile:active,.alt h5>a .glyphicon.tile:hover,.alt h6>a .glyphicon.tile:active,.alt h6>a .glyphicon.tile:hover,.alt li>a .glyphicon.tile:active,.alt li>a .glyphicon.tile:hover,.alt p>a .glyphicon.tile:active,.alt p>a .glyphicon.tile:hover,.alt td>a .glyphicon.tile:active,.alt td>a .glyphicon.tile:hover{color:#4e4e4e}.alt ul.nav-sidebar>li.active>a{color:#000}.alt ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.accent .lead a,.bold .lead a,.neutral .lead a{font-weight:300}.alt ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.alt ul.nav-sidebar>li>a:hover{color:#000}.alt ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.alt ul.dropdown-menu>li>a:hover{color:#fff}.alt.subnav .navbar-brand,.alt.subnav .navbar-brand a{color:#000}.alt.subnav li>a{color:#aaa}.alt.subnav li>a.active{color:#000}.alt.subnav li>a:hover{color:#5b5b5b}.alt .sidebar strong,.alt.subnav .navbar-toggle{color:#000}.alt.subnav .navbar-toggle:hover{background-color:transparent}.alt.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.alt .sidebar a strong,.alt .sidebar a strong:active,.alt .sidebar a strong:link,.alt .sidebar a strong:visited{color:#0089bc}.alt .sidebar a strong:hover{color:#005170}.alt cite.bubble strong{color:#414141}.alt cite.bubble a:active,.alt cite.bubble a:link,.alt cite.bubble a:visited{color:#0089bc}.alt cite.bubble a:hover{color:#005170}.alt blockquote,.alt blockquote p,.alt blockquote ul>li{color:#747474}.bold,.bold .h1,.bold .h2,.bold .h3,.bold .h4,.bold .h5,.bold .h6,.bold h1,.bold h2,.bold h3,.bold h4,.bold h5,.bold h6,.bold.subnav .navbar-brand{color:#fff}.bold{background-color:#2d3339}.bold .span>a,.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{-webkit-transition:.2s color;transition:.2s color}.bold.separated{border-bottom-color:#0b0d0e}.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{color:#fff;text-decoration:underline}.accent .nav li>a,.accent .span>a:active,.accent .span>a:hover,.accent address>a:active,.accent address>a:hover,.accent em>a:active,.accent em>a:hover,.accent h1>a:active,.accent h1>a:hover,.accent h2>a:active,.accent h2>a:hover,.accent h3>a:active,.accent h3>a:hover,.accent h4>a:active,.accent h4>a:hover,.accent h5>a:active,.accent h5>a:hover,.accent h6>a:active,.accent h6>a:hover,.accent li>a:active,.accent li>a:hover,.accent p>a:active,.accent p>a:hover,.accent td>a:active,.accent td>a:hover,.bold address>a:hover,.bold em>a:hover,.bold h1>a:hover,.bold h2>a:hover,.bold h3>a:hover,.bold h4>a:hover,.bold h5>a:hover,.bold h6>a:hover,.bold li>a:hover,.bold p>a:hover,.bold td>a:hover,.bold.subnav .navbar-brand a{text-decoration:none}.bold.subnav li>a{color:#6c7a89}.bold.subnav li>a.active,.bold.subnav li>a:hover{color:#fff}.bold.subnav .navbar-toggle{color:#000}.accent,.accent .h1,.accent .h2,.accent .h3,.accent .h4,.accent .h5,.accent .h6,.accent h1,.accent h2,.accent h3,.accent h4,.accent h5,.accent h6,.accent.subnav .navbar-brand{color:#fff}.bold.subnav .navbar-toggle:hover{background-color:transparent}.bold.subnav .navbar-collapse{border-top-color:#000}.bold.subnav .subnav-divider{border-bottom:1px solid #2d3339}.bold .form-control{border:0!important}.accent{background-color:#00aeef}.accent .span>a,.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{-webkit-transition:.2s color;transition:.2s color}.accent.separated{border-bottom-color:#0076a3}.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{color:#fff;text-decoration:underline}.accent address>a:hover,.accent em>a:hover,.accent h1>a:hover,.accent h2>a:hover,.accent h3>a:hover,.accent h4>a:hover,.accent h5>a:hover,.accent h6>a:hover,.accent li>a:hover,.accent p>a:hover,.accent td>a:hover,.accent.subnav .navbar-brand a,.neutral .nav li>a,.neutral .span>a:active,.neutral .span>a:hover,.neutral address>a:active,.neutral address>a:hover,.neutral em>a:active,.neutral em>a:hover,.neutral h1>a:active,.neutral h1>a:hover,.neutral h2>a:active,.neutral h2>a:hover,.neutral h3>a:active,.neutral h3>a:hover,.neutral h4>a:active,.neutral h4>a:hover,.neutral h5>a:active,.neutral h5>a:hover,.neutral h6>a:active,.neutral h6>a:hover,.neutral li>a:active,.neutral li>a:hover,.neutral p>a:active,.neutral p>a:hover,.neutral td>a:active,.neutral td>a:hover,.neutral.subnav .navbar-brand a,.smart .nav li>a,.smart .span>a:active,.smart .span>a:hover,.smart address>a:active,.smart address>a:hover,.smart em>a:active,.smart em>a:hover,.smart h1>a:active,.smart h1>a:hover,.smart h2>a:active,.smart h2>a:hover,.smart h3>a:active,.smart h3>a:hover,.smart h4>a:active,.smart h4>a:hover,.smart h5>a:active,.smart h5>a:hover,.smart h6>a:active,.smart h6>a:hover,.smart li>a:active,.smart li>a:hover,.smart p>a:active,.smart p>a:hover,.smart td>a:active,.smart td>a:hover{text-decoration:none}.accent.subnav li>a{color:#7fdcff}.accent.subnav li>a.active,.accent.subnav li>a:hover{color:#fff}.accent.subnav .navbar-toggle{color:#006489}.accent.subnav .navbar-toggle:hover{background-color:transparent}.accent.subnav .navbar-collapse{border-top-color:#006489}.accent.subnav .subnav-divider{border-bottom:1px solid #00aeef}.accent .form-control{border:0!important}.neutral{background-color:#ebeff0;color:#747474}.neutral .span>a,.neutral address>a,.neutral em>a,.neutral h1>a,.neutral h2>a,.neutral h3>a,.neutral h4>a,.neutral h5>a,.neutral h6>a,.neutral li>a,.neutral p>a,.neutral td>a{-webkit-transition:.2s color;transition:.2s color}.neutral.separated{border-bottom-color:#bfcccf}.neutral .h1,.neutral .h2,.neutral .h3,.neutral .h4,.neutral .h5,.neutral .h6,.neutral h1,.neutral h2,.neutral h3,.neutral h4,.neutral h5,.neutral h6{color:#000}.neutral.jumbotron .h1,.neutral.jumbotron h1{color:#343434}.neutral.jumbotron .h2,.neutral.jumbotron .h3,.neutral.jumbotron .h4,.neutral.jumbotron .h5,.neutral.jumbotron .h6,.neutral.jumbotron h2,.neutral.jumbotron h3,.neutral.jumbotron h4,.neutral.jumbotron h5,.neutral.jumbotron h6{color:#747474}.neutral .span>a:active,.neutral .span>a:link,.neutral .span>a:visited,.neutral address>a:active,.neutral address>a:link,.neutral address>a:visited,.neutral em>a:active,.neutral em>a:link,.neutral em>a:visited,.neutral h1>a:active,.neutral h1>a:link,.neutral h1>a:visited,.neutral h2>a:active,.neutral h2>a:link,.neutral h2>a:visited,.neutral h3>a:active,.neutral h3>a:link,.neutral h3>a:visited,.neutral h4>a:active,.neutral h4>a:link,.neutral h4>a:visited,.neutral h5>a:active,.neutral h5>a:link,.neutral h5>a:visited,.neutral h6>a:active,.neutral h6>a:link,.neutral h6>a:visited,.neutral li>a:active,.neutral li>a:link,.neutral li>a:visited,.neutral p>a:active,.neutral p>a:link,.neutral p>a:visited,.neutral td>a:active,.neutral td>a:link,.neutral td>a:visited{color:#0089bc}.neutral .span>a:hover,.neutral address>a:hover,.neutral em>a:hover,.neutral h1>a:hover,.neutral h2>a:hover,.neutral h3>a:hover,.neutral h4>a:hover,.neutral h5>a:hover,.neutral h6>a:hover,.neutral li>a:hover,.neutral p>a:hover,.neutral td>a:hover{color:#005170}.neutral .span>a .glyphicon.tile,.neutral address>a .glyphicon.tile,.neutral em>a .glyphicon.tile,.neutral h1>a .glyphicon.tile,.neutral h2>a .glyphicon.tile,.neutral h3>a .glyphicon.tile,.neutral h4>a .glyphicon.tile,.neutral h5>a .glyphicon.tile,.neutral h6>a .glyphicon.tile,.neutral li>a .glyphicon.tile,.neutral p>a .glyphicon.tile,.neutral td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.neutral .span>a .glyphicon.tile:active,.neutral .span>a .glyphicon.tile:hover,.neutral address>a .glyphicon.tile:active,.neutral address>a .glyphicon.tile:hover,.neutral em>a .glyphicon.tile:active,.neutral em>a .glyphicon.tile:hover,.neutral h1>a .glyphicon.tile:active,.neutral h1>a .glyphicon.tile:hover,.neutral h2>a .glyphicon.tile:active,.neutral h2>a .glyphicon.tile:hover,.neutral h3>a .glyphicon.tile:active,.neutral h3>a .glyphicon.tile:hover,.neutral h4>a .glyphicon.tile:active,.neutral h4>a .glyphicon.tile:hover,.neutral h5>a .glyphicon.tile:active,.neutral h5>a .glyphicon.tile:hover,.neutral h6>a .glyphicon.tile:active,.neutral h6>a .glyphicon.tile:hover,.neutral li>a .glyphicon.tile:active,.neutral li>a .glyphicon.tile:hover,.neutral p>a .glyphicon.tile:active,.neutral p>a .glyphicon.tile:hover,.neutral td>a .glyphicon.tile:active,.neutral td>a .glyphicon.tile:hover{color:#4e4e4e}.neutral ul.nav-sidebar>li.active>a{color:#000}.neutral ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.neutral ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.neutral ul.nav-sidebar>li>a:hover{color:#000}.neutral ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.neutral ul.dropdown-menu>li>a:hover{color:#fff}.neutral.subnav .navbar-brand,.neutral.subnav .navbar-brand a{color:#000}.neutral.subnav li>a{color:#aaa}.neutral.subnav li>a.active{color:#000}.neutral.subnav li>a:hover{color:#5b5b5b}.neutral .sidebar strong,.neutral.subnav .navbar-toggle{color:#000}.neutral.subnav .navbar-toggle:hover{background-color:transparent}.neutral.subnav .navbar-collapse{border-top-color:#e7e6e6}.neutral.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.neutral .sidebar a strong,.neutral .sidebar a strong:active,.neutral .sidebar a strong:link,.neutral .sidebar a strong:visited{color:#0089bc}.neutral .sidebar a strong:hover{color:#005170}.neutral cite.bubble strong{color:#414141}.neutral cite.bubble a:active,.neutral cite.bubble a:link,.neutral cite.bubble a:visited{color:#0089bc}.neutral cite.bubble a:hover{color:#005170}.neutral blockquote,.neutral blockquote p,.neutral blockquote ul>li{color:#747474}.smart,.smart .h1,.smart .h2,.smart .h3,.smart .h4,.smart .h5,.smart .h6,.smart h1,.smart h2,.smart h3,.smart h4,.smart h5,.smart h6,.smart.subnav .navbar-brand{color:#fff}.smart{background-color:#2d8ec6}.smart .lead a{font-weight:300}.smart .span>a,.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{-webkit-transition:.2s color;transition:.2s color}.smart.separated{border-bottom-color:#1f6188}.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{color:#fff;text-decoration:underline}.smart address>a:hover,.smart em>a:hover,.smart h1>a:hover,.smart h2>a:hover,.smart h3>a:hover,.smart h4>a:hover,.smart h5>a:hover,.smart h6>a:hover,.smart li>a:hover,.smart p>a:hover,.smart td>a:hover,.smart.subnav .navbar-brand a,div.logo-tile .nav li>a,div.logo-tile .span>a:active,div.logo-tile .span>a:hover,div.logo-tile address>a:active,div.logo-tile address>a:hover,div.logo-tile em>a:active,div.logo-tile em>a:hover,div.logo-tile h1>a:active,div.logo-tile h1>a:hover,div.logo-tile h2>a:active,div.logo-tile h2>a:hover,div.logo-tile h3>a:active,div.logo-tile h3>a:hover,div.logo-tile h4>a:active,div.logo-tile h4>a:hover,div.logo-tile h5>a:active,div.logo-tile h5>a:hover,div.logo-tile h6>a:active,div.logo-tile h6>a:hover,div.logo-tile li>a:active,div.logo-tile li>a:hover,div.logo-tile p>a:active,div.logo-tile p>a:hover,div.logo-tile td>a:active,div.logo-tile td>a:hover,div.logo-tile.dark .nav li>a,div.logo-tile.dark .span>a:active,div.logo-tile.dark .span>a:hover,div.logo-tile.dark address>a:active,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:active,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:active,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:active,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:active,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:active,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:active,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:active,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:active,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:active,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:active,div.logo-tile.dark td>a:hover,div.logo-tile.subnav .navbar-brand a{text-decoration:none}.smart.subnav li>a{color:#9acbe8}.smart.subnav li>a.active,.smart.subnav li>a:hover{color:#fff}.smart.subnav .navbar-toggle{color:#1a5273}.smart.subnav .navbar-toggle:hover{background-color:transparent}.smart.subnav .navbar-collapse{border-top-color:#1a5273}.smart.subnav .subnav-divider{border-bottom:1px solid #2d8ec6}.smart .form-control{border:0!important}.add-ons-log-in{margin-top:16px}.docs-list{list-style:none;padding-left:20px}.docs-list>li{line-height:30px}.docs-list>li .glyphicon{font-size:18px}#footer-copyright{font-size:19px;line-height:39px}@media screen and (min-width:768px){#footer-copyright{padding:0 50px;font-size:14px;line-height:14px}#footer-copyright .col{width:19.5%;display:inline-block;vertical-align:middle}#footer-copyright .col:first-child{margin-left:20%}}@media screen and (min-width:992px){#footer-copyright{padding:0}}.footer-col{min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:768px){.footer-col{float:left;width:16.66666667%}}.footer-col:not(:first-child){margin-left:4.166666667%}.footer-col>h5,.footer-col>h5>a{line-height:25px;color:#fff}@media screen and (min-width:768px){.footer-col>h5,.footer-col>h5>a{width:130px;margin:0 auto;font-size:16px}}.footer-col ul{margin-bottom:30px!important;padding-left:0;line-height:25px;list-style:none}@media screen and (min-width:768px){.footer-col ul{width:130px;margin:0 auto}}.footer-col ul>li{padding:7px 0;font-size:19px;white-space:nowrap}.footer-col ul>li:first-child{padding-top:0}.footer-col ul>li:last-child{padding-bottom:0}.footer-col ul>li>ul{margin-top:15px!important}.footer-col ul>li>ul>li{padding:7px 0}.footer-col ul>li .fa{font-size:17px}@media screen and (min-width:768px){.footer-col ul>li>ul>li{padding:1px 0}.footer-col ul>li{font-size:14px;padding:0}}div.landing-tile{padding:30px;margin:15px 0;background-color:#ebeff0}div.landing-tile img{width:100%;max-width:300px}div.landing-tile p.description{margin-bottom:30px}@media screen and (min-width:768px){div.landing-tile img{width:300px}div.landing-tile p.description{margin-bottom:0;min-height:150px}}@media screen and (min-width:992px){div.landing-tile p.description{min-height:120px}}div.landing-tile p.cta{text-align:center;margin-bottom:0}div.landing-tile .btn{-webkit-transition:.2s all;transition:.2s all}.legal{font-weight:800}.legal address,.legal>li>ol>li,.legal>li>p{font-weight:400}.legal>li{padding:10px 0}.legal>li>ol>li{padding:5px 0}img.logo-img{max-height:200px}div.logo-tile{min-height:360px;padding:30px;margin:15px 0;background-color:#ebeff0;color:#747474}div.logo-tile.standard{padding:61px 30px}div.logo-tile .lead a{font-weight:300}div.logo-tile .span>a,div.logo-tile address>a,div.logo-tile em>a,div.logo-tile h1>a,div.logo-tile h2>a,div.logo-tile h3>a,div.logo-tile h4>a,div.logo-tile h5>a,div.logo-tile h6>a,div.logo-tile li>a,div.logo-tile p>a,div.logo-tile td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.separated{border-bottom-color:#bfcccf}div.logo-tile .h1,div.logo-tile .h2,div.logo-tile .h3,div.logo-tile .h4,div.logo-tile .h5,div.logo-tile .h6,div.logo-tile h1,div.logo-tile h2,div.logo-tile h3,div.logo-tile h4,div.logo-tile h5,div.logo-tile h6{color:#000}div.logo-tile.jumbotron .h1,div.logo-tile.jumbotron h1{color:#343434}div.logo-tile.jumbotron .h2,div.logo-tile.jumbotron .h3,div.logo-tile.jumbotron .h4,div.logo-tile.jumbotron .h5,div.logo-tile.jumbotron .h6,div.logo-tile.jumbotron h2,div.logo-tile.jumbotron h3,div.logo-tile.jumbotron h4,div.logo-tile.jumbotron h5,div.logo-tile.jumbotron h6{color:#747474}div.logo-tile .span>a:active,div.logo-tile .span>a:link,div.logo-tile .span>a:visited,div.logo-tile address>a:active,div.logo-tile address>a:link,div.logo-tile address>a:visited,div.logo-tile em>a:active,div.logo-tile em>a:link,div.logo-tile em>a:visited,div.logo-tile h1>a:active,div.logo-tile h1>a:link,div.logo-tile h1>a:visited,div.logo-tile h2>a:active,div.logo-tile h2>a:link,div.logo-tile h2>a:visited,div.logo-tile h3>a:active,div.logo-tile h3>a:link,div.logo-tile h3>a:visited,div.logo-tile h4>a:active,div.logo-tile h4>a:link,div.logo-tile h4>a:visited,div.logo-tile h5>a:active,div.logo-tile h5>a:link,div.logo-tile h5>a:visited,div.logo-tile h6>a:active,div.logo-tile h6>a:link,div.logo-tile h6>a:visited,div.logo-tile li>a:active,div.logo-tile li>a:link,div.logo-tile li>a:visited,div.logo-tile p>a:active,div.logo-tile p>a:link,div.logo-tile p>a:visited,div.logo-tile td>a:active,div.logo-tile td>a:link,div.logo-tile td>a:visited{color:#0089bc}div.logo-tile .span>a:hover,div.logo-tile address>a:hover,div.logo-tile em>a:hover,div.logo-tile h1>a:hover,div.logo-tile h2>a:hover,div.logo-tile h3>a:hover,div.logo-tile h4>a:hover,div.logo-tile h5>a:hover,div.logo-tile h6>a:hover,div.logo-tile li>a:hover,div.logo-tile p>a:hover,div.logo-tile td>a:hover{color:#005170}div.logo-tile .span>a .glyphicon.tile,div.logo-tile address>a .glyphicon.tile,div.logo-tile em>a .glyphicon.tile,div.logo-tile h1>a .glyphicon.tile,div.logo-tile h2>a .glyphicon.tile,div.logo-tile h3>a .glyphicon.tile,div.logo-tile h4>a .glyphicon.tile,div.logo-tile h5>a .glyphicon.tile,div.logo-tile h6>a .glyphicon.tile,div.logo-tile li>a .glyphicon.tile,div.logo-tile p>a .glyphicon.tile,div.logo-tile td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}div.logo-tile .span>a .glyphicon.tile:active,div.logo-tile .span>a .glyphicon.tile:hover,div.logo-tile address>a .glyphicon.tile:active,div.logo-tile address>a .glyphicon.tile:hover,div.logo-tile em>a .glyphicon.tile:active,div.logo-tile em>a .glyphicon.tile:hover,div.logo-tile h1>a .glyphicon.tile:active,div.logo-tile h1>a .glyphicon.tile:hover,div.logo-tile h2>a .glyphicon.tile:active,div.logo-tile h2>a .glyphicon.tile:hover,div.logo-tile h3>a .glyphicon.tile:active,div.logo-tile h3>a .glyphicon.tile:hover,div.logo-tile h4>a .glyphicon.tile:active,div.logo-tile h4>a .glyphicon.tile:hover,div.logo-tile h5>a .glyphicon.tile:active,div.logo-tile h5>a .glyphicon.tile:hover,div.logo-tile h6>a .glyphicon.tile:active,div.logo-tile h6>a .glyphicon.tile:hover,div.logo-tile li>a .glyphicon.tile:active,div.logo-tile li>a .glyphicon.tile:hover,div.logo-tile p>a .glyphicon.tile:active,div.logo-tile p>a .glyphicon.tile:hover,div.logo-tile td>a .glyphicon.tile:active,div.logo-tile td>a .glyphicon.tile:hover{color:#4e4e4e}div.logo-tile ul.nav-sidebar>li.active>a{color:#000}div.logo-tile ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}#pre-footer,div.logo-tile.dark .lead a{font-weight:300}div.logo-tile ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}div.logo-tile ul.nav-sidebar>li>a:hover{color:#000}div.logo-tile ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}div.logo-tile ul.dropdown-menu>li>a:hover{color:#fff}div.logo-tile.subnav .navbar-brand,div.logo-tile.subnav .navbar-brand a{color:#000}div.logo-tile.subnav li>a{color:#aaa}div.logo-tile.subnav li>a.active{color:#000}div.logo-tile.subnav li>a:hover{color:#5b5b5b}div.logo-tile .sidebar strong,div.logo-tile.subnav .navbar-toggle{color:#000}div.logo-tile.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.subnav .navbar-collapse{border-top-color:#e7e6e6}div.logo-tile.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}div.logo-tile .sidebar a strong,div.logo-tile .sidebar a strong:active,div.logo-tile .sidebar a strong:link,div.logo-tile .sidebar a strong:visited{color:#0089bc}div.logo-tile .sidebar a strong:hover{color:#005170}div.logo-tile cite.bubble strong{color:#414141}div.logo-tile cite.bubble a:active,div.logo-tile cite.bubble a:link,div.logo-tile cite.bubble a:visited{color:#0089bc}div.logo-tile cite.bubble a:hover{color:#005170}div.logo-tile blockquote,div.logo-tile blockquote p,div.logo-tile blockquote ul>li{color:#747474}div.logo-tile.dark,div.logo-tile.dark .h1,div.logo-tile.dark .h2,div.logo-tile.dark .h3,div.logo-tile.dark .h4,div.logo-tile.dark .h5,div.logo-tile.dark .h6,div.logo-tile.dark h1,div.logo-tile.dark h2,div.logo-tile.dark h3,div.logo-tile.dark h4,div.logo-tile.dark h5,div.logo-tile.dark h6,div.logo-tile.dark.subnav .navbar-brand{color:#fff}div.logo-tile.dark{background-color:#2d3339}div.logo-tile.dark .span>a,div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.dark.separated{border-bottom-color:#0b0d0e}div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{color:#fff;text-decoration:underline}div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:hover,div.logo-tile.dark.subnav .navbar-brand a{text-decoration:none}div.logo-tile.dark.subnav li>a{color:#6c7a89}div.logo-tile.dark.subnav li>a.active,div.logo-tile.dark.subnav li>a:hover{color:#fff}div.logo-tile.dark.subnav .navbar-toggle{color:#000}div.logo-tile.dark.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.dark.subnav .navbar-collapse{border-top-color:#000}div.logo-tile.dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}div.logo-tile.dark .form-control{border:0!important}div.logo-tile img{display:block;margin:0 auto}div.logo-tile p{margin-top:30px;margin-bottom:0;text-align:center}#main-nav{z-index:9002}#main-nav span{color:#e6e6e6}#navbar-logo{padding:6px 0 6px 15px}.mobile-badge{display:block}.mobile-badge-apple{margin-left:auto;margin-right:0}#pre-footer{padding:30px 0;background-color:#222;color:#fff;text-align:center;font-family:Lato,sans-serif;font-size:21px}#pre-footer a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}#pre-footer a:active,#pre-footer a:hover{color:#f2f2f2;text-decoration:none}@media screen and (min-width:768px){#navbar-logo{padding-left:0;padding-right:0}#pre-footer span{font-size:24px;line-height:38px}}@media screen and (min-width:992px){#pre-footer span{font-size:30px}}.resumator-basic-widget .resumator-jobs-text>p{margin-bottom:30px}.resumator-basic-widget .resumator-jobs-text li,.resumator-basic-widget .resumator-jobs-text>p{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6em;color:#747474}.btn,.resumator-basic-widget .resumator-job-title,div#os-tabs span{font-family:Lato,sans-serif}.resumator-basic-widget .resumator-jobs-text strong{color:#414141}.resumator-basic-widget .resumator-job-title{line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:16px;font-size:21px;color:#000;padding-top:30px!important;font-weight:400;border-top-color:#e7e6e6}.resumator-basic-widget .resumator-job-title .small,.resumator-basic-widget .resumator-job-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.resumator-basic-widget .resumator-job-title+.lead{padding-top:10px}.resumator-basic-widget .resumator-job-view-details{margin-bottom:30px}.resumator-basic-widget .resumator-job-link{margin-bottom:30px!important;font-size:16px}.resumator-basic-widget .resumator-job-link:active,.resumator-basic-widget .resumator-job-link:link,.resumator-basic-widget .resumator-job-link:visited{color:#0089bc}.resumator-basic-widget .resumator-job-link:hover{color:#005170}.resumator-basic-widget input[type=button]{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:Lato,sans-serif;font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all;color:#fff!important;text-decoration:none!important;background-color:#3BB878}.resumator-basic-widget input[type=button].active.focus,.resumator-basic-widget input[type=button].active:focus,.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:active.focus,.resumator-basic-widget input[type=button]:active:focus,.resumator-basic-widget input[type=button]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{color:#333;text-decoration:none}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button][disabled],fieldset[disabled] .resumator-basic-widget input[type=button]{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{-webkit-box-shadow:none;box-shadow:none;text-decoration:none;color:#fff;background-color:#35a56b;outline:0}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active{background-image:none;background-color:#2f915f}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button].disabled.active,.resumator-basic-widget input[type=button].disabled:active,.resumator-basic-widget input[type=button].disabled:focus,.resumator-basic-widget input[type=button].disabled:hover,.resumator-basic-widget input[type=button][disabled],.resumator-basic-widget input[type=button][disabled].active,.resumator-basic-widget input[type=button][disabled]:active,.resumator-basic-widget input[type=button][disabled]:focus,.resumator-basic-widget input[type=button][disabled]:hover,fieldset[disabled] .resumator-basic-widget input[type=button],fieldset[disabled] .resumator-basic-widget input[type=button].active,fieldset[disabled] .resumator-basic-widget input[type=button]:active,fieldset[disabled] .resumator-basic-widget input[type=button]:focus,fieldset[disabled] .resumator-basic-widget input[type=button]:hover{color:#e6e6e6;background-color:#3BB878}.resumator-basic-widget input[type=button] .caret,.resumator-basic-widget input[type=button] caret-right{border-top-color:#fff}.resumator-basic-widget input[type=button].btn-border{border-style:solid;border-color:#2f915f;border-width:0 0 2px}.sidebar-modal-footer-close{text-align:center}.sidebar-modal-footer-close a{display:block}#sidebar-modal .modal-header *{line-height:20px}.t{display:none}.toc-bar{text-align:center}@media screen and (min-width:992px){.toc-bar{display:none}}#___gcse_0{margin-top:60px}.h3{padding-top:40px}.row-content:first-of-type .h3:nth-child(1){padding-top:0}#search-results{margin-top:40px}.btn{font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all}.btn.active,.btn:active,.btn:focus,.btn:hover{-webkit-box-shadow:none;box-shadow:none;outline:0;text-decoration:none}.btn-accent,.btn-action,.btn-action-alt,.btn-blue,.btn-funky,.btn-green,.btn-light-gray,.btn-orange,.btn-sand,.btn-standard,.btn-subdued,.btn-white{text-decoration:none!important}div#os-tabs .btn{border:1px solid #dadada;padding:10px;width:200px;background-color:#fff;color:#000}.btn-accent.btn-border,.btn-action-alt.btn-border,.btn-action.btn-border,.btn-blue.btn-border,.btn-funky.btn-border,.btn-green.btn-border,.btn-light-gray.btn-border,.btn-orange.btn-border,.btn-sand.btn-border,.btn-standard.btn-border,.btn-subdued.btn-border,.btn-white.btn-border{border-style:solid;border-width:0 0 2px}.algolia-autocomplete,.algolia-autocomplete .aa-hint,.algolia-autocomplete .aa-input,.btn-full,.hit-body,.search-form{width:100%}div#os-tabs .btn.current{outline:0;border-color:#9ecaed;-webkit-box-shadow:0 0 10px #9ecaed;box-shadow:0 0 10px #9ecaed;max-height:inherit}.linuxinstall,.macinstall,.windowsinstall{font-size:1.08rem}.btn-half-circle{border-bottom-left-radius:30px;border-bottom-right-radius:30px;min-width:50px;max-width:50px}.btn-white{color:#fff!important;background-color:#3BB878}.btn-white.active,.btn-white:active,.btn-white:focus,.btn-white:hover{color:#fff;background-color:#35a56b;outline:0}.btn-white.active,.btn-white:active{background-color:#2f915f}.btn-white.disabled,.btn-white.disabled.active,.btn-white.disabled:active,.btn-white.disabled:focus,.btn-white.disabled:hover,.btn-white[disabled],.btn-white[disabled].active,.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,fieldset[disabled] .btn-white,fieldset[disabled] .btn-white.active,fieldset[disabled] .btn-white:active,fieldset[disabled] .btn-white:focus,fieldset[disabled] .btn-white:hover{color:#e6e6e6;background-color:#3BB878}.btn-white .caret,.btn-white caret-right{border-top-color:#fff}.btn-white.btn-border{border-color:#2f915f}.btn-green{color:#fff!important;background-color:#3BB878}.btn-green.active,.btn-green:active,.btn-green:focus,.btn-green:hover{color:#fff;background-color:#35a56b;outline:0}.btn-green.active,.btn-green:active{background-color:#2f915f}.btn-green.disabled,.btn-green.disabled.active,.btn-green.disabled:active,.btn-green.disabled:focus,.btn-green.disabled:hover,.btn-green[disabled],.btn-green[disabled].active,.btn-green[disabled]:active,.btn-green[disabled]:focus,.btn-green[disabled]:hover,fieldset[disabled] .btn-green,fieldset[disabled] .btn-green.active,fieldset[disabled] .btn-green:active,fieldset[disabled] .btn-green:focus,fieldset[disabled] .btn-green:hover{color:#e6e6e6;background-color:#3BB878}.btn-green .caret,.btn-green caret-right{border-top-color:#fff}.btn-green.btn-border{border-color:#2f915f}.btn-funky{color:#fff!important;background-color:#c67fcf}.btn-funky.active,.btn-funky:active,.btn-funky:focus,.btn-funky:hover{color:#fff;background-color:#be6cc8;outline:0}.btn-funky.active,.btn-funky:active{background-color:#b55ac1}.btn-funky.disabled,.btn-funky.disabled.active,.btn-funky.disabled:active,.btn-funky.disabled:focus,.btn-funky.disabled:hover,.btn-funky[disabled],.btn-funky[disabled].active,.btn-funky[disabled]:active,.btn-funky[disabled]:focus,.btn-funky[disabled]:hover,fieldset[disabled] .btn-funky,fieldset[disabled] .btn-funky.active,fieldset[disabled] .btn-funky:active,fieldset[disabled] .btn-funky:focus,fieldset[disabled] .btn-funky:hover{color:#e6e6e6;background-color:#c67fcf}.btn-funky .caret,.btn-funky caret-right{border-top-color:#fff}.btn-funky.btn-border{border-color:#b55ac1}.btn-blue{color:#fff!important;background-color:#2d8ec6}.btn-blue.active,.btn-blue:active,.btn-blue:focus,.btn-blue:hover{color:#fff;background-color:#287fb1;outline:0}.btn-blue.active,.btn-blue:active{background-color:#24709c}.btn-blue.disabled,.btn-blue.disabled.active,.btn-blue.disabled:active,.btn-blue.disabled:focus,.btn-blue.disabled:hover,.btn-blue[disabled],.btn-blue[disabled].active,.btn-blue[disabled]:active,.btn-blue[disabled]:focus,.btn-blue[disabled]:hover,fieldset[disabled] .btn-blue,fieldset[disabled] .btn-blue.active,fieldset[disabled] .btn-blue:active,fieldset[disabled] .btn-blue:focus,fieldset[disabled] .btn-blue:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-blue .caret,.btn-blue caret-right{border-top-color:#fff}.btn-blue.btn-border{border-color:#24709c}.btn-light-gray{color:#fff!important;background-color:#3BB878}.btn-light-gray.active,.btn-light-gray:active,.btn-light-gray:focus,.btn-light-gray:hover{color:#fff;background-color:#35a56b;outline:0}.btn-light-gray.active,.btn-light-gray:active{background-color:#2f915f}.btn-light-gray.disabled,.btn-light-gray.disabled.active,.btn-light-gray.disabled:active,.btn-light-gray.disabled:focus,.btn-light-gray.disabled:hover,.btn-light-gray[disabled],.btn-light-gray[disabled].active,.btn-light-gray[disabled]:active,.btn-light-gray[disabled]:focus,.btn-light-gray[disabled]:hover,fieldset[disabled] .btn-light-gray,fieldset[disabled] .btn-light-gray.active,fieldset[disabled] .btn-light-gray:active,fieldset[disabled] .btn-light-gray:focus,fieldset[disabled] .btn-light-gray:hover{color:#e6e6e6;background-color:#3BB878}.btn-light-gray .caret,.btn-light-gray caret-right{border-top-color:#fff}.btn-light-gray.btn-border{border-color:#2f915f}.btn-sand{color:#fff!important;background-color:#3BB878}.btn-sand.active,.btn-sand:active,.btn-sand:focus,.btn-sand:hover{color:#fff;background-color:#35a56b;outline:0}.btn-sand.active,.btn-sand:active{background-color:#2f915f}.btn-sand.disabled,.btn-sand.disabled.active,.btn-sand.disabled:active,.btn-sand.disabled:focus,.btn-sand.disabled:hover,.btn-sand[disabled],.btn-sand[disabled].active,.btn-sand[disabled]:active,.btn-sand[disabled]:focus,.btn-sand[disabled]:hover,fieldset[disabled] .btn-sand,fieldset[disabled] .btn-sand.active,fieldset[disabled] .btn-sand:active,fieldset[disabled] .btn-sand:focus,fieldset[disabled] .btn-sand:hover{color:#e6e6e6;background-color:#3BB878}.btn-sand .caret,.btn-sand caret-right{border-top-color:#fff}.btn-sand.btn-border{border-color:#2f915f}.btn-brown{color:#fff!important;text-decoration:none!important;background-color:#C2BA7A}.btn-brown.active,.btn-brown:active,.btn-brown:focus,.btn-brown:hover{color:#fff;background-color:#bab169;outline:0}.btn-brown.active,.btn-brown:active{background-color:#b2a857}.btn-brown.disabled,.btn-brown.disabled.active,.btn-brown.disabled:active,.btn-brown.disabled:focus,.btn-brown.disabled:hover,.btn-brown[disabled],.btn-brown[disabled].active,.btn-brown[disabled]:active,.btn-brown[disabled]:focus,.btn-brown[disabled]:hover,fieldset[disabled] .btn-brown,fieldset[disabled] .btn-brown.active,fieldset[disabled] .btn-brown:active,fieldset[disabled] .btn-brown:focus,fieldset[disabled] .btn-brown:hover{color:#e6e6e6;background-color:#C2BA7A}.btn-brown .caret,.btn-brown caret-right{border-top-color:#fff}.btn-brown.btn-border{border-style:solid;border-color:#b2a857;border-width:0 0 2px}.btn-orange{color:#fff!important;background-color:#FFAC5F}.btn-orange.active,.btn-orange:active,.btn-orange:focus,.btn-orange:hover{color:#fff;background-color:#ff9f45;outline:0}.btn-orange.active,.btn-orange:active{background-color:#ff922c}.btn-orange.disabled,.btn-orange.disabled.active,.btn-orange.disabled:active,.btn-orange.disabled:focus,.btn-orange.disabled:hover,.btn-orange[disabled],.btn-orange[disabled].active,.btn-orange[disabled]:active,.btn-orange[disabled]:focus,.btn-orange[disabled]:hover,fieldset[disabled] .btn-orange,fieldset[disabled] .btn-orange.active,fieldset[disabled] .btn-orange:active,fieldset[disabled] .btn-orange:focus,fieldset[disabled] .btn-orange:hover{color:#e6e6e6;background-color:#FFAC5F}.btn-orange .caret,.btn-orange caret-right{border-top-color:#fff}.btn-orange.btn-border{border-color:#ff922c}.btn-action{color:#fff!important;background-color:#3BB878}.btn-action.active,.btn-action:active,.btn-action:focus,.btn-action:hover{color:#fff;background-color:#35a56b;outline:0}.btn-action.active,.btn-action:active{background-color:#2f915f}.btn-action.disabled,.btn-action.disabled.active,.btn-action.disabled:active,.btn-action.disabled:focus,.btn-action.disabled:hover,.btn-action[disabled],.btn-action[disabled].active,.btn-action[disabled]:active,.btn-action[disabled]:focus,.btn-action[disabled]:hover,fieldset[disabled] .btn-action,fieldset[disabled] .btn-action.active,fieldset[disabled] .btn-action:active,fieldset[disabled] .btn-action:focus,fieldset[disabled] .btn-action:hover{color:#e6e6e6;background-color:#3BB878}.btn-action .caret,.btn-action caret-right{border-top-color:#fff}.btn-action.btn-border{border-color:#2f915f}.btn-action-alt{color:#000!important;background-color:#fff}.btn-action-alt.active,.btn-action-alt:active,.btn-action-alt:focus,.btn-action-alt:hover{color:#000;background-color:#f2f2f2;outline:0}.btn-action-alt.active,.btn-action-alt:active{background-color:#e6e6e6}.btn-action-alt.disabled,.btn-action-alt.disabled.active,.btn-action-alt.disabled:active,.btn-action-alt.disabled:focus,.btn-action-alt.disabled:hover,.btn-action-alt[disabled],.btn-action-alt[disabled].active,.btn-action-alt[disabled]:active,.btn-action-alt[disabled]:focus,.btn-action-alt[disabled]:hover,fieldset[disabled] .btn-action-alt,fieldset[disabled] .btn-action-alt.active,fieldset[disabled] .btn-action-alt:active,fieldset[disabled] .btn-action-alt:focus,fieldset[disabled] .btn-action-alt:hover{color:#000;background-color:#fff}.btn-action-alt .caret,.btn-action-alt caret-right{border-top-color:#000}.btn-action-alt.btn-border{border-color:#e6e6e6}.btn-accent{color:#fff!important;background-color:#00aeef}.btn-accent.active,.btn-accent:active,.btn-accent:focus,.btn-accent:hover{color:#fff;background-color:#009bd6;outline:0}.btn-accent.active,.btn-accent:active{background-color:#0089bc}.btn-accent.disabled,.btn-accent.disabled.active,.btn-accent.disabled:active,.btn-accent.disabled:focus,.btn-accent.disabled:hover,.btn-accent[disabled],.btn-accent[disabled].active,.btn-accent[disabled]:active,.btn-accent[disabled]:focus,.btn-accent[disabled]:hover,fieldset[disabled] .btn-accent,fieldset[disabled] .btn-accent.active,fieldset[disabled] .btn-accent:active,fieldset[disabled] .btn-accent:focus,fieldset[disabled] .btn-accent:hover{color:#e6e6e6;background-color:#00aeef}.btn-accent .caret,.btn-accent caret-right{border-top-color:#fff}.btn-accent.btn-border{border-color:#0089bc}.btn-standard{color:#fff!important;background-color:#2d8ec6}.btn-standard.active,.btn-standard:active,.btn-standard:focus,.btn-standard:hover{color:#fff;background-color:#287fb1;outline:0}.btn-standard.active,.btn-standard:active{background-color:#24709c}.btn-standard.disabled,.btn-standard.disabled.active,.btn-standard.disabled:active,.btn-standard.disabled:focus,.btn-standard.disabled:hover,.btn-standard[disabled],.btn-standard[disabled].active,.btn-standard[disabled]:active,.btn-standard[disabled]:focus,.btn-standard[disabled]:hover,fieldset[disabled] .btn-standard,fieldset[disabled] .btn-standard.active,fieldset[disabled] .btn-standard:active,fieldset[disabled] .btn-standard:focus,fieldset[disabled] .btn-standard:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-standard .caret,.btn-standard caret-right{border-top-color:#fff}.btn-standard.btn-border{border-color:#24709c}.btn-subdued{color:#000!important;background-color:#eee}.btn-subdued.active,.btn-subdued:active,.btn-subdued:focus,.btn-subdued:hover{color:#000;background-color:#e2e2e2;outline:0}.btn-subdued.active,.btn-subdued:active{background-color:#d5d5d5}.btn-subdued.disabled,.btn-subdued.disabled.active,.btn-subdued.disabled:active,.btn-subdued.disabled:focus,.btn-subdued.disabled:hover,.btn-subdued[disabled],.btn-subdued[disabled].active,.btn-subdued[disabled]:active,.btn-subdued[disabled]:focus,.btn-subdued[disabled]:hover,fieldset[disabled] .btn-subdued,fieldset[disabled] .btn-subdued.active,fieldset[disabled] .btn-subdued:active,fieldset[disabled] .btn-subdued:focus,fieldset[disabled] .btn-subdued:hover{color:#000;background-color:#eee}.btn-subdued .caret,.btn-subdued caret-right{border-top-color:#000}.btn-subdued.btn-border{border-color:#d5d5d5}li.list-group-item{padding:0}#ds-search-modal{margin-top:65px;z-index:9999}#ds-search-modal a{display:block;padding:10px 15px}#ds-search-modal a:active,#ds-search-modal a:link,#ds-search-modal a:visited{color:#0089bc}#ds-search-modal a:hover{color:#005170}#ds-search-input{padding:3px;border:1px solid #E4E4E4;border-radius:6px;background-color:#fff}#ds-search-input input{border:0;-webkit-box-shadow:none;box-shadow:none}#ds-search-input button{margin:2px 0 0;background:0 0;-webkit-box-shadow:none;box-shadow:none;border:0;color:#666;padding:0 8px 0 10px;border-left:solid 1px #ccc}#ds-search-input button:hover{border:0;-webkit-box-shadow:none;box-shadow:none;border-left:solid 1px #ccc}#ds-search-input .glyphicon-search{font-size:23px}#ds-search-input ul li:hover{background-color:#e6e6e6}.search-deprecated{font-size:9px;background-color:#FFAC5F;height:43px;color:#fff;border-radius:3px;padding:4px;margin-left:5px;vertical-align:middle}.hits,.search-icon{position:absolute;z-index:10}.search-box{padding-left:35px}.search-icon{top:.85em;left:.85em}.hits{top:50px;left:0}.hit-body{background:#fff;color:#747474;border:.5px solid #e7e6e6;padding:1em}.hit-body:hover{background:#edf7fe;color:#fff}.hit-body a,.hit-body a:hover{color:#747474;text-decoration:none}.hit-body a{display:inline-block}.algolia-autocomplete .aa-hint{color:#999}.algolia-autocomplete .aa-dropdown-menu{width:100%;background-color:#fff;border:1px solid #cecccc;border-top:none}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion{cursor:pointer;padding:10px 12px}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor{background-color:#edf7fe;color:#343434}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em{font-weight:700;font-style:normal}.chroma .ge,.chroma .sh{font-style:italic}.library-article-blurb{padding-top:15px;padding-bottom:15px}.library-section-app{padding-top:30px}.library-breadcrumb-search{padding:20px 15px 55px}#library-main-search{margin-top:20px;height:45px}#library-main-search button,#library-main-search input{height:42px}.library-breadcrumb{background-color:#fff;padding:30px 0 0}@media screen and (min-width:768px){.library-breadcrumb{padding:30px 0 60px}}#library-search-status+.lead,.library-search-result-title+.lead{padding-top:10px}.library-breadcrumb>li{display:block}@media screen and (min-width:768px){.library-breadcrumb>li{display:inline-block}div.library-tile{min-height:220px}}.library-breadcrumb>li+li:before{content:"\00BB\00a0";color:#9a9a9a}.library-breadcrumb>.active{color:#9a9a9a}.library-spinner{width:60px;height:60px;margin:0 auto;position:relative;border-left:3px solid #eee;border-right:3px solid #eee;border-bottom:3px solid #eee;border-top:3px solid #555;border-radius:100%;-webkit-animation:rotation .4s infinite ease-in-out;animation:rotation .4s infinite ease-in-out}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.library-search-result{margin-bottom:60px}.library-search-result:last-child{margin-bottom:0}#library-search-status,.library-search-result-title{margin-top:11px;margin-bottom:11px;font-weight:400;font-family:Lato,sans-serif}.library-search-result small{display:block}.library-search-result-title{line-height:1.1;color:inherit;font-size:20px;font-size:25px}.library-search-result-title .small,.library-search-result-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.library-search-result-desc{color:#9a9a9a}#library-search-status{line-height:1.1;color:inherit;font-size:16px;font-size:21px;text-align:center}#library-search-status .small,#library-search-status small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile p,div.library-tile.active p,div.library-tile:active p,div.library-tile:focus p,div.library-tile:hover p{color:#747474}.library-pager li{display:none}#library-page-num{display:block;padding-top:10px}.library-categories-row{margin-left:-15px;margin-right:-15px;margin-top:60px}.library-category-articles{padding-left:20px}.library-category-articles+.library-category-title{margin-top:60px}.library-category-title{padding-bottom:10px;border-bottom:1px solid #e7e6e6}div.library-tile{background-color:#ebeff0;padding:30px;margin-bottom:30px}div.library-tile.active,div.library-tile:active,div.library-tile:focus,div.library-tile:hover{background-color:#edf7fe}div.library-tile h2.tile-title{color:#000}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}@media screen and (min-width:992px){.library-category-title{width:80%}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:20px;font-size:25px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}}@media screen and (min-width:1200px){.first-section .container{max-width:1170px}}#article-body{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;color:#333}@media screen and (min-width:768px){#article-body{padding-bottom:60px}}#article-body li{font-size:17px;font-size:1.08rem}#article-body .h1,#article-body .h2,#article-body .h3,#article-body .h4,#article-body .h5,#article-body .h6,#article-body h1,#article-body h2,#article-body h3,#article-body h4,#article-body h5,#article-body h6{word-wrap:break-word;margin-top:3.125rem}#article-body .h1+.h1,#article-body .h1+.h2,#article-body .h1+.h3,#article-body .h1+.h4,#article-body .h1+.h5,#article-body .h1+.h6,#article-body .h1+h1,#article-body .h1+h2,#article-body .h1+h3,#article-body .h1+h4,#article-body .h1+h5,#article-body .h1+h6,#article-body .h2+.h1,#article-body .h2+.h2,#article-body .h2+.h3,#article-body .h2+.h4,#article-body .h2+.h5,#article-body .h2+.h6,#article-body .h2+h1,#article-body .h2+h2,#article-body .h2+h3,#article-body .h2+h4,#article-body .h2+h5,#article-body .h2+h6,#article-body .h3+.h1,#article-body .h3+.h2,#article-body .h3+.h3,#article-body .h3+.h4,#article-body .h3+.h5,#article-body .h3+.h6,#article-body .h3+h1,#article-body .h3+h2,#article-body .h3+h3,#article-body .h3+h4,#article-body .h3+h5,#article-body .h3+h6,#article-body .h4+.h1,#article-body .h4+.h2,#article-body .h4+.h3,#article-body .h4+.h4,#article-body .h4+.h5,#article-body .h4+.h6,#article-body .h4+h1,#article-body .h4+h2,#article-body .h4+h3,#article-body .h4+h4,#article-body .h4+h5,#article-body .h4+h6,#article-body .h5+.h1,#article-body .h5+.h2,#article-body .h5+.h3,#article-body .h5+.h4,#article-body .h5+.h5,#article-body .h5+.h6,#article-body .h5+h1,#article-body .h5+h2,#article-body .h5+h3,#article-body .h5+h4,#article-body .h5+h5,#article-body .h5+h6,#article-body .h6+.h1,#article-body .h6+.h2,#article-body .h6+.h3,#article-body .h6+.h4,#article-body .h6+.h5,#article-body .h6+.h6,#article-body .h6+h1,#article-body .h6+h2,#article-body .h6+h3,#article-body .h6+h4,#article-body .h6+h5,#article-body .h6+h6,#article-body h1+.h1,#article-body h1+.h2,#article-body h1+.h3,#article-body h1+.h4,#article-body h1+.h5,#article-body h1+.h6,#article-body h1+h1,#article-body h1+h2,#article-body h1+h3,#article-body h1+h4,#article-body h1+h5,#article-body h1+h6,#article-body h2+.h1,#article-body h2+.h2,#article-body h2+.h3,#article-body h2+.h4,#article-body h2+.h5,#article-body h2+.h6,#article-body h2+h1,#article-body h2+h2,#article-body h2+h3,#article-body h2+h4,#article-body h2+h5,#article-body h2+h6,#article-body h3+.h1,#article-body h3+.h2,#article-body h3+.h3,#article-body h3+.h4,#article-body h3+.h5,#article-body h3+.h6,#article-body h3+h1,#article-body h3+h2,#article-body h3+h3,#article-body h3+h4,#article-body h3+h5,#article-body h3+h6,#article-body h4+.h1,#article-body h4+.h2,#article-body h4+.h3,#article-body h4+.h4,#article-body h4+.h5,#article-body h4+.h6,#article-body h4+h1,#article-body h4+h2,#article-body h4+h3,#article-body h4+h4,#article-body h4+h5,#article-body h4+h6,#article-body h5+.h1,#article-body h5+.h2,#article-body h5+.h3,#article-body h5+.h4,#article-body h5+.h5,#article-body h5+.h6,#article-body h5+h1,#article-body h5+h2,#article-body h5+h3,#article-body h5+h4,#article-body h5+h5,#article-body h5+h6,#article-body h6+.h1,#article-body h6+.h2,#article-body h6+.h3,#article-body h6+.h4,#article-body h6+.h5,#article-body h6+.h6,#article-body h6+h1,#article-body h6+h2,#article-body h6+h3,#article-body h6+h4,#article-body h6+h5,#article-body h6+h6{margin-top:0}#article-body .h1 a,#article-body .h2 a,#article-body .h3 a,#article-body .h4 a,#article-body .h5 a,#article-body .h6 a,#article-body h1 a,#article-body h2 a,#article-body h3 a,#article-body h4 a,#article-body h5 a,#article-body h6 a{padding-left:10px;opacity:0}#article-body .h1:hover a,#article-body .h2:hover a,#article-body .h3:hover a,#article-body .h4:hover a,#article-body .h5:hover a,#article-body .h6:hover a,#article-body h1:hover a,#article-body h2:hover a,#article-body h3:hover a,#article-body h4:hover a,#article-body h5:hover a,#article-body h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}#article-body .h1,#article-body h1{font-size:38px;font-size:2.375rem}#article-body .h2,#article-body h2{font-size:33px;font-size:2.0625rem}#article-body .h3,#article-body h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}#article-body .h4,#article-body h4{font-size:23px;font-size:1.4375rem}#article-body .h5,#article-body h5{font-size:20px;font-size:1.25rem}#article-body .h6,#article-body h6{font-size:18px;font-size:1.125rem}#article-body li ol,#article-body li ul,#article-body li+li{margin-top:10px}#article-body li ol li,#article-body li ul li{margin-top:5px}#article-body li blockquote,#article-body li img{margin:20px 0}#article-body li ol+p,#article-body li ul+p{margin-top:20px}#article-body code{font-size:14px}#article-body img{display:block;max-width:100%;height:auto;margin:0 auto}#article-body table:not([class]){width:100%;max-width:100%;margin-bottom:22px}#article-body table:not([class])>tbody>tr>td,#article-body table:not([class])>tbody>tr>th,#article-body table:not([class])>tfoot>tr>td,#article-body table:not([class])>tfoot>tr>th,#article-body table:not([class])>thead>tr>td,#article-body table:not([class])>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}#article-body table:not([class])>caption+thead>tr:first-child>td,#article-body table:not([class])>caption+thead>tr:first-child>th,#article-body table:not([class])>colgroup+thead>tr:first-child>td,#article-body table:not([class])>colgroup+thead>tr:first-child>th,#article-body table:not([class])>thead:first-child>tr:first-child>td,#article-body table:not([class])>thead:first-child>tr:first-child>th{border-top:0}#article-body table:not([class])>tbody+tbody{border-top:2px solid #ddd}#article-body table:not([class]) .table{background-color:#fff}#article-body table:not([class])>thead>tr>th{font-family:Lato,sans-serif;padding:17px 10px;vertical-align:middle;text-align:left;color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}#article-body table:not([class])>tbody>tr:first-child{border-top:none}#article-body table:not([class])>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}#article-body table:not([class])>tbody>tr>td{padding:17px 10px;vertical-align:middle;text-align:left;width:0;color:#747474}.email-signup,.library-rss,.library-sidebar-extra,.library-signup{text-align:center}#article-body table:not([class])>tbody>tr>td:last-child{border-right:none}#article-body table:not([class])>tbody>tr>td.large{font-size:20px;color:#000}#article-body table:not([class])>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}#article-body table:not([class])>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.doc-time{color:#9a9a9a}.doc-time a:active,.doc-time a:link,.doc-time a:visited{color:#0089bc}.doc-time a:hover{color:#005170}.doc-title{margin-top:0!important;margin-bottom:5px;font-size:40px}.doc-license{font-size:87%;font-size:14px;padding-top:45px;color:#9a9a9a}.doc-sidebar-inner{background-color:#edf7fe;color:#747474;padding:15px;font-size:14px}.doc-sidebar-inner .lead a{font-weight:300}.doc-sidebar-inner .span>a,.doc-sidebar-inner address>a,.doc-sidebar-inner em>a,.doc-sidebar-inner h1>a,.doc-sidebar-inner h2>a,.doc-sidebar-inner h3>a,.doc-sidebar-inner h4>a,.doc-sidebar-inner h5>a,.doc-sidebar-inner h6>a,.doc-sidebar-inner li>a,.doc-sidebar-inner p>a,.doc-sidebar-inner td>a{-webkit-transition:.2s color;transition:.2s color}.doc-sidebar-inner .nav li>a,.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:hover{text-decoration:none}.doc-sidebar-inner.separated{border-bottom-color:#a5d7fa}.doc-sidebar-inner .h1,.doc-sidebar-inner .h2,.doc-sidebar-inner .h3,.doc-sidebar-inner .h4,.doc-sidebar-inner .h5,.doc-sidebar-inner .h6,.doc-sidebar-inner h1,.doc-sidebar-inner h2,.doc-sidebar-inner h3,.doc-sidebar-inner h4,.doc-sidebar-inner h5,.doc-sidebar-inner h6{color:#000}.doc-sidebar-inner.jumbotron .h1,.doc-sidebar-inner.jumbotron h1{color:#343434}.doc-sidebar-inner.jumbotron .h2,.doc-sidebar-inner.jumbotron .h3,.doc-sidebar-inner.jumbotron .h4,.doc-sidebar-inner.jumbotron .h5,.doc-sidebar-inner.jumbotron .h6,.doc-sidebar-inner.jumbotron h2,.doc-sidebar-inner.jumbotron h3,.doc-sidebar-inner.jumbotron h4,.doc-sidebar-inner.jumbotron h5,.doc-sidebar-inner.jumbotron h6{color:#747474}.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:link,.doc-sidebar-inner .span>a:visited,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:link,.doc-sidebar-inner address>a:visited,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:link,.doc-sidebar-inner em>a:visited,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:link,.doc-sidebar-inner h1>a:visited,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:link,.doc-sidebar-inner h2>a:visited,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:link,.doc-sidebar-inner h3>a:visited,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:link,.doc-sidebar-inner h4>a:visited,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:link,.doc-sidebar-inner h5>a:visited,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:link,.doc-sidebar-inner h6>a:visited,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:link,.doc-sidebar-inner li>a:visited,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:link,.doc-sidebar-inner p>a:visited,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:link,.doc-sidebar-inner td>a:visited{color:#0089bc}.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:hover{color:#005170}.doc-sidebar-inner .span>a .glyphicon.tile,.doc-sidebar-inner address>a .glyphicon.tile,.doc-sidebar-inner em>a .glyphicon.tile,.doc-sidebar-inner h1>a .glyphicon.tile,.doc-sidebar-inner h2>a .glyphicon.tile,.doc-sidebar-inner h3>a .glyphicon.tile,.doc-sidebar-inner h4>a .glyphicon.tile,.doc-sidebar-inner h5>a .glyphicon.tile,.doc-sidebar-inner h6>a .glyphicon.tile,.doc-sidebar-inner li>a .glyphicon.tile,.doc-sidebar-inner p>a .glyphicon.tile,.doc-sidebar-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.doc-sidebar-inner .span>a .glyphicon.tile:active,.doc-sidebar-inner .span>a .glyphicon.tile:hover,.doc-sidebar-inner address>a .glyphicon.tile:active,.doc-sidebar-inner address>a .glyphicon.tile:hover,.doc-sidebar-inner em>a .glyphicon.tile:active,.doc-sidebar-inner em>a .glyphicon.tile:hover,.doc-sidebar-inner h1>a .glyphicon.tile:active,.doc-sidebar-inner h1>a .glyphicon.tile:hover,.doc-sidebar-inner h2>a .glyphicon.tile:active,.doc-sidebar-inner h2>a .glyphicon.tile:hover,.doc-sidebar-inner h3>a .glyphicon.tile:active,.doc-sidebar-inner h3>a .glyphicon.tile:hover,.doc-sidebar-inner h4>a .glyphicon.tile:active,.doc-sidebar-inner h4>a .glyphicon.tile:hover,.doc-sidebar-inner h5>a .glyphicon.tile:active,.doc-sidebar-inner h5>a .glyphicon.tile:hover,.doc-sidebar-inner h6>a .glyphicon.tile:active,.doc-sidebar-inner h6>a .glyphicon.tile:hover,.doc-sidebar-inner li>a .glyphicon.tile:active,.doc-sidebar-inner li>a .glyphicon.tile:hover,.doc-sidebar-inner p>a .glyphicon.tile:active,.doc-sidebar-inner p>a .glyphicon.tile:hover,.doc-sidebar-inner td>a .glyphicon.tile:active,.doc-sidebar-inner td>a .glyphicon.tile:hover{color:#4e4e4e}.doc-sidebar-inner ul.nav-sidebar>li.active>a{color:#000}.doc-sidebar-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.doc-sidebar-inner ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.doc-sidebar-inner ul.nav-sidebar>li>a:hover{color:#000}.doc-sidebar-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.doc-sidebar-inner ul.dropdown-menu>li>a:hover{color:#fff}.doc-sidebar-inner.subnav{opacity:.96}.doc-sidebar-inner.subnav .navbar-brand{color:#000}.doc-sidebar-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.doc-sidebar-inner.subnav li>a{color:#aaa}.doc-sidebar-inner.subnav li>a.active{color:#000}.doc-sidebar-inner.subnav li>a:hover{color:#5b5b5b}.doc-sidebar-inner .sidebar strong,.doc-sidebar-inner.subnav .navbar-toggle{color:#000}.doc-sidebar-inner.subnav .navbar-toggle:hover{background-color:transparent}.doc-sidebar-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.doc-sidebar-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.doc-sidebar-inner .sidebar a strong,.doc-sidebar-inner .sidebar a strong:active,.doc-sidebar-inner .sidebar a strong:link,.doc-sidebar-inner .sidebar a strong:visited{color:#0089bc}.doc-sidebar-inner .sidebar a strong:hover{color:#005170}.doc-sidebar-inner cite.bubble strong{color:#414141}.doc-sidebar-inner cite.bubble a:active,.doc-sidebar-inner cite.bubble a:link,.doc-sidebar-inner cite.bubble a:visited{color:#0089bc}.doc-sidebar-inner cite.bubble a:hover{color:#005170}.doc-sidebar-inner blockquote,.doc-sidebar-inner blockquote p,.doc-sidebar-inner blockquote ul>li{color:#747474}.doc-sidebar-inner+.doc-sidebar-inner{margin-top:20px}#doc-sidebar-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;font-size:14px;font-size:19px;font-weight:400;margin-bottom:30px}#doc-sidebar-title .small,#doc-sidebar-title small{font-weight:400;line-height:1;color:#777;font-size:75%}#doc-sidebar-title+.lead{padding-top:10px}.sidebar-library nav>ul{border:0;margin:0;padding:0}.sidebar-library nav>ul>li{margin-left:0}.sidebar-library nav>ul>li>ul{border:0;padding-left:0}.sidebar-library nav>ul>li>ul>li{padding-left:0;display:block;line-height:20px;margin-top:20px;margin-bottom:20px}.sidebar-library nav>ul>li>ul>li>a{font-weight:800}.alert-banner a,.sidebar-library nav>ul>li>ul>li ul>li>a{font-weight:400}.sidebar-library nav>ul>li>ul>li ul>li{margin-top:2px;margin-bottom:2px;padding-left:10px}.sidebar-library nav>ul>li ul>li>ul>li>a{font-size:14px}.library-sidebar-extra h6{margin:5px auto}.library-sidebar-extra p{font-size:12px;margin-bottom:0}.library-sidebar-extra .fa{font-size:40px;color:#000}.library-github{vertical-align:middle;margin-bottom:15px;margin-top:15px}.library-github strong{font-size:1.2em}.library-github i{font-size:1.35em}.library-github p{display:inline-block;font-size:.8em;margin-left:7px}.contributed-by{float:right;margin-top:3px}.updated{float:left}.doc-time:after{content:"";display:table}.library-signup{margin-top:40px}.library-signup h6{margin:5px auto}.library-signup p{font-size:12px;margin-bottom:0}.library-signup .fa{font-size:40px;color:#000}.library-rss{margin-top:4px}.library-rss a{font-size:14px}.library-rss a:hover{color:#737373}#img-modal-image{max-width:1200px;max-height:700px;margin:auto}.modal-full{width:90%;padding-top:90px}.modal-body{overflow:scroll}div#search{height:57px}.gsc-input-box,td.gsc-input{height:45px!important}input.gsc-input{height:36px!important}.gsc-search-button{background-color:#2d8ec6;padding-top:2px}.gsc-modal-background-image{background-color:#333!important}table.gsc-table-result>tbody>tr>td{padding-left:8px;padding-right:8px}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}div.gsc-input-box,div.gsc-input-box-focus{border-color:#4fa5d7}div.gsc-input-box-focus,div.gsc-input-box-hover{-webkit-box-shadow:none;box-shadow:none}div.gsc-control-cse{font-family:Helvetica,Arial,sans-serif}input.gsc-search-button,input.gsc-search-button:focus,input.gsc-search-button:hover{background-color:#2d8ec6!important;background-image:url(https://www.google.com/uds/css/v2/search_box_icon.png)!important;background-position:50% 50%;background-repeat:no-repeat;height:36px!important;border-color:#2d8ec6!important;-webkit-filter:none;filter:none}span.gscb_a{margin-top:13px!important}li.library-article-item{border:none;padding:16px 24px}li.library-article-item:nth-child(odd){background-color:#ebeff0}#signup-form{margin-top:16px}#frontpage_upcoming_webinar{background:#2d8ec6}#frontpage_upcoming_webinar_text a{color:#fff;height:50px;line-height:50px;vertical-align:middle}.email-signup{margin-top:30px}.create-account{margin-top:10px}.signup-top{background:#eee;padding:13px;display:inline-block;margin-bottom:8px;width:100%}.hs-richtext,.hubspot-form .input{padding-bottom:20px}@media only screen and (min-width:1200px){.signup-top>div.row>div:first-child{padding-top:4px}}@media only screen and (max-width:768px){.signup-top>div.row>div:last-child{text-align:left;margin-top:8px}}@media only screen and (min-width:768px){.signup-top>div.row>div:last-child{text-align:right;margin-top:0}}.container .contribute,.container .contribute .money{text-align:center}.signup-top span{font-family:Lato,sans-serif;font-size:18px;vertical-align:middle}.signup-top form{display:inline}.hs_recaptcha{float:right;margin:10px 0 10px 10px;padding-left:0}.hubspot-container{background-color:#ebeff0;width:80%}.hubspot-form input{display:block;height:40px;width:100%}.hubspot-form input[type=submit]{padding-bottom:0;display:block;float:left;height:40px;width:50%;margin:10px 10px 0 auto}.hubspot-form{width:100%;margin:0 auto;padding:40px 40px 25px}.hs-button{min-height:75px;font-size:1.5em;border:none;background-color:#3BB878;color:#fff}.hs-button:hover{background-color:#2f925f}.container .contribute img{padding-bottom:10px}h1.contribute{padding-bottom:40px}.contrib-header,.samples{padding-bottom:20px}.contribute{margin-left:0;padding-left:0}.compensation{text-align:left}.compensation-footer{text-align:left;padding-top:40px}.primary{margin-bottom:0;padding-bottom:0}.current{padding-bottom:20px;padding-top:20px}.sample-header{margin-left:0;margin-bottom:20px}.subtitle{padding-top:40px;margin:0}.row-content{margin-bottom:0}#doc-sidebar-container{position:webkit-sticky;position:-webkit-sticky;position:sticky;top:10px}#doc-sidebar-container #doc-sidebar{margin-top:10px;max-width:100%}#doc-sidebar-container #doc-sidebar-toc li.active>a{color:#005170}#doc-sidebar-container #doc-sidebar-toc .toc-long ul>li>ul>li>ul{display:none}.social-share>a{padding:6px 10px}.social-share .btn-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.social-share .share-group{float:left;max-width:59px;margin-top:12.5px!important;min-width:200px}.social-share .share-group ul{float:right;list-style:none;margin:0;min-width:61px;padding:0}.social-share .share-group .share{min-width:17px}.social-share .share-group li{display:block;font-size:18px;list-style:none;margin-bottom:3px;margin-left:4px;margin-top:3px}.social-share .share-group .btn-common{width:51px;color:#FFF!important}.social-share .share-group .btn-twitter{background-color:#39C!important;width:51px;color:#FFF!important}.social-share .share-group .btn-facebook{background-color:#3D5B96!important;width:51px;color:#FFF!important}.social-share .share-group .btn-hacker-news{background-color:#f60!important;width:51px;color:#FFF!important}#disqus_thread{margin-top:40px}.copy-code{position:absolute;padding-top:.25rem;right:1.4rem;opacity:0}#article-body .disclosure-note div.btn-copy>.copy-code,blockquote div.btn-copy>.copy-code{padding-top:.01rem;right:2.2rem}#article-body .disclosure-note .glyphicon.glyphicon-copy{font-size:1.6rem;color:#a6a6a6}blockquote div.btn-copy .glyphicon.glyphicon-copy{color:#a6a6a6}.copy-code:hover{opacity:1}.glyphicon.glyphicon-copy{font-size:1.6rem}.btn-copy:hover .glyphicon{color:#B2D7FF}.form_elem_email{color:#000}.alert-banner{font-size:22px;background-color:#7c9fb3;text-align:center;margin-bottom:30px;padding:10px 0}.alert-banner a{font-family:Lato,sans-serif;color:rgba(255,255,255,.8);display:block}.alert-banner a:hover{text-decoration:none;color:#fff}.alert-banner i{padding:0 15px}.sub-menu-wrap{max-width:1170px;margin:0 auto;padding-left:15px;padding-right:15px}.sub-menu-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #e7e6e6;width:100%;-webkit-font-smoothing:initial}.with-subnavigation{margin-top:30px}.breadcrumb-row.with-subnavigation,.pad-xs.with-subnavigation{margin-top:0!important}#library-main-search{margin-bottom:0}.sub-menu-wrapper__title{padding:21px 0;margin:11px 0;-webkit-font-smoothing:antialiased;font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.chroma .cs,.chroma .gh,.chroma .gs,.chroma .gu,.chroma .kt,.chroma .nc,.chroma .ne,.chroma .nt{font-weight:700}.sub-menu-wrapper__title a:link,.sub-menu-wrapper__title a:visited{color:#000;text-decoration:none}.sub-menu-wrapper__title a:hover{color:#000}.sub-menu{font-family:Lato,sans-serif;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;top:1px}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.sub-menu{top:-2px}}}.sub-menu li{display:inline-block}.chroma .hl,.chroma .lnt{display:block}.sub-menu-wrapper .sub-menu li:first-child a{margin-left:0}.sub-menu li:last-child a{margin-right:0}.sub-menu a:link,.sub-menu a:visited{color:#aaa;padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px;margin:13px 12px 0}.sub-menu a.active,.sub-menu a:hover{color:#000}@media (max-width:768px){.sub-menu,.sub-menu li{display:block}.sub-menu{width:100%}.sub-menu-wrapper{padding-bottom:20px}.sub-menu-wrapper .sub-menu li a{margin:0}.some-space.first-section.with-subnavigation{padding-bottom:30px}}@media screen and (min-width:992px){.navbar .nav-home{top:1px}}@media screen and (min-width:768px){.navbar.navbar-default{height:auto}.navbar .navbar-nav>li>a{padding-bottom:20px}}.chroma{background-color:#eed}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;overflow:auto;display:block}.chroma .ln,.chroma .lnt{margin-right:.4em;padding:0 .4em}.chroma .hl{background-color:#ffc;width:100%}.chroma .k,.chroma .kc,.chroma .kd,.chroma .kn,.chroma .kp,.chroma .kr{color:#8b008b;font-weight:700}.chroma .kt{color:#00688b}.chroma .na,.chroma .nb{color:#658b00}.chroma .nc{color:#008b45}.chroma .no{color:#00688b}.chroma .nd{color:#707a7c}.chroma .ne,.chroma .nf,.chroma .nn{color:#008b45}.chroma .nt{color:#8b008b}.chroma .nv{color:#00688b}.chroma .dl,.chroma .s,.chroma .s2,.chroma .sa,.chroma .sb,.chroma .sc,.chroma .sd,.chroma .se{color:#cd5555}.chroma .sh{color:#1c7e71}.chroma .si{color:#cd5555}.chroma .sx{color:#cb6c20}.chroma .sr{color:#1c7e71}.chroma .s1,.chroma .ss{color:#cd5555}.chroma .il,.chroma .m,.chroma .mb,.chroma .mf,.chroma .mh,.chroma .mi,.chroma .mo{color:#b452cd}.chroma .ow{color:#8b008b}.chroma .c,.chroma .c1,.chroma .ch,.chroma .cm{color:#228b22}.chroma .cs{color:#8b008b}.chroma .cp,.chroma .cpf{color:#1e889b}.chroma .gd,.chroma .gr{color:#a00}.chroma .gh{color:navy}.chroma .gi{color:#0a0}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gu{color:purple}.chroma .gt{color:#a00}.chroma .w{color:#bbb} \ No newline at end of file diff --git a/themes/docsmith/static/build/stylesheets/home-84dcf75eeb.min.css b/themes/docsmith/static/build/stylesheets/home-84dcf75eeb.min.css deleted file mode 100644 index a21def7898f..00000000000 --- a/themes/docsmith/static/build/stylesheets/home-84dcf75eeb.min.css +++ /dev/null @@ -1,19 +0,0 @@ -@charset "UTF-8";/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.chroma .ge,.chroma .sh,dfn{font-style:italic}.label,audio,canvas,progress,sub,sup,video{vertical-align:baseline}#article-body,.fa,.glyphicon{-moz-osx-font-smoothing:grayscale}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{border:0;vertical-align:middle}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}body{margin:0;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0089bc;text-decoration:none}a:focus,a:hover{color:#005170;text-decoration:underline}a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}figure{margin:0}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin:0 auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:22px;margin-bottom:22px;border:0;border-top:1px solid #eee}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Lato,sans-serif;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.badge,.label,dt,kbd kbd,label{font-weight:700}.h1,.h2,.h3,h1,h2,h3{margin-top:22px;margin-bottom:11px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,.label,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h4,.h5,.h6,h4,h5,h6{margin-top:11px;margin-bottom:11px}@media (min-width:768px){.lead{font-size:24px}}.small,small{font-size:87%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#00aeef}a.text-primary:focus,a.text-primary:hover{color:#0089bc}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .input-group-addon,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#00aeef}a.bg-primary:focus,a.bg-primary:hover{background-color:#0089bc}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:10px;margin:44px 0 22px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}ol,ul{margin-bottom:11px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:22px}dd,dt{line-height:1.42857143}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:11px 22px;margin:0 0 22px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}legend,pre{display:block;color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%;border-radius:0}.dropdown-menu,caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:22px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{color:#555;background-color:#ebeff0}kbd{color:#fff;background-color:#333;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{padding:10.5px;margin:0 0 11px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;background-color:#fff;border:1px solid #e7e6e6}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-left:15px;padding-right:15px}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;max-width:100%;margin-bottom:22px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.label,.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:16.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}.breadcrumb,.thumbnail,legend{margin-bottom:22px}fieldset{margin:0;min-width:0}legend{width:100%;font-size:24px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{line-height:1.42857143;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px;font-size:16px;color:#555}.form-control{width:100%;height:36px;padding:6px 12px;background-color:#fff;background-image:none}.form-control:focus{outline:0}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:36px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:33px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:22px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox-inline,.collapsing,.dropdown,.dropup,.has-feedback,.radio-inline{position:relative}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.btn-block+.btn-block,.help-block{margin-top:5px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:38px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.form-group-sm .form-control,.input-sm{padding:5px 10px;border-radius:0;font-size:14px}.input-sm{height:33px;line-height:1.5}select.input-sm{height:33px;line-height:33px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:33px;line-height:1.5}.form-group-sm select.form-control{height:33px;line-height:33px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:33px;min-height:36px;padding:6px 10px;font-size:14px;line-height:1.5}.btn-group-lg>.btn,.btn-lg,.form-group-lg .form-control,.input-lg{padding:10px 16px;border-radius:0}.input-lg{height:46px;line-height:1.3333333}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;font-size:18px;line-height:1.3333333}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:40px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback .form-control{padding-right:45px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:36px;height:36px;line-height:36px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:33px;height:33px;line-height:33px}.has-success .form-control{border-color:#3c763d}.has-success .form-control:focus{border-color:#2b542c}.has-success .input-group-addon{border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b}.has-warning .form-control:focus{border-color:#66512c}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442}.has-error .form-control:focus{border-color:#843534}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:27px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control,.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .checkbox,.form-inline .control-label,.form-inline .form-group,.form-inline .radio{margin-bottom:0;vertical-align:middle}.form-inline .form-control{width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:29px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:14px}}.btn{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#00aeef;border-color:#009bd6}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0089bc;border-color:#003f56}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#0089bc;border-color:#006f98}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#006f98;border-color:#003f56}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#00aeef;border-color:#009bd6}.btn-primary .badge{color:#00aeef;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#0089bc;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#005170;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{font-size:18px;line-height:1.3333333}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:14px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:9001;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:16px;background-color:#fff;border:1px solid #e7e6e6;background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-menu .divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e7e6e6}.dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#fff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:14px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:8991}.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.modal,.modal-backdrop{right:0;position:fixed}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.media-object.img-thumbnail,.nav>li>a>img{max-width:none}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child),.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group .form-control,.input-group-btn,.input-group-btn>.btn,.nav>li,.nav>li>a,.navbar{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0;font-size:18px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:16px;font-weight:400;line-height:1;text-align:center;border:1px solid #ccc;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{display:block}.nav>li>a{display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#0089bc}.nav .nav-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e5e5e5}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0}.navbar-brand,.navbar-nav>li>a{line-height:22px}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li{float:none}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2d8ec6}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}.navbar{border-radius:0}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{min-height:57px}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-static-top{border-radius:0}}.navbar-static-top{z-index:9001;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:21px 15px;font-size:18px;height:57px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:11.5px;margin-bottom:11.5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.callout-title:before+.lead,.has-inner-before:before+.lead,.has-outer-before:before+.lead,.navbar-nav>li>a{padding-top:10px}.library-category-title,.navbar-nav>li>a{padding-bottom:10px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:10.5px -15px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:22px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:21px;padding-bottom:21px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:10.5px -15px}@media (min-width:768px){.navbar-form .form-control,.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .checkbox,.navbar-form .control-label,.navbar-form .form-group,.navbar-form .radio{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:0}.navbar-btn{margin-top:10.5px;margin-bottom:10.5px}.navbar-btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-xs,.navbar-text{margin-top:17.5px;margin-bottom:17.5px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#323232;border-color:#212121}.navbar-default .navbar-brand{color:#a6a6a6}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#a6a6a6}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:transparent}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:#e6e6e6}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#212121}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#a6a6a6}.navbar-default .navbar-link:hover{color:#d9d9d9}.navbar-default .btn-link{color:#a6a6a6}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#d9d9d9}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:22px 0;border-radius:0}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#0089bc;background-color:#fff;border:1px solid #e7e6e6;margin-left:-1px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span,.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span,.pagination>li:first-child>a,.pagination>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span,.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#005170;background-color:#edf7fe;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#2d8ec6;border-color:#00aeef;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:14px;line-height:1.5}.badge,.label{line-height:1;white-space:nowrap}.pager{padding-left:0;margin:22px 0;list-style:none;text-align:center}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e7e6e6;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#edf7fe}.pager .next>a,.pager .next>span{float:right}.fa-pull-left,.pager .previous>a,.pager .previous>span,.progress-bar{float:left}.close,.list-group-item>.badge{float:right}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;color:#fff;text-align:center}.badge,.progress-bar{font-size:14px;text-align:center}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#00aeef}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#0089bc}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty,.modal,.popover{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0089bc;background-color:#fff}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:24px;font-weight:200}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.list-group-item,.thumbnail{background-color:#fff;border:1px solid #ddd}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:72px}}.thumbnail{padding:4px;line-height:1.42857143;border-radius:0;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.alert,.progress{margin-bottom:22px;border-radius:0}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0089bc}.thumbnail .caption{padding:9px;color:#333}.alert,.modal-body,.modal-footer,.modal-header,.panel-body{padding:15px}.alert h4{margin-top:0;color:inherit}.alert>p+p,.panel-group .panel+.panel{margin-top:5px}.alert>p,.alert>ul{margin-bottom:0}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:22px;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{width:0%;height:100%;line-height:22px;color:#fff;background-color:#00aeef;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle,.switcher-controls a{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#2d8ec6;border-color:#2d8ec6}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#cce5f3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:22px;background-color:#fff;border:1px solid transparent;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive,.panel>.table-responsive>.table{margin-bottom:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-title{margin-top:0;font-size:18px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0}.panel-group{margin-bottom:22px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#00aeef}.panel-primary>.panel-heading{color:#fff;background-color:#00aeef;border-color:#00aeef}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00aeef}.panel-primary>.panel-heading .badge{color:#00aeef;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00aeef}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{font-size:24px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-family:Helvetica,Arial,sans-serif;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal-open{overflow:hidden}.modal{overflow:hidden;top:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #e7e6e6;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop,.terminal,.tooltip-inner{background-color:#000}.modal-backdrop{top:0;bottom:0;left:0;z-index:1040}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.carousel-control,.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{border-bottom:1px solid #e7e6e6}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative}.modal-footer{text-align:right;border-top:1px solid #e7e6e6}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-style:normal;font-weight:400;text-align:left;text-align:start;font-size:14px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;max-width:276px;padding:1px;font-style:normal;font-weight:400;text-align:left;text-align:start;font-size:16px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:16px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1px -1px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;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;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover,.remove-gradient{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-image:none}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt .belt-inner .belt-content:before,.belt-outer .belt:after,.belt-outer .belt:before,.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.library-categories-row:after,.library-categories-row:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar-nav .open .dropdown-menu.dropdown-mega:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row-content:after,.row-content:before,.row-tiles:after,.row-tiles:before,.row:after,.row:before{content:" ";display:table}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt:after,.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.library-categories-row:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar:after,.pager:after,.panel-body:after,.row-content:after,.row-tiles:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.hidden,.hide,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.pull-right{float:right!important}.pull-left{float:left!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.callout-title:before,.has-inner-before:before{font-family:Lato,sans-serif;margin-top:11px;font-weight:400}#article-body .disclosure-note,.cloud_manager_link,.community,.note{background-color:#edf7fe}.affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}/*! -Animate.css - http://daneden.me/animate -Licensed under the MIT license - -Copyright (c) 2013 Daniel Eden - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}@keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}.rounded{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}.border-radius-default,.cornered{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.remove-box-shadow{-webkit-box-shadow:none;box-shadow:none}.transition-base{-webkit-transition:.2s all;transition:.2s all}.link-standard:active,.link-standard:link,.link-standard:visited{color:#0089bc}.link-standard:hover{color:#005170}.callout-title:before{line-height:1.1;margin-bottom:11px;font-size:14px;font-size:19px;color:#000}.callout-title:before .small,.callout-title:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.callout-text *{font-size:16px;font-weight:400;line-height:1.5}.has-inner-before:before{line-height:1.1;font-size:14px;font-size:19px;color:#000;display:inline-block;margin-bottom:10px}.has-inner-before:before .small,.has-inner-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.has-outer-before{margin-top:40px}#article-body .disclosure-note:before,.community:before,.has-outer-before:before,.note:before{font-family:Lato,sans-serif;margin-top:11px;margin-bottom:11px}.has-outer-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;position:relative;display:block;height:0;top:-40px;left:-10.5px}.has-outer-before:before .small,.has-outer-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note{padding:15px;border-left:4px solid #bde2fb}.note *{font-size:16px;font-weight:400;line-height:1.5}.note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.note:before .small,.note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note:before+.lead{padding-top:10px}.note a{color:#0089bc}.note a:hover{color:#006489}.note strong{font-weight:700}.community{padding:15px;border-left:4px solid #bde2fb}.community *{font-size:16px;font-weight:400;line-height:1.5}.community:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.community:before .small,.community:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.community:before+.lead{padding-top:10px}.community a{color:#0089bc}.community a:hover{color:#006489}.community strong{font-weight:bolder}#article-body .disclosure-note{padding:15px;border-left:4px solid #bde2fb}#article-body .disclosure-note *{font-size:16px;font-weight:400;line-height:1.5}#article-body .disclosure-note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}#article-body .disclosure-note:before .small,#article-body .disclosure-note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}#article-body .disclosure-note:before+.lead{padding-top:10px}#article-body .disclosure-note a{color:#0089bc}#article-body .disclosure-note a:hover{color:#006489}#article-body .disclosure-note strong{font-weight:700}#article-body .disclosure-note img.disclosure-icon{display:inline-block;height:1.5em;margin:-.1em 0 0;-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(1);transform:scaleY(1)}#article-body .disclosure-note .disclosure-note-content{overflow:hidden;margin-top:10px}#article-body .disclosure-note table:not([class])>thead>tr>th{background:0 0}#article-body .disclosure-note table:not([class])>tbody>tr:nth-of-type(odd){background:#fff}#article-body .disclosure-note.disclosed img.disclosure-icon{-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(-1);transform:scaleY(-1)}.caution{padding:15px;background-color:#fdf3f2;border-left:4px solid #f8c9c4}.caution *{font-size:16px;font-weight:400;line-height:1.5}.caution:before,.deprecated:before{line-height:1.1;display:inline-block;margin-top:11px;font-family:Lato,sans-serif;margin-bottom:11px}.caution:before{color:inherit;font-size:14px;font-size:19px;font-weight:400}.caution:before .small,.caution:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.caution:before+.lead{padding-top:10px}.caution a{color:#0089bc}.caution a:hover{color:#006489}.caution strong{font-weight:700}.deprecated{padding:15px;background-color:#ffeedf;border-left:4px solid #ffd4ac}.deprecated *{font-size:16px;font-weight:400;line-height:1.5}.deprecated:before{color:inherit;font-size:14px;font-size:19px;font-weight:400}.deprecated:before .small,.deprecated:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.deprecated:before+.lead{padding-top:10px}.deprecated a{color:#0089bc}.deprecated a:hover{color:#006489}.deprecated strong{font-weight:700}.cloud_manager_link{padding:15px;border-left:4px solid #bde2fb}.file-name,.variable{border-width:1px;border-style:solid}.cloud_manager_link *{font-size:16px;font-weight:400;line-height:1.5}.cloud_manager_link:before{display:inline-block;font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}.cloud_manager_link:before .small,.cloud_manager_link:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.cloud_manager_link:before+.lead{padding-top:10px}.cloud_manager_link a{color:#0089bc}.cloud_manager_link a:hover{color:#006489}.cloud_manager_link strong{font-weight:700}.terminal{color:rgba(65,255,0,.85);padding:0 10px}.file dt:before+.lead,.output:before+.lead{padding-top:10px}.terminal code{white-space:pre-line}.file pre.chroma code,pre code{white-space:pre}pre.terminal code::-moz-selection{background-color:#B2D7FF;color:#000}pre.terminal code::selection{background-color:#B2D7FF;color:#000}.output{margin-top:40px;background-color:#f8f8f8}.output:before{font-family:Lato,sans-serif;line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;color:#000;position:relative;display:block;height:0;top:-40px;left:-10.5px;content:"Output"}.output:before .small,.output:before small{font-weight:400;line-height:1;color:#777;font-size:75%}pre code{word-wrap:normal;overflow-wrap:normal}.variable{background-color:#cff0df;border-color:#a9e3c5!important}.file-name{background-color:#f9f9ef;border-color:#ebebca!important}.file dt{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}.file dt:before,.navbar{font-family:Lato,sans-serif}.file dt:before{line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;padding-right:5px}.file dt:before .small,.file dt:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.file dd+dt{margin-top:20px}.file dt{background-color:#073642;padding:.5em;margin-bottom:0;color:#93a1a1;text-align:center;font-size:16px}.highlight{margin-bottom:.7em}@media screen and (min-width:768px){.sticky-header{position:fixed;right:0;left:0;z-index:1030;top:0;border-width:0 0 1px}.sticky-header .navbar-collapse{max-height:340px}.navbar.navbar-default{height:57px}}@media screen and (min-width:768px) and (max-device-width:480px) and (orientation:landscape){.sticky-header .navbar-collapse{max-height:200px}}@media screen and (min-width:768px) and (min-width:768px){.sticky-header{border-radius:0}}.navbar{font-size:15px;line-height:15px;font-weight:300;margin-bottom:0;border:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{font-size:19px;line-height:19px;-webkit-transition:.2s color;transition:.2s color}.navbar .navbar-nav>li>span{display:inline-block}.navbar .divider-vertical{margin-left:15px;margin-right:15px}@media (max-width:767px){.navbar .divider-vertical{display:none!important}}.navbar .divider-vertical span{color:#737373!important}.navbar .navbar-nav .btn{margin-left:12px;font-size:15px}.navbar .navbar-nav .btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar .nav-home{color:inherit!important}.navbar .nav-home:after{content:"Home"}@media screen and (min-width:768px){.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px}.navbar .nav-home:after{content:""}}@media screen and (min-width:992px){.navbar .nav-home{display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px}.navbar .nav-home.tile{font-size:150px;margin-bottom:20px!important}.navbar .nav-home.tile-small{font-size:100px;margin-bottom:35px!important}.navbar .nav-home.glyphicon-heart{color:#e74c3c}.navbar .nav-home:before{content:"\e021"}}.nav-sidebar,.nav-sidebar .nav-sidebar.collapse{display:none}@media screen and (min-width:992px) and screen and (min-width:768px){.navbar .nav-home.tile-small{margin-bottom:0!important}}.navbar.navbar-default .navbar-nav>li.dropdown.open{background-color:#4c4c4c}#main-nav .navbar-collapse{max-height:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:0}.subnav{background-color:#323232;border-color:#212121;font-weight:400;font-family:Lato,sans-serif;min-height:0}.subnav .navbar-brand{color:#a6a6a6}.subnav .navbar-brand:focus,.subnav .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.subnav .navbar-text{color:#777}.subnav .navbar-nav>li>a{color:#a6a6a6}.subnav .navbar-nav>li>a:focus,.subnav .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav>.active>a,.subnav .navbar-nav>.active>a:focus,.subnav .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav>.disabled>a,.subnav .navbar-nav>.disabled>a:focus,.subnav .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.subnav .navbar-toggle{border-color:transparent}.subnav .navbar-toggle:focus,.subnav .navbar-toggle:hover{background-color:transparent}.subnav .navbar-toggle .icon-bar{background-color:#e6e6e6}.subnav .navbar-collapse,.subnav .navbar-form{border-color:#212121}.subnav .navbar-nav>.open>a,.subnav .navbar-nav>.open>a:focus,.subnav .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.subnav .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.subnav .navbar-nav .open .dropdown-menu>li>a:focus,.subnav .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.active>a,.subnav .navbar-nav .open .dropdown-menu>.active>a:focus,.subnav .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.disabled>a,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:focus,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.subnav .navbar-link{color:#a6a6a6}.subnav .navbar-link:hover{color:#d9d9d9}.subnav .btn-link{color:#a6a6a6}.subnav .btn-link:focus,.subnav .btn-link:hover{color:#d9d9d9}.subnav .btn-link[disabled]:focus,.subnav .btn-link[disabled]:hover,fieldset[disabled] .subnav .btn-link:focus,fieldset[disabled] .subnav .btn-link:hover{color:#ccc}.subnav li>a{font-size:15px;line-height:15px}@media screen and (min-width:768px){.navbar li.active>a>span.nav-home{display:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:21px}.subnav li>a{margin:13px 12px 0;padding:0}}.sidebar-library nav>ul>li,.subnav li:first-child a{margin-left:0}.subnav li:last-child a{margin-right:0}.subnav .navbar-toggle{margin-top:21px;margin-bottom:21px}.subnav-divider{margin:0 -15px}@media screen and (min-width:768px){.subnav-divider{margin:0}}.nav-sidebar .nav-sidebar,.sidebar>ul>li{margin-bottom:30px}.nav-sidebar{border-right:1px solid #e7e6e6;position:static}.nav-sidebar li{text-align:right;border-right:#fff solid 2px}.nav-sidebar li:hover{border-right:#e7e6e6 solid 2px}.nav-sidebar li.active,.nav-sidebar li.header-active{border-right:#000 solid 2px}.nav-sidebar li>a{padding:3px 15px;font-size:14px}.nav-sidebar .nav-sidebar.collapse.in{display:block}tr.nav-sidebar .nav-sidebar.collapse.in{display:table-row}tbody.nav-sidebar .nav-sidebar.collapse.in{display:table-row-group}@media screen and (min-width:992px){.nav-sidebar{width:213px;top:24px;display:block}.nav-sidebar.affix{position:fixed}.nav-sidebar.affix-bottom{position:absolute}}.sidebar-toggle{background:0 0;border:none;padding:0}.sidebar-toggle .toggle-closed,.sidebar-toggle .toggle-open{font-size:10px;position:relative;top:-1px;color:#626262}.sidebar-toggle .toggle-closed:hover,.sidebar-toggle .toggle-open:hover{color:#000}.sidebar-modal ul{list-style:none;padding-left:0}.sidebar-modal ul li a{padding:5px 0 5px 10px}.sidebar-modal ul li a:hover{background-color:transparent}.sidebar-modal ul li a:active{background-color:#eee}.sidebar-modal ul li.header a{display:inline-block;padding:5px 0;font-weight:800}.sidebar-modal ul li.header a:hover{background-color:transparent}.sidebar{margin-top:30px!important;padding-top:30px;border-top:1px solid #e7e6e6}.sidebar ul{list-style:none;padding-left:0}@media screen and (min-width:768px){.sidebar{margin-top:0!important;padding-top:0;border-top:0}.sidebar ul{padding-left:20px;border-left:1px solid #e7e6e6}.sidebar>ul{text-align:left}}.sidebar ul>li>ul{border:0;padding-left:0}.sidebar ul.list{padding-left:20px;list-style:disc}.sidebar ul.list>li{padding:10px 0;font-size:16px}@media screen and (min-width:768px){.sidebar>ul>li{padding:0}}.sidebar>ul>li>ul>li{padding:6px 0;font-size:19px}.sidebar>ul>li>ul>li:first-child{padding-top:0}.sidebar>ul>li>ul>li:last-child{padding-bottom:0}@media screen and (min-width:768px){.sidebar>ul>li>ul>li{padding:0;font-size:16px}}.nav-tiny>ul{padding:0;width:90%;display:table;table-layout:fixed}.nav-tiny>ul>li{display:table-cell}.toggle-closed,.toggle-open{display:none}.follow-header{top:0;display:block;z-index:1030;background-color:rgba(0,0,0,.4)}.follow-header.affix{position:fixed}.follow-header.affix-bottom{position:absolute}@media screen and (min-width:992px){.follow-header{display:none}.container{max-width:970px}}.jumbotron{padding:0;margin:0;line-height:1.64285714;color:inherit;background-color:transparent}.jumbotron .h1,.jumbotron h1{font-size:39px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron .h3,.jumbotron h3{font-size:23px}.jumbotron .h4,.jumbotron h4{font-size:21px}.jumbotron .h5,.jumbotron h5{font-size:20px}.jumbotron .h6,.jumbotron h6{font-size:18px}.jumbotron .h2,.jumbotron .h3,.jumbotron .h4,.jumbotron .h5,.jumbotron .h6,.jumbotron h2,.jumbotron h3,.jumbotron h4,.jumbotron h5,.jumbotron h6{font-weight:300}@media screen and (min-width:768px){.jumbotron{padding:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.jumbotron .h1,.jumbotron h1{font-size:45px}.jumbotron .h2,.jumbotron h2{font-size:26px}.jumbotron .h3,.jumbotron h3{font-size:24px}.jumbotron .h4,.jumbotron h4{font-size:23px}.jumbotron .h5,.jumbotron h5{font-size:21px}.jumbotron .h6,.jumbotron h6{font-size:20px}.dropdown-menu.dropdown-main-nav{padding:15px 0}}.jumbotron .navbar-brand{font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.switcher-controls,.table-pricing-total>tbody>tr:last-child>td,.table>thead>tr>th{font-family:Lato,sans-serif}.dropdown-menu{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.125);box-shadow:0 6px 12px rgba(0,0,0,.125)}.dropdown-menu>li>a{-webkit-transition:none;transition:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#2d8ec6}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#d9d9d9}.dropdown-menu.dropdown-main-nav{background-color:#4c4c4c;border:0}.dropdown-menu.dropdown-main-nav li a{display:block;padding:6px 20px}.dropdown-menu.dropdown-main-nav li a:active,.dropdown-menu.dropdown-main-nav li a:link,.dropdown-menu.dropdown-main-nav li a:visited{color:#999}.dropdown-menu.dropdown-main-nav li a:hover{color:#fff;background-color:#6f6f6f}.dropdown-menu.dropdown-main-nav .divider{background-color:#555}.navbar-nav .open .dropdown-menu.dropdown-mega{margin-left:-15px;margin-right:0;z-index:9001}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega{padding:15px 0;margin-right:-150px;width:600px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{position:relative;min-height:1px;padding:0}@media (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{float:left;width:33.33333333%}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul{padding:0;list-style:none}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li{margin:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{-webkit-transition:none;transition:none;line-height:22px;padding:8px 35px 8px 40px;display:block;color:#999;font-size:19px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a:hover{color:#fff;background-color:#6f6f6f}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{padding:6px 20px;font-size:16px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third.middle{border-color:#555;border-style:solid;border-width:0 1px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third .divider{margin:10px 20px}.pagination,.pagination>li:first-child>a,.pagination>li:first-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.pagination>li.active a{color:#fff!important}.pagination>li a:link{text-decoration:none}.pager>li>a{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.modal-open .navbar-fixed-bottom,.modal-open .navbar-fixed-top,body.modal-open{margin-right:0}.modal-footer{margin-top:0}.switcher-content{display:none;margin-top:0!important}.switcher-content.active{display:block}.switcher-controls{width:100%;display:table;table-layout:fixed}.switcher-controls a{-webkit-transition:none;transition:none;display:table-cell;width:100%;padding:10px;background-color:#fff;border:2px solid #00aeef;border-right-width:0;text-align:center;cursor:pointer;color:#00aeef}.switcher-controls a:active,.switcher-controls a:link,.switcher-controls a:visited{color:#00aeef}.switcher-controls a:hover{color:#0089bc}.switcher-controls a:last-child{border-right-width:2px}.switcher-controls a.active{background-color:#00aeef;border-color:#00aeef;color:#fff}.switcher-arrow{-webkit-transition:bottom .2s;transition:bottom .2s;display:block;position:relative;width:2px;border:0 solid transparent;border-width:15px 15px 0;margin:0 auto;bottom:15px}.switcher-arrow.active{border-color:#00aeef transparent;bottom:0}.label{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>tbody>tr>td,.table>thead>tr>th{padding:17px 10px;vertical-align:middle;text-align:left}.alert{color:#fff;border:0}.panel,.well{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>thead>tr>th{color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}.table>tbody>tr:first-child{border-top:none}.table>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}.table>tbody>tr>td{width:0;color:#747474}.table>tbody>tr>td:last-child{border-right:none}.table>tbody>tr>td.large{font-size:20px;color:#000}.table>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}table.lntable tbody{display:table;width:inherit}table.lntable tbody>tr>td.lntd:first-child{width:25px}.table-responsive>.table>tbody>tr:last-child{border-bottom-width:0}@media screen and (min-width:768px){.table-responsive>.table>tbody>tr:last-child{border-bottom-width:1px}}.table-pricing,.table-pricing-green{border:none}.table-shadow{-webkit-box-shadow:0 1px 1px 1px rgba(174,174,174,.2);box-shadow:0 1px 1px 1px rgba(174,174,174,.2)}.table-pricing>thead>tr>th{border-top:none;text-align:center;margin-right:12px}.table-pricing>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-green>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f6fcf9;border-bottom:2px solid #3BB878}.table-pricing-green>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-neutral{border:none}.table-pricing-neutral>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f3f7f8;border-bottom:2px solid #8ab}.table-pricing-neutral>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-total>tbody>tr:last-child{font-size:18px;font-weight:300;border-bottom:none}.table-pricing-total>tbody>tr:last-child>td{color:#000}.table-pricing-total>tbody>tr:last-child>td .small{font-weight:100}@media screen and (min-width:768px){.table-pricing-total>tbody>tr:last-child{font-size:22px;font-weight:300;border-bottom:none}}.center-first-column>table tbody>tr:first-child{text-align:center!important}.fixed-layout>table{table-layout:fixed}.form-control{padding-top:8px;border:1px solid #e7e6e6;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;color:#343434;font-size:16px;font-weight:400;-webkit-transition:none;transition:none;-webkit-box-shadow:none;box-shadow:none}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#cecccc}.input-lg{font-size:18px}.form-control-lg,.form-control-sm{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:none;box-shadow:none}.input-group-addon{-moz-border-radius:0;-webkit-border-radius:0;background-color:#f9f9ef;color:#6f6f6f}.input-group-addon .lead a{font-weight:300}.input-group-addon .span>a,.input-group-addon address>a,.input-group-addon em>a,.input-group-addon h1>a,.input-group-addon h2>a,.input-group-addon h3>a,.input-group-addon h4>a,.input-group-addon h5>a,.input-group-addon h6>a,.input-group-addon li>a,.input-group-addon p>a,.input-group-addon td>a{-webkit-transition:.2s color;transition:.2s color}.input-group-addon .nav li>a,.input-group-addon .span>a:active,.input-group-addon .span>a:hover,.input-group-addon address>a:active,.input-group-addon address>a:hover,.input-group-addon em>a:active,.input-group-addon em>a:hover,.input-group-addon h1>a:active,.input-group-addon h1>a:hover,.input-group-addon h2>a:active,.input-group-addon h2>a:hover,.input-group-addon h3>a:active,.input-group-addon h3>a:hover,.input-group-addon h4>a:active,.input-group-addon h4>a:hover,.input-group-addon h5>a:active,.input-group-addon h5>a:hover,.input-group-addon h6>a:active,.input-group-addon h6>a:hover,.input-group-addon li>a:active,.input-group-addon li>a:hover,.input-group-addon p>a:active,.input-group-addon p>a:hover,.input-group-addon td>a:active,.input-group-addon td>a:hover{text-decoration:none}.input-group-addon.separated{border-bottom-color:#e4e4b7}.input-group-addon .h1,.input-group-addon .h2,.input-group-addon .h3,.input-group-addon .h4,.input-group-addon .h5,.input-group-addon .h6,.input-group-addon h1,.input-group-addon h2,.input-group-addon h3,.input-group-addon h4,.input-group-addon h5,.input-group-addon h6{color:#000}.input-group-addon.jumbotron .h1,.input-group-addon.jumbotron h1{color:#2f2f2f}.input-group-addon.jumbotron .h2,.input-group-addon.jumbotron .h3,.input-group-addon.jumbotron .h4,.input-group-addon.jumbotron .h5,.input-group-addon.jumbotron .h6,.input-group-addon.jumbotron h2,.input-group-addon.jumbotron h3,.input-group-addon.jumbotron h4,.input-group-addon.jumbotron h5,.input-group-addon.jumbotron h6{color:#6f6f6f}.input-group-addon .span>a:active,.input-group-addon .span>a:link,.input-group-addon .span>a:visited,.input-group-addon address>a:active,.input-group-addon address>a:link,.input-group-addon address>a:visited,.input-group-addon em>a:active,.input-group-addon em>a:link,.input-group-addon em>a:visited,.input-group-addon h1>a:active,.input-group-addon h1>a:link,.input-group-addon h1>a:visited,.input-group-addon h2>a:active,.input-group-addon h2>a:link,.input-group-addon h2>a:visited,.input-group-addon h3>a:active,.input-group-addon h3>a:link,.input-group-addon h3>a:visited,.input-group-addon h4>a:active,.input-group-addon h4>a:link,.input-group-addon h4>a:visited,.input-group-addon h5>a:active,.input-group-addon h5>a:link,.input-group-addon h5>a:visited,.input-group-addon h6>a:active,.input-group-addon h6>a:link,.input-group-addon h6>a:visited,.input-group-addon li>a:active,.input-group-addon li>a:link,.input-group-addon li>a:visited,.input-group-addon p>a:active,.input-group-addon p>a:link,.input-group-addon p>a:visited,.input-group-addon td>a:active,.input-group-addon td>a:link,.input-group-addon td>a:visited{color:#0089bc}.input-group-addon .span>a:hover,.input-group-addon address>a:hover,.input-group-addon em>a:hover,.input-group-addon h1>a:hover,.input-group-addon h2>a:hover,.input-group-addon h3>a:hover,.input-group-addon h4>a:hover,.input-group-addon h5>a:hover,.input-group-addon h6>a:hover,.input-group-addon li>a:hover,.input-group-addon p>a:hover,.input-group-addon td>a:hover{color:#005170}.input-group-addon .span>a .glyphicon.tile,.input-group-addon address>a .glyphicon.tile,.input-group-addon em>a .glyphicon.tile,.input-group-addon h1>a .glyphicon.tile,.input-group-addon h2>a .glyphicon.tile,.input-group-addon h3>a .glyphicon.tile,.input-group-addon h4>a .glyphicon.tile,.input-group-addon h5>a .glyphicon.tile,.input-group-addon h6>a .glyphicon.tile,.input-group-addon li>a .glyphicon.tile,.input-group-addon p>a .glyphicon.tile,.input-group-addon td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.input-group-addon .span>a .glyphicon.tile:active,.input-group-addon .span>a .glyphicon.tile:hover,.input-group-addon address>a .glyphicon.tile:active,.input-group-addon address>a .glyphicon.tile:hover,.input-group-addon em>a .glyphicon.tile:active,.input-group-addon em>a .glyphicon.tile:hover,.input-group-addon h1>a .glyphicon.tile:active,.input-group-addon h1>a .glyphicon.tile:hover,.input-group-addon h2>a .glyphicon.tile:active,.input-group-addon h2>a .glyphicon.tile:hover,.input-group-addon h3>a .glyphicon.tile:active,.input-group-addon h3>a .glyphicon.tile:hover,.input-group-addon h4>a .glyphicon.tile:active,.input-group-addon h4>a .glyphicon.tile:hover,.input-group-addon h5>a .glyphicon.tile:active,.input-group-addon h5>a .glyphicon.tile:hover,.input-group-addon h6>a .glyphicon.tile:active,.input-group-addon h6>a .glyphicon.tile:hover,.input-group-addon li>a .glyphicon.tile:active,.input-group-addon li>a .glyphicon.tile:hover,.input-group-addon p>a .glyphicon.tile:active,.input-group-addon p>a .glyphicon.tile:hover,.input-group-addon td>a .glyphicon.tile:active,.input-group-addon td>a .glyphicon.tile:hover{color:#494949}.input-group-addon ul.nav-sidebar>li.active>a{color:#000}.input-group-addon ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.input-group-addon ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.input-group-addon ul.nav-sidebar>li>a:hover{color:#000}.input-group-addon ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.input-group-addon ul.dropdown-menu>li>a:hover{color:#fff}.input-group-addon.subnav{opacity:.96}.input-group-addon.subnav .navbar-brand{color:#000}.input-group-addon.subnav .navbar-brand a{text-decoration:none;color:#000}.input-group-addon.subnav li>a{color:#aaa}.input-group-addon.subnav li>a.active{color:#000}.input-group-addon.subnav li>a:hover{color:#555}.input-group-addon .sidebar strong,.input-group-addon.subnav .navbar-toggle{color:#000}.input-group-addon.subnav .navbar-toggle:hover{background-color:transparent}.input-group-addon.subnav .navbar-collapse{border-top-color:#e7e6e6}.input-group-addon.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.input-group-addon .sidebar a strong,.input-group-addon .sidebar a strong:active,.input-group-addon .sidebar a strong:link,.input-group-addon .sidebar a strong:visited{color:#0089bc}.input-group-addon .sidebar a strong:hover{color:#005170}.input-group-addon cite.bubble strong{color:#414141}.input-group-addon cite.bubble a:active,.input-group-addon cite.bubble a:link,.input-group-addon cite.bubble a:visited{color:#0089bc}.input-group-addon cite.bubble a:hover{color:#005170}.input-group-addon blockquote,.input-group-addon blockquote p,.input-group-addon blockquote ul>li{color:#747474}.has-error .form-control,.has-error .form-control:focus,.has-success .form-control,.has-success .form-control:focus,.has-warning .form-control,.has-warning .form-control:focus{-webkit-box-shadow:none;box-shadow:none}button:focus{outline:0}html{-webkit-tap-highlight-color:transparent;color:#444;background-color:#0a0a0a;font-size:16px}html a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}html a:active,html a:hover{color:#f2f2f2;text-decoration:none}@media (min-width:768px){html{font-size:18px}.belt-outer .belt .belt-inner{float:left;width:83.33333333%}}nav,section{background-color:inherit}header,nav,section{margin:0}.belt-outer .belt,.row-content,.row-tiles{margin-left:-15px;margin-right:-15px}header .row-content:first-child,header .row:first-child,nav .row-content:first-child,nav .row:first-child,section .row-content:first-child,section .row:first-child{margin-top:30px}header .row-content:last-child,header .row:last-child,nav .row-content:last-child,nav .row:last-child,section .row-content:last-child,section .row:last-child{margin-bottom:30px}header .row :first-child,header .row-content :first-child,nav .row :first-child,nav .row-content :first-child,section .row :first-child,section .row-content :first-child{margin-top:0}header .row :last-child,header .row-content :last-child,nav .row :last-child,nav .row-content :last-child,section .row :last-child,section .row-content :last-child{margin-bottom:0}.doc-title,header.small .row:last-child,nav.small .row:last-child,section.small .row:last-child{margin-bottom:5px}header.small,nav.small,section.small{font-size:14px}header.small .row:first-child,nav.small .row:first-child,section.small .row:first-child{margin-top:5px}header.small .row :first-child,nav.small .row :first-child,section.small .row :first-child{margin-top:0}header.small .row :last-child,nav.small .row :last-child,section.small .row :last-child{margin-bottom:0}@media screen and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:60px;padding-bottom:60px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:30px;padding-bottom:30px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:60px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:60px}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:30px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:30px}}@media screen and (min-width:768px){header.some-space,nav.some-space,section.some-space{padding-top:30px;padding-bottom:30px}header.some-space.bottom,nav.some-space.bottom,section.some-space.bottom{padding-top:0}header.some-space.top,nav.some-space.top,section.some-space.top{padding-bottom:0}header.some-space-top,nav.some-space-top,section.some-space-top{padding-top:30px}header.some-space-bottom,nav.some-space-bottom,section.some-space-bottom{padding-bottom:30px}header.super-space,nav.super-space,section.super-space{padding-top:90px;padding-bottom:90px}header.super-space.bottom,nav.super-space.bottom,section.super-space.bottom{padding-top:0}header.super-space.top,nav.super-space.top,section.super-space.top{padding-bottom:0}header.super-space-top,nav.super-space-top,section.super-space-top{padding-top:90px}header.super-space-bottom,nav.super-space-bottom,section.super-space-bottom{padding-bottom:90px}}.sr-only,div.no-padding,li.list-group-item{padding:0}header.flush-bottom,nav.flush-bottom,section.flush-bottom{margin-bottom:0;padding-bottom:0}header.flush-bottom .row-content:last-child,header.flush-bottom .row:last-child,nav.flush-bottom .row-content:last-child,nav.flush-bottom .row:last-child,section.flush-bottom .row-content:last-child,section.flush-bottom .row:last-child{margin-bottom:0}.row-content.extra-bottom{margin-bottom:90px}.row-content.super-bottom{margin-bottom:120px}@media screen and (max-width:768px){.row-content.shrink{margin-bottom:30px}}.pad-xs{margin-top:30px}.separated{border-bottom-width:1px;border-bottom-style:solid}@media screen and (min-width:768px){.pad-xs{margin-top:0}.belt-outer{height:100px}.belt-outer .belt .belt-inner{top:-50px}}.belt-outer .belt .belt-inner{min-height:1px;background-color:#f9f9ef;color:#6f6f6f;padding:20px;border:1px solid #ebebca;margin-bottom:0;position:relative}@media (min-width:768px){.belt-outer .belt .belt-inner{margin-left:8.33333333%}}.belt-outer .belt .belt-inner .lead a{font-weight:300}.belt-outer .belt .belt-inner .span>a,.belt-outer .belt .belt-inner address>a,.belt-outer .belt .belt-inner em>a,.belt-outer .belt .belt-inner h1>a,.belt-outer .belt .belt-inner h2>a,.belt-outer .belt .belt-inner h3>a,.belt-outer .belt .belt-inner h4>a,.belt-outer .belt .belt-inner h5>a,.belt-outer .belt .belt-inner h6>a,.belt-outer .belt .belt-inner li>a,.belt-outer .belt .belt-inner p>a,.belt-outer .belt .belt-inner td>a{-webkit-transition:.2s color;transition:.2s color}.belt-outer .belt .belt-inner .nav li>a,.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:hover{text-decoration:none}.belt-outer .belt .belt-inner.separated{border-bottom-color:#e4e4b7}.belt-outer .belt .belt-inner .h1,.belt-outer .belt .belt-inner .h2,.belt-outer .belt .belt-inner .h3,.belt-outer .belt .belt-inner .h4,.belt-outer .belt .belt-inner .h5,.belt-outer .belt .belt-inner .h6,.belt-outer .belt .belt-inner h1,.belt-outer .belt .belt-inner h2,.belt-outer .belt .belt-inner h3,.belt-outer .belt .belt-inner h4,.belt-outer .belt .belt-inner h5,.belt-outer .belt .belt-inner h6{color:#000}.belt-outer .belt .belt-inner.jumbotron .h1,.belt-outer .belt .belt-inner.jumbotron h1{color:#2f2f2f}.belt-outer .belt .belt-inner.jumbotron .h2,.belt-outer .belt .belt-inner.jumbotron .h3,.belt-outer .belt .belt-inner.jumbotron .h4,.belt-outer .belt .belt-inner.jumbotron .h5,.belt-outer .belt .belt-inner.jumbotron .h6,.belt-outer .belt .belt-inner.jumbotron h2,.belt-outer .belt .belt-inner.jumbotron h3,.belt-outer .belt .belt-inner.jumbotron h4,.belt-outer .belt .belt-inner.jumbotron h5,.belt-outer .belt .belt-inner.jumbotron h6{color:#6f6f6f}.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:link,.belt-outer .belt .belt-inner .span>a:visited,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:link,.belt-outer .belt .belt-inner address>a:visited,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:link,.belt-outer .belt .belt-inner em>a:visited,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:link,.belt-outer .belt .belt-inner h1>a:visited,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:link,.belt-outer .belt .belt-inner h2>a:visited,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:link,.belt-outer .belt .belt-inner h3>a:visited,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:link,.belt-outer .belt .belt-inner h4>a:visited,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:link,.belt-outer .belt .belt-inner h5>a:visited,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:link,.belt-outer .belt .belt-inner h6>a:visited,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:link,.belt-outer .belt .belt-inner li>a:visited,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:link,.belt-outer .belt .belt-inner p>a:visited,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:link,.belt-outer .belt .belt-inner td>a:visited{color:#0089bc}.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:hover{color:#005170}.belt-outer .belt .belt-inner .span>a .glyphicon.tile,.belt-outer .belt .belt-inner address>a .glyphicon.tile,.belt-outer .belt .belt-inner em>a .glyphicon.tile,.belt-outer .belt .belt-inner h1>a .glyphicon.tile,.belt-outer .belt .belt-inner h2>a .glyphicon.tile,.belt-outer .belt .belt-inner h3>a .glyphicon.tile,.belt-outer .belt .belt-inner h4>a .glyphicon.tile,.belt-outer .belt .belt-inner h5>a .glyphicon.tile,.belt-outer .belt .belt-inner h6>a .glyphicon.tile,.belt-outer .belt .belt-inner li>a .glyphicon.tile,.belt-outer .belt .belt-inner p>a .glyphicon.tile,.belt-outer .belt .belt-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.belt-outer .belt .belt-inner .span>a .glyphicon.tile:active,.belt-outer .belt .belt-inner .span>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner address>a .glyphicon.tile:active,.belt-outer .belt .belt-inner address>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner em>a .glyphicon.tile:active,.belt-outer .belt .belt-inner em>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner li>a .glyphicon.tile:active,.belt-outer .belt .belt-inner li>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner p>a .glyphicon.tile:active,.belt-outer .belt .belt-inner p>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner td>a .glyphicon.tile:active,.belt-outer .belt .belt-inner td>a .glyphicon.tile:hover{color:#494949}.belt-outer .belt .belt-inner ul.nav-sidebar>li.active>a{color:#000}.belt-outer .belt .belt-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,li,p{font-weight:400}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a:hover{color:#000}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:hover,.fa-inverse{color:#fff}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.belt-outer .belt .belt-inner.subnav{opacity:.96}.belt-outer .belt .belt-inner.subnav .navbar-brand{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.belt-outer .belt .belt-inner.subnav li>a{color:#aaa}.belt-outer .belt .belt-inner.subnav li>a.active{color:#000}.belt-outer .belt .belt-inner.subnav li>a:hover{color:#555}.belt-outer .belt .belt-inner .sidebar strong,.belt-outer .belt .belt-inner.subnav .navbar-toggle{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-toggle:hover{background-color:transparent}.white,q.bubble{background-color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.belt-outer .belt .belt-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.belt-outer .belt .belt-inner .sidebar a strong,.belt-outer .belt .belt-inner .sidebar a strong:active,.belt-outer .belt .belt-inner .sidebar a strong:link,.belt-outer .belt .belt-inner .sidebar a strong:visited{color:#0089bc}.belt-outer .belt .belt-inner .sidebar a strong:hover{color:#005170}.belt-outer .belt .belt-inner cite.bubble strong{color:#414141}.belt-outer .belt .belt-inner cite.bubble a:active,.belt-outer .belt .belt-inner cite.bubble a:link,.belt-outer .belt .belt-inner cite.bubble a:visited{color:#0089bc}.belt-outer .belt .belt-inner cite.bubble a:hover{color:#005170}.belt-outer .belt .belt-inner blockquote,.belt-outer .belt .belt-inner blockquote p,.belt-outer .belt .belt-inner blockquote ul>li{color:#747474}.belt-outer .belt .belt-inner .belt-content{margin:0}.vertical-center{display:table-cell;vertical-align:middle}@media screen and (min-width:768px){.reduce-gutter{padding:0 2px}q.bubble{min-height:152px}}#article-body .h1 a,#article-body .h2 a,#article-body .h3 a,#article-body .h4 a,#article-body .h5 a,#article-body .h6 a,#article-body h1 a,#article-body h2 a,#article-body h3 a,#article-body h4 a,#article-body h5 a,#article-body h6 a,.doc .h1 a,.doc .h2 a,.doc .h3 a,.doc .h4 a,.doc .h5 a,.doc .h6 a,.doc h1 a,.doc h2 a,.doc h3 a,.doc h4 a,.doc h5 a,.doc h6 a{padding-left:10px;opacity:0}img.full-width{display:block;width:100%}img.centered-icon{margin:0 auto;display:block}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')}.large{font-size:18px}.small{font-size:14px}.h1,h1{font-size:48px}.h2,h2{font-size:44px}.h3,h3{font-size:32px}.h4,h4{font-size:25px}.h5,h5{font-size:21px}.h6,h6{font-size:19px}p{font-size:17px;font-size:1.08rem;line-height:1.5;margin:0 0 20px}.lead{padding-top:22px;margin-bottom:22px;font-size:19.8px;font-weight:300;line-height:1.4;font-family:Helvetica,Arial,sans-serif}.h1+.lead,.h2+.lead,.h3+.lead,.h4+.lead,.h5+.lead,.h6+.lead,h1+.lead,h2+.lead,h3+.lead,h4+.lead,h5+.lead,h6+.lead{padding-top:10px}pre{overflow-x:auto;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;font-size:14px}code{-moz-border-radius:0;-webkit-border-radius:0;word-wrap:break-word}.amp{font-family:Helvetica,sans-serif;font-weight:400;line-height:0}.footnote{font-size:10px;margin-top:20px}q.bubble{position:relative;display:block;width:100%;padding:10px}@media screen and (min-width:992px){.belt-outer{height:50px}q.bubble{min-height:108px}}q.bubble:after{content:"";display:block;width:0;border:0 solid;border-right-width:20px;border-bottom-width:20px;border-color:transparent #fff;position:absolute;bottom:-20px;left:15px}cite.bubble{display:block;margin-left:50px;margin-top:5px;padding-bottom:20px}blockquote{font-size:17px}blockquote *,blockquote p,blockquote ul>li{font-size:17px;font-weight:300}blockquote strong{font-weight:800}.doc li{font-size:17px;font-size:1.08rem}.doc .h1,.doc .h2,.doc .h3,.doc .h4,.doc .h5,.doc .h6,.doc h1,.doc h2,.doc h3,.doc h4,.doc h5,.doc h6{word-wrap:break-word;margin-top:3.125rem}.doc .h1+.h1,.doc .h1+.h2,.doc .h1+.h3,.doc .h1+.h4,.doc .h1+.h5,.doc .h1+.h6,.doc .h1+h1,.doc .h1+h2,.doc .h1+h3,.doc .h1+h4,.doc .h1+h5,.doc .h1+h6,.doc .h2+.h1,.doc .h2+.h2,.doc .h2+.h3,.doc .h2+.h4,.doc .h2+.h5,.doc .h2+.h6,.doc .h2+h1,.doc .h2+h2,.doc .h2+h3,.doc .h2+h4,.doc .h2+h5,.doc .h2+h6,.doc .h3+.h1,.doc .h3+.h2,.doc .h3+.h3,.doc .h3+.h4,.doc .h3+.h5,.doc .h3+.h6,.doc .h3+h1,.doc .h3+h2,.doc .h3+h3,.doc .h3+h4,.doc .h3+h5,.doc .h3+h6,.doc .h4+.h1,.doc .h4+.h2,.doc .h4+.h3,.doc .h4+.h4,.doc .h4+.h5,.doc .h4+.h6,.doc .h4+h1,.doc .h4+h2,.doc .h4+h3,.doc .h4+h4,.doc .h4+h5,.doc .h4+h6,.doc .h5+.h1,.doc .h5+.h2,.doc .h5+.h3,.doc .h5+.h4,.doc .h5+.h5,.doc .h5+.h6,.doc .h5+h1,.doc .h5+h2,.doc .h5+h3,.doc .h5+h4,.doc .h5+h5,.doc .h5+h6,.doc .h6+.h1,.doc .h6+.h2,.doc .h6+.h3,.doc .h6+.h4,.doc .h6+.h5,.doc .h6+.h6,.doc .h6+h1,.doc .h6+h2,.doc .h6+h3,.doc .h6+h4,.doc .h6+h5,.doc .h6+h6,.doc h1+.h1,.doc h1+.h2,.doc h1+.h3,.doc h1+.h4,.doc h1+.h5,.doc h1+.h6,.doc h1+h1,.doc h1+h2,.doc h1+h3,.doc h1+h4,.doc h1+h5,.doc h1+h6,.doc h2+.h1,.doc h2+.h2,.doc h2+.h3,.doc h2+.h4,.doc h2+.h5,.doc h2+.h6,.doc h2+h1,.doc h2+h2,.doc h2+h3,.doc h2+h4,.doc h2+h5,.doc h2+h6,.doc h3+.h1,.doc h3+.h2,.doc h3+.h3,.doc h3+.h4,.doc h3+.h5,.doc h3+.h6,.doc h3+h1,.doc h3+h2,.doc h3+h3,.doc h3+h4,.doc h3+h5,.doc h3+h6,.doc h4+.h1,.doc h4+.h2,.doc h4+.h3,.doc h4+.h4,.doc h4+.h5,.doc h4+.h6,.doc h4+h1,.doc h4+h2,.doc h4+h3,.doc h4+h4,.doc h4+h5,.doc h4+h6,.doc h5+.h1,.doc h5+.h2,.doc h5+.h3,.doc h5+.h4,.doc h5+.h5,.doc h5+.h6,.doc h5+h1,.doc h5+h2,.doc h5+h3,.doc h5+h4,.doc h5+h5,.doc h5+h6,.doc h6+.h1,.doc h6+.h2,.doc h6+.h3,.doc h6+.h4,.doc h6+.h5,.doc h6+.h6,.doc h6+h1,.doc h6+h2,.doc h6+h3,.doc h6+h4,.doc h6+h5,.doc h6+h6{margin-top:0}.doc .h1:hover a,.doc .h2:hover a,.doc .h3:hover a,.doc .h4:hover a,.doc .h5:hover a,.doc .h6:hover a,.doc h1:hover a,.doc h2:hover a,.doc h3:hover a,.doc h4:hover a,.doc h5:hover a,.doc h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.doc .h1,.doc h1{font-size:38px;font-size:2.375rem}.doc .h2,.doc h2{font-size:33px;font-size:2.0625rem}.doc .h3,.doc h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}.doc .h4,.doc h4{font-size:23px;font-size:1.4375rem}.doc .h5,.doc h5{font-size:20px;font-size:1.25rem}.doc .h6,.doc h6{font-size:18px;font-size:1.125rem}.doc li ol,.doc li ul{margin-top:10px}.doc li ol li,.doc li ul li{margin-top:5px}.doc li blockquote,.doc li img{margin:20px 0}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.doc li ol+p,.doc li ul+p{margin-top:20px}.doc li+li{margin-top:10px}.doc code{font-size:14px}.glyphicon.tile{font-size:150px;margin-bottom:20px!important}.glyphicon.tile-small{font-size:100px;margin-bottom:35px!important}.glyphicon.glyphicon-heart{color:#e74c3c}.caret-right{display:none}@media screen and (min-width:768px){cite.bubble{padding-bottom:0}.doc{padding-bottom:60px}.glyphicon.tile-small{margin-bottom:0!important}.caret-right{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent}}.login-caret{display:none}.tile-list{text-align:center}@media screen and (min-width:768px){.login-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent;border-left-color:#3BB878}.tile-list{text-align:right}}/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.fa-lg{font-size:1.33333333em;line-height:.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.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-stack,.footer-col,.library-spinner,.search-form{position:relative}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-right{float:right}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.cubes.subnav .navbar-collapse,.light-blue.subnav .navbar-collapse,.light-gray.subnav .navbar-collapse,.sand.subnav .navbar-collapse,.striped.subnav .navbar-collapse,.white.subnav .navbar-collapse{border-top-color:#e7e6e6}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.white{color:#747474}.white .lead a{font-weight:300}.white .span>a,.white address>a,.white em>a,.white h1>a,.white h2>a,.white h3>a,.white h4>a,.white h5>a,.white h6>a,.white li>a,.white p>a,.white td>a{-webkit-transition:.2s color;transition:.2s color}.white .nav li>a,.white .span>a:active,.white .span>a:hover,.white address>a:active,.white address>a:hover,.white em>a:active,.white em>a:hover,.white h1>a:active,.white h1>a:hover,.white h2>a:active,.white h2>a:hover,.white h3>a:active,.white h3>a:hover,.white h4>a:active,.white h4>a:hover,.white h5>a:active,.white h5>a:hover,.white h6>a:active,.white h6>a:hover,.white li>a:active,.white li>a:hover,.white p>a:active,.white p>a:hover,.white td>a:active,.white td>a:hover{text-decoration:none}.white.separated{border-bottom-color:#d9d9d9}.white .h1,.white .h2,.white .h3,.white .h4,.white .h5,.white .h6,.white h1,.white h2,.white h3,.white h4,.white h5,.white h6{color:#000}.white.jumbotron .h1,.white.jumbotron h1{color:#343434}.white.jumbotron .h2,.white.jumbotron .h3,.white.jumbotron .h4,.white.jumbotron .h5,.white.jumbotron .h6,.white.jumbotron h2,.white.jumbotron h3,.white.jumbotron h4,.white.jumbotron h5,.white.jumbotron h6{color:#747474}.white .span>a:active,.white .span>a:link,.white .span>a:visited,.white address>a:active,.white address>a:link,.white address>a:visited,.white em>a:active,.white em>a:link,.white em>a:visited,.white h1>a:active,.white h1>a:link,.white h1>a:visited,.white h2>a:active,.white h2>a:link,.white h2>a:visited,.white h3>a:active,.white h3>a:link,.white h3>a:visited,.white h4>a:active,.white h4>a:link,.white h4>a:visited,.white h5>a:active,.white h5>a:link,.white h5>a:visited,.white h6>a:active,.white h6>a:link,.white h6>a:visited,.white li>a:active,.white li>a:link,.white li>a:visited,.white p>a:active,.white p>a:link,.white p>a:visited,.white td>a:active,.white td>a:link,.white td>a:visited{color:#0089bc}.white .span>a:hover,.white address>a:hover,.white em>a:hover,.white h1>a:hover,.white h2>a:hover,.white h3>a:hover,.white h4>a:hover,.white h5>a:hover,.white h6>a:hover,.white li>a:hover,.white p>a:hover,.white td>a:hover{color:#005170}.white .span>a .glyphicon.tile,.white address>a .glyphicon.tile,.white em>a .glyphicon.tile,.white h1>a .glyphicon.tile,.white h2>a .glyphicon.tile,.white h3>a .glyphicon.tile,.white h4>a .glyphicon.tile,.white h5>a .glyphicon.tile,.white h6>a .glyphicon.tile,.white li>a .glyphicon.tile,.white p>a .glyphicon.tile,.white td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.white .span>a .glyphicon.tile:active,.white .span>a .glyphicon.tile:hover,.white address>a .glyphicon.tile:active,.white address>a .glyphicon.tile:hover,.white em>a .glyphicon.tile:active,.white em>a .glyphicon.tile:hover,.white h1>a .glyphicon.tile:active,.white h1>a .glyphicon.tile:hover,.white h2>a .glyphicon.tile:active,.white h2>a .glyphicon.tile:hover,.white h3>a .glyphicon.tile:active,.white h3>a .glyphicon.tile:hover,.white h4>a .glyphicon.tile:active,.white h4>a .glyphicon.tile:hover,.white h5>a .glyphicon.tile:active,.white h5>a .glyphicon.tile:hover,.white h6>a .glyphicon.tile:active,.white h6>a .glyphicon.tile:hover,.white li>a .glyphicon.tile:active,.white li>a .glyphicon.tile:hover,.white p>a .glyphicon.tile:active,.white p>a .glyphicon.tile:hover,.white td>a .glyphicon.tile:active,.white td>a .glyphicon.tile:hover{color:#4e4e4e}.white ul.nav-sidebar>li.active>a{color:#000}.white ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.white ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.white ul.nav-sidebar>li>a:hover{color:#000}.white ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.white ul.dropdown-menu>li>a:hover{color:#fff}.white.subnav{opacity:.96}.white.subnav .navbar-brand{color:#000}.white.subnav .navbar-brand a{text-decoration:none;color:#000}.white.subnav li>a{color:#aaa}.white.subnav li>a.active{color:#000}.white.subnav li>a:hover{color:#5b5b5b}.white .sidebar strong,.white.subnav .navbar-toggle{color:#000}.white.subnav .navbar-toggle:hover{background-color:transparent}.white.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.white .sidebar a strong,.white .sidebar a strong:active,.white .sidebar a strong:link,.white .sidebar a strong:visited{color:#0089bc}.white .sidebar a strong:hover{color:#005170}.white cite.bubble strong{color:#414141}.white cite.bubble a:active,.white cite.bubble a:link,.white cite.bubble a:visited{color:#0089bc}.white cite.bubble a:hover{color:#005170}.white blockquote,.white blockquote p,.white blockquote ul>li{color:#747474}.sand{background-color:#f9f9ef;color:#6f6f6f}.sand .lead a{font-weight:300}.sand .span>a,.sand address>a,.sand em>a,.sand h1>a,.sand h2>a,.sand h3>a,.sand h4>a,.sand h5>a,.sand h6>a,.sand li>a,.sand p>a,.sand td>a{-webkit-transition:.2s color;transition:.2s color}.sand .nav li>a,.sand .span>a:active,.sand .span>a:hover,.sand address>a:active,.sand address>a:hover,.sand em>a:active,.sand em>a:hover,.sand h1>a:active,.sand h1>a:hover,.sand h2>a:active,.sand h2>a:hover,.sand h3>a:active,.sand h3>a:hover,.sand h4>a:active,.sand h4>a:hover,.sand h5>a:active,.sand h5>a:hover,.sand h6>a:active,.sand h6>a:hover,.sand li>a:active,.sand li>a:hover,.sand p>a:active,.sand p>a:hover,.sand td>a:active,.sand td>a:hover{text-decoration:none}.sand.separated{border-bottom-color:#e4e4b7}.sand .h1,.sand .h2,.sand .h3,.sand .h4,.sand .h5,.sand .h6,.sand h1,.sand h2,.sand h3,.sand h4,.sand h5,.sand h6{color:#000}.sand.jumbotron .h1,.sand.jumbotron h1{color:#2f2f2f}.sand.jumbotron .h2,.sand.jumbotron .h3,.sand.jumbotron .h4,.sand.jumbotron .h5,.sand.jumbotron .h6,.sand.jumbotron h2,.sand.jumbotron h3,.sand.jumbotron h4,.sand.jumbotron h5,.sand.jumbotron h6{color:#6f6f6f}.sand .span>a:active,.sand .span>a:link,.sand .span>a:visited,.sand address>a:active,.sand address>a:link,.sand address>a:visited,.sand em>a:active,.sand em>a:link,.sand em>a:visited,.sand h1>a:active,.sand h1>a:link,.sand h1>a:visited,.sand h2>a:active,.sand h2>a:link,.sand h2>a:visited,.sand h3>a:active,.sand h3>a:link,.sand h3>a:visited,.sand h4>a:active,.sand h4>a:link,.sand h4>a:visited,.sand h5>a:active,.sand h5>a:link,.sand h5>a:visited,.sand h6>a:active,.sand h6>a:link,.sand h6>a:visited,.sand li>a:active,.sand li>a:link,.sand li>a:visited,.sand p>a:active,.sand p>a:link,.sand p>a:visited,.sand td>a:active,.sand td>a:link,.sand td>a:visited{color:#0089bc}.sand .span>a:hover,.sand address>a:hover,.sand em>a:hover,.sand h1>a:hover,.sand h2>a:hover,.sand h3>a:hover,.sand h4>a:hover,.sand h5>a:hover,.sand h6>a:hover,.sand li>a:hover,.sand p>a:hover,.sand td>a:hover{color:#005170}.sand .span>a .glyphicon.tile,.sand address>a .glyphicon.tile,.sand em>a .glyphicon.tile,.sand h1>a .glyphicon.tile,.sand h2>a .glyphicon.tile,.sand h3>a .glyphicon.tile,.sand h4>a .glyphicon.tile,.sand h5>a .glyphicon.tile,.sand h6>a .glyphicon.tile,.sand li>a .glyphicon.tile,.sand p>a .glyphicon.tile,.sand td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.sand .span>a .glyphicon.tile:active,.sand .span>a .glyphicon.tile:hover,.sand address>a .glyphicon.tile:active,.sand address>a .glyphicon.tile:hover,.sand em>a .glyphicon.tile:active,.sand em>a .glyphicon.tile:hover,.sand h1>a .glyphicon.tile:active,.sand h1>a .glyphicon.tile:hover,.sand h2>a .glyphicon.tile:active,.sand h2>a .glyphicon.tile:hover,.sand h3>a .glyphicon.tile:active,.sand h3>a .glyphicon.tile:hover,.sand h4>a .glyphicon.tile:active,.sand h4>a .glyphicon.tile:hover,.sand h5>a .glyphicon.tile:active,.sand h5>a .glyphicon.tile:hover,.sand h6>a .glyphicon.tile:active,.sand h6>a .glyphicon.tile:hover,.sand li>a .glyphicon.tile:active,.sand li>a .glyphicon.tile:hover,.sand p>a .glyphicon.tile:active,.sand p>a .glyphicon.tile:hover,.sand td>a .glyphicon.tile:active,.sand td>a .glyphicon.tile:hover{color:#494949}.sand ul.nav-sidebar>li.active>a{color:#000}.sand ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.sand ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.sand ul.nav-sidebar>li>a:hover{color:#000}.sand ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.sand ul.dropdown-menu>li>a:hover{color:#fff}.sand.subnav{opacity:.96}.sand.subnav .navbar-brand{color:#000}.sand.subnav .navbar-brand a{text-decoration:none;color:#000}.sand.subnav li>a{color:#aaa}.sand.subnav li>a.active{color:#000}.sand.subnav li>a:hover{color:#555}.sand .sidebar strong,.sand.subnav .navbar-toggle{color:#000}.sand.subnav .navbar-toggle:hover{background-color:transparent}.sand.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.sand .sidebar a strong,.sand .sidebar a strong:active,.sand .sidebar a strong:link,.sand .sidebar a strong:visited{color:#0089bc}.sand .sidebar a strong:hover{color:#005170}.sand cite.bubble strong{color:#414141}.sand cite.bubble a:active,.sand cite.bubble a:link,.sand cite.bubble a:visited{color:#0089bc}.sand cite.bubble a:hover{color:#005170}.sand blockquote,.sand blockquote p,.sand blockquote ul>li{color:#747474}.light-gray{background-color:#f4f4f4;color:#6f6f6f}.light-gray .lead a{font-weight:300}.light-gray .span>a,.light-gray address>a,.light-gray em>a,.light-gray h1>a,.light-gray h2>a,.light-gray h3>a,.light-gray h4>a,.light-gray h5>a,.light-gray h6>a,.light-gray li>a,.light-gray p>a,.light-gray td>a{-webkit-transition:.2s color;transition:.2s color}.light-gray .nav li>a,.light-gray .span>a:active,.light-gray .span>a:hover,.light-gray address>a:active,.light-gray address>a:hover,.light-gray em>a:active,.light-gray em>a:hover,.light-gray h1>a:active,.light-gray h1>a:hover,.light-gray h2>a:active,.light-gray h2>a:hover,.light-gray h3>a:active,.light-gray h3>a:hover,.light-gray h4>a:active,.light-gray h4>a:hover,.light-gray h5>a:active,.light-gray h5>a:hover,.light-gray h6>a:active,.light-gray h6>a:hover,.light-gray li>a:active,.light-gray li>a:hover,.light-gray p>a:active,.light-gray p>a:hover,.light-gray td>a:active,.light-gray td>a:hover{text-decoration:none}.light-gray.separated{border-bottom-color:#cdcdcd}.light-gray .h1,.light-gray .h2,.light-gray .h3,.light-gray .h4,.light-gray .h5,.light-gray .h6,.light-gray h1,.light-gray h2,.light-gray h3,.light-gray h4,.light-gray h5,.light-gray h6{color:#000}.light-gray.jumbotron .h1,.light-gray.jumbotron h1{color:#2f2f2f}.light-gray.jumbotron .h2,.light-gray.jumbotron .h3,.light-gray.jumbotron .h4,.light-gray.jumbotron .h5,.light-gray.jumbotron .h6,.light-gray.jumbotron h2,.light-gray.jumbotron h3,.light-gray.jumbotron h4,.light-gray.jumbotron h5,.light-gray.jumbotron h6{color:#6f6f6f}.light-gray .span>a:active,.light-gray .span>a:link,.light-gray .span>a:visited,.light-gray address>a:active,.light-gray address>a:link,.light-gray address>a:visited,.light-gray em>a:active,.light-gray em>a:link,.light-gray em>a:visited,.light-gray h1>a:active,.light-gray h1>a:link,.light-gray h1>a:visited,.light-gray h2>a:active,.light-gray h2>a:link,.light-gray h2>a:visited,.light-gray h3>a:active,.light-gray h3>a:link,.light-gray h3>a:visited,.light-gray h4>a:active,.light-gray h4>a:link,.light-gray h4>a:visited,.light-gray h5>a:active,.light-gray h5>a:link,.light-gray h5>a:visited,.light-gray h6>a:active,.light-gray h6>a:link,.light-gray h6>a:visited,.light-gray li>a:active,.light-gray li>a:link,.light-gray li>a:visited,.light-gray p>a:active,.light-gray p>a:link,.light-gray p>a:visited,.light-gray td>a:active,.light-gray td>a:link,.light-gray td>a:visited{color:#0089bc}.light-gray .span>a:hover,.light-gray address>a:hover,.light-gray em>a:hover,.light-gray h1>a:hover,.light-gray h2>a:hover,.light-gray h3>a:hover,.light-gray h4>a:hover,.light-gray h5>a:hover,.light-gray h6>a:hover,.light-gray li>a:hover,.light-gray p>a:hover,.light-gray td>a:hover{color:#005170}.light-gray .span>a .glyphicon.tile,.light-gray address>a .glyphicon.tile,.light-gray em>a .glyphicon.tile,.light-gray h1>a .glyphicon.tile,.light-gray h2>a .glyphicon.tile,.light-gray h3>a .glyphicon.tile,.light-gray h4>a .glyphicon.tile,.light-gray h5>a .glyphicon.tile,.light-gray h6>a .glyphicon.tile,.light-gray li>a .glyphicon.tile,.light-gray p>a .glyphicon.tile,.light-gray td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-gray .span>a .glyphicon.tile:active,.light-gray .span>a .glyphicon.tile:hover,.light-gray address>a .glyphicon.tile:active,.light-gray address>a .glyphicon.tile:hover,.light-gray em>a .glyphicon.tile:active,.light-gray em>a .glyphicon.tile:hover,.light-gray h1>a .glyphicon.tile:active,.light-gray h1>a .glyphicon.tile:hover,.light-gray h2>a .glyphicon.tile:active,.light-gray h2>a .glyphicon.tile:hover,.light-gray h3>a .glyphicon.tile:active,.light-gray h3>a .glyphicon.tile:hover,.light-gray h4>a .glyphicon.tile:active,.light-gray h4>a .glyphicon.tile:hover,.light-gray h5>a .glyphicon.tile:active,.light-gray h5>a .glyphicon.tile:hover,.light-gray h6>a .glyphicon.tile:active,.light-gray h6>a .glyphicon.tile:hover,.light-gray li>a .glyphicon.tile:active,.light-gray li>a .glyphicon.tile:hover,.light-gray p>a .glyphicon.tile:active,.light-gray p>a .glyphicon.tile:hover,.light-gray td>a .glyphicon.tile:active,.light-gray td>a .glyphicon.tile:hover{color:#494949}.light-gray ul.nav-sidebar>li.active>a{color:#000}.light-gray ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.light-gray ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.light-gray ul.nav-sidebar>li>a:hover{color:#000}.light-gray ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-gray ul.dropdown-menu>li>a:hover{color:#fff}.light-gray.subnav{opacity:.96}.light-gray.subnav .navbar-brand{color:#000}.light-gray.subnav .navbar-brand a{text-decoration:none;color:#000}.light-gray.subnav li>a{color:#aaa}.light-gray.subnav li>a.active{color:#000}.light-gray.subnav li>a:hover{color:#555}.light-gray .sidebar strong,.light-gray.subnav .navbar-toggle{color:#000}.light-gray.subnav .navbar-toggle:hover{background-color:transparent}.light-gray.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-gray .sidebar a strong,.light-gray .sidebar a strong:active,.light-gray .sidebar a strong:link,.light-gray .sidebar a strong:visited{color:#0089bc}.light-gray .sidebar a strong:hover{color:#005170}.light-gray cite.bubble strong{color:#414141}.light-gray cite.bubble a:active,.light-gray cite.bubble a:link,.light-gray cite.bubble a:visited{color:#0089bc}.light-gray cite.bubble a:hover{color:#005170}.light-gray blockquote,.light-gray blockquote p,.light-gray blockquote ul>li,.striped{color:#747474}.striped{background:url(/media/images/common/stripes.png)}.striped .lead a{font-weight:300}.striped .span>a,.striped address>a,.striped em>a,.striped h1>a,.striped h2>a,.striped h3>a,.striped h4>a,.striped h5>a,.striped h6>a,.striped li>a,.striped p>a,.striped td>a{-webkit-transition:.2s color;transition:.2s color}.striped .nav li>a,.striped .span>a:active,.striped .span>a:hover,.striped address>a:active,.striped address>a:hover,.striped em>a:active,.striped em>a:hover,.striped h1>a:active,.striped h1>a:hover,.striped h2>a:active,.striped h2>a:hover,.striped h3>a:active,.striped h3>a:hover,.striped h4>a:active,.striped h4>a:hover,.striped h5>a:active,.striped h5>a:hover,.striped h6>a:active,.striped h6>a:hover,.striped li>a:active,.striped li>a:hover,.striped p>a:active,.striped p>a:hover,.striped td>a:active,.striped td>a:hover{text-decoration:none}.striped.separated{border-bottom-color:#d2d2d2}.striped.jumbotron .h1,.striped.jumbotron h1{color:#343434}.striped.jumbotron .h2,.striped.jumbotron .h3,.striped.jumbotron .h4,.striped.jumbotron .h5,.striped.jumbotron .h6,.striped.jumbotron h2,.striped.jumbotron h3,.striped.jumbotron h4,.striped.jumbotron h5,.striped.jumbotron h6{color:#747474}.striped .span>a:active,.striped .span>a:link,.striped .span>a:visited,.striped address>a:active,.striped address>a:link,.striped address>a:visited,.striped em>a:active,.striped em>a:link,.striped em>a:visited,.striped h1>a:active,.striped h1>a:link,.striped h1>a:visited,.striped h2>a:active,.striped h2>a:link,.striped h2>a:visited,.striped h3>a:active,.striped h3>a:link,.striped h3>a:visited,.striped h4>a:active,.striped h4>a:link,.striped h4>a:visited,.striped h5>a:active,.striped h5>a:link,.striped h5>a:visited,.striped h6>a:active,.striped h6>a:link,.striped h6>a:visited,.striped li>a:active,.striped li>a:link,.striped li>a:visited,.striped p>a:active,.striped p>a:link,.striped p>a:visited,.striped td>a:active,.striped td>a:link,.striped td>a:visited{color:#0089bc}.striped .span>a:hover,.striped address>a:hover,.striped em>a:hover,.striped h1>a:hover,.striped h2>a:hover,.striped h3>a:hover,.striped h4>a:hover,.striped h5>a:hover,.striped h6>a:hover,.striped li>a:hover,.striped p>a:hover,.striped td>a:hover{color:#005170}.striped .span>a .glyphicon.tile,.striped address>a .glyphicon.tile,.striped em>a .glyphicon.tile,.striped h1>a .glyphicon.tile,.striped h2>a .glyphicon.tile,.striped h3>a .glyphicon.tile,.striped h4>a .glyphicon.tile,.striped h5>a .glyphicon.tile,.striped h6>a .glyphicon.tile,.striped li>a .glyphicon.tile,.striped p>a .glyphicon.tile,.striped td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.striped .span>a .glyphicon.tile:active,.striped .span>a .glyphicon.tile:hover,.striped address>a .glyphicon.tile:active,.striped address>a .glyphicon.tile:hover,.striped em>a .glyphicon.tile:active,.striped em>a .glyphicon.tile:hover,.striped h1>a .glyphicon.tile:active,.striped h1>a .glyphicon.tile:hover,.striped h2>a .glyphicon.tile:active,.striped h2>a .glyphicon.tile:hover,.striped h3>a .glyphicon.tile:active,.striped h3>a .glyphicon.tile:hover,.striped h4>a .glyphicon.tile:active,.striped h4>a .glyphicon.tile:hover,.striped h5>a .glyphicon.tile:active,.striped h5>a .glyphicon.tile:hover,.striped h6>a .glyphicon.tile:active,.striped h6>a .glyphicon.tile:hover,.striped li>a .glyphicon.tile:active,.striped li>a .glyphicon.tile:hover,.striped p>a .glyphicon.tile:active,.striped p>a .glyphicon.tile:hover,.striped td>a .glyphicon.tile:active,.striped td>a .glyphicon.tile:hover{color:#4e4e4e}.striped ul.nav-sidebar>li.active>a{color:#000}.striped ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.striped ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.striped ul.nav-sidebar>li>a:hover{color:#000}.striped ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.striped ul.dropdown-menu>li>a:hover{color:#fff}.striped.subnav{opacity:.96}.striped.subnav .navbar-brand{color:#000}.striped.subnav .navbar-brand a{text-decoration:none;color:#000}.striped.subnav li>a{color:#aaa}.striped.subnav li>a.active{color:#000}.striped.subnav li>a:hover{color:#5b5b5b}.striped .sidebar strong,.striped.subnav .navbar-toggle{color:#000}.striped.subnav .navbar-toggle:hover{background-color:transparent}.striped.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.striped .sidebar a strong,.striped .sidebar a strong:active,.striped .sidebar a strong:link,.striped .sidebar a strong:visited{color:#0089bc}.striped .sidebar a strong:hover{color:#005170}.striped cite.bubble strong{color:#414141}.striped cite.bubble a:active,.striped cite.bubble a:link,.striped cite.bubble a:visited{color:#0089bc}.striped cite.bubble a:hover{color:#005170}.striped blockquote,.striped blockquote p,.striped blockquote ul>li{color:#747474}.striped .h1,.striped .h2,.striped .h3,.striped .h4,.striped .h5,.striped .h6,.striped h1,.striped h2,.striped h3,.striped h4,.striped h5,.striped h6{color:#4e4e4e}.cubes{color:#747474;background:url(/media/images/common/cube_tile_lt_gray.png)}.cubes .lead a{font-weight:300}.cubes .span>a,.cubes address>a,.cubes em>a,.cubes h1>a,.cubes h2>a,.cubes h3>a,.cubes h4>a,.cubes h5>a,.cubes h6>a,.cubes li>a,.cubes p>a,.cubes td>a{-webkit-transition:.2s color;transition:.2s color}.cubes .nav li>a,.cubes .span>a:active,.cubes .span>a:hover,.cubes address>a:active,.cubes address>a:hover,.cubes em>a:active,.cubes em>a:hover,.cubes h1>a:active,.cubes h1>a:hover,.cubes h2>a:active,.cubes h2>a:hover,.cubes h3>a:active,.cubes h3>a:hover,.cubes h4>a:active,.cubes h4>a:hover,.cubes h5>a:active,.cubes h5>a:hover,.cubes h6>a:active,.cubes h6>a:hover,.cubes li>a:active,.cubes li>a:hover,.cubes p>a:active,.cubes p>a:hover,.cubes td>a:active,.cubes td>a:hover{text-decoration:none}.cubes.separated{border-bottom-color:#d2d2d2}.cubes.jumbotron .h1,.cubes.jumbotron h1{color:#343434}.cubes.jumbotron .h2,.cubes.jumbotron .h3,.cubes.jumbotron .h4,.cubes.jumbotron .h5,.cubes.jumbotron .h6,.cubes.jumbotron h2,.cubes.jumbotron h3,.cubes.jumbotron h4,.cubes.jumbotron h5,.cubes.jumbotron h6{color:#747474}.cubes .span>a:active,.cubes .span>a:link,.cubes .span>a:visited,.cubes address>a:active,.cubes address>a:link,.cubes address>a:visited,.cubes em>a:active,.cubes em>a:link,.cubes em>a:visited,.cubes h1>a:active,.cubes h1>a:link,.cubes h1>a:visited,.cubes h2>a:active,.cubes h2>a:link,.cubes h2>a:visited,.cubes h3>a:active,.cubes h3>a:link,.cubes h3>a:visited,.cubes h4>a:active,.cubes h4>a:link,.cubes h4>a:visited,.cubes h5>a:active,.cubes h5>a:link,.cubes h5>a:visited,.cubes h6>a:active,.cubes h6>a:link,.cubes h6>a:visited,.cubes li>a:active,.cubes li>a:link,.cubes li>a:visited,.cubes p>a:active,.cubes p>a:link,.cubes p>a:visited,.cubes td>a:active,.cubes td>a:link,.cubes td>a:visited{color:#0089bc}.cubes .span>a:hover,.cubes address>a:hover,.cubes em>a:hover,.cubes h1>a:hover,.cubes h2>a:hover,.cubes h3>a:hover,.cubes h4>a:hover,.cubes h5>a:hover,.cubes h6>a:hover,.cubes li>a:hover,.cubes p>a:hover,.cubes td>a:hover{color:#005170}.cubes .span>a .glyphicon.tile,.cubes address>a .glyphicon.tile,.cubes em>a .glyphicon.tile,.cubes h1>a .glyphicon.tile,.cubes h2>a .glyphicon.tile,.cubes h3>a .glyphicon.tile,.cubes h4>a .glyphicon.tile,.cubes h5>a .glyphicon.tile,.cubes h6>a .glyphicon.tile,.cubes li>a .glyphicon.tile,.cubes p>a .glyphicon.tile,.cubes td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.cubes .span>a .glyphicon.tile:active,.cubes .span>a .glyphicon.tile:hover,.cubes address>a .glyphicon.tile:active,.cubes address>a .glyphicon.tile:hover,.cubes em>a .glyphicon.tile:active,.cubes em>a .glyphicon.tile:hover,.cubes h1>a .glyphicon.tile:active,.cubes h1>a .glyphicon.tile:hover,.cubes h2>a .glyphicon.tile:active,.cubes h2>a .glyphicon.tile:hover,.cubes h3>a .glyphicon.tile:active,.cubes h3>a .glyphicon.tile:hover,.cubes h4>a .glyphicon.tile:active,.cubes h4>a .glyphicon.tile:hover,.cubes h5>a .glyphicon.tile:active,.cubes h5>a .glyphicon.tile:hover,.cubes h6>a .glyphicon.tile:active,.cubes h6>a .glyphicon.tile:hover,.cubes li>a .glyphicon.tile:active,.cubes li>a .glyphicon.tile:hover,.cubes p>a .glyphicon.tile:active,.cubes p>a .glyphicon.tile:hover,.cubes td>a .glyphicon.tile:active,.cubes td>a .glyphicon.tile:hover{color:#4e4e4e}.cubes ul.nav-sidebar>li.active>a{color:#000}.cubes ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.blue .lead a,.dark-blue .lead a,.dark-green .lead a,.green .lead a,.light-blue .lead a{font-weight:300}.cubes ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.cubes ul.nav-sidebar>li>a:hover{color:#000}.cubes ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.cubes ul.dropdown-menu>li>a:hover{color:#fff}.cubes.subnav{opacity:.96}.cubes.subnav .navbar-brand{color:#000}.cubes.subnav .navbar-brand a{text-decoration:none;color:#000}.cubes.subnav li>a{color:#aaa}.cubes.subnav li>a.active{color:#000}.cubes.subnav li>a:hover{color:#5b5b5b}.cubes .sidebar strong,.cubes.subnav .navbar-toggle{color:#000}.cubes.subnav .navbar-toggle:hover{background-color:transparent}.cubes.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.cubes .sidebar a strong,.cubes .sidebar a strong:active,.cubes .sidebar a strong:link,.cubes .sidebar a strong:visited{color:#0089bc}.cubes .sidebar a strong:hover{color:#005170}.cubes cite.bubble strong{color:#414141}.cubes cite.bubble a:active,.cubes cite.bubble a:link,.cubes cite.bubble a:visited{color:#0089bc}.cubes cite.bubble a:hover{color:#005170}.cubes blockquote,.cubes blockquote p,.cubes blockquote ul>li{color:#747474}.cubes .h1,.cubes .h2,.cubes .h3,.cubes .h4,.cubes .h5,.cubes .h6,.cubes h1,.cubes h2,.cubes h3,.cubes h4,.cubes h5,.cubes h6{color:#4e4e4e}.green{background-color:#3BB878;color:#fff}.green .span>a,.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{-webkit-transition:.2s color;transition:.2s color}.green .nav li>a,.green .span>a:active,.green .span>a:hover,.green address>a:active,.green address>a:hover,.green em>a:active,.green em>a:hover,.green h1>a:active,.green h1>a:hover,.green h2>a:active,.green h2>a:hover,.green h3>a:active,.green h3>a:hover,.green h4>a:active,.green h4>a:hover,.green h5>a:active,.green h5>a:hover,.green h6>a:active,.green h6>a:hover,.green li>a:active,.green li>a:hover,.green p>a:active,.green p>a:hover,.green td>a:active,.green td>a:hover{text-decoration:none}.green.separated{border-bottom-color:#287e52}.green .h1,.green .h2,.green .h3,.green .h4,.green .h5,.green .h6,.green h1,.green h2,.green h3,.green h4,.green h5,.green h6{color:#fff}.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{color:#fff;text-decoration:underline}.dark-green .nav li>a,.dark-green .span>a:active,.dark-green .span>a:hover,.dark-green address>a:active,.dark-green address>a:hover,.dark-green em>a:active,.dark-green em>a:hover,.dark-green h1>a:active,.dark-green h1>a:hover,.dark-green h2>a:active,.dark-green h2>a:hover,.dark-green h3>a:active,.dark-green h3>a:hover,.dark-green h4>a:active,.dark-green h4>a:hover,.dark-green h5>a:active,.dark-green h5>a:hover,.dark-green h6>a:active,.dark-green h6>a:hover,.dark-green li>a:active,.dark-green li>a:hover,.dark-green p>a:active,.dark-green p>a:hover,.dark-green td>a:active,.dark-green td>a:hover,.green address>a:hover,.green em>a:hover,.green h1>a:hover,.green h2>a:hover,.green h3>a:hover,.green h4>a:hover,.green h5>a:hover,.green h6>a:hover,.green li>a:hover,.green p>a:hover,.green td>a:hover,.green.subnav .navbar-brand a{text-decoration:none}.green.subnav .navbar-brand{color:#fff}.green.subnav li>a{color:#a1e1c0}.green.subnav li>a.active,.green.subnav li>a:hover{color:#fff}.green.subnav .navbar-toggle{color:#226b46}.green.subnav .navbar-toggle:hover{background-color:transparent}.green.subnav .navbar-collapse{border-top-color:#226b46}.green.subnav .subnav-divider{border-bottom:1px solid #3BB878}.green .form-control{border:0!important}.dark-green{background-color:#35a56b;color:#fff}.dark-green .span>a,.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{-webkit-transition:.2s color;transition:.2s color}.dark-green.separated{border-bottom-color:#226b46}.dark-green .h1,.dark-green .h2,.dark-green .h3,.dark-green .h4,.dark-green .h5,.dark-green .h6,.dark-green h1,.dark-green h2,.dark-green h3,.dark-green h4,.dark-green h5,.dark-green h6{color:#fff}.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{color:#fff;text-decoration:underline}.blue .nav li>a,.blue .span>a:active,.blue .span>a:hover,.blue address>a:active,.blue address>a:hover,.blue em>a:active,.blue em>a:hover,.blue h1>a:active,.blue h1>a:hover,.blue h2>a:active,.blue h2>a:hover,.blue h3>a:active,.blue h3>a:hover,.blue h4>a:active,.blue h4>a:hover,.blue h5>a:active,.blue h5>a:hover,.blue h6>a:active,.blue h6>a:hover,.blue li>a:active,.blue li>a:hover,.blue p>a:active,.blue p>a:hover,.blue td>a:active,.blue td>a:hover,.dark-green address>a:hover,.dark-green em>a:hover,.dark-green h1>a:hover,.dark-green h2>a:hover,.dark-green h3>a:hover,.dark-green h4>a:hover,.dark-green h5>a:hover,.dark-green h6>a:hover,.dark-green li>a:hover,.dark-green p>a:hover,.dark-green td>a:hover,.dark-green.subnav .navbar-brand a{text-decoration:none}.dark-green.subnav .navbar-brand{color:#fff}.dark-green.subnav li>a{color:#8edbb3}.dark-green.subnav li>a.active,.dark-green.subnav li>a:hover{color:#fff}.dark-green.subnav .navbar-toggle{color:#1c5739}.dark-green.subnav .navbar-toggle:hover{background-color:transparent}.dark-green.subnav .navbar-collapse{border-top-color:#1c5739}.dark-green.subnav .subnav-divider{border-bottom:1px solid #35a56b}.dark-green .form-control{border:0!important}.blue{background-color:#00aeef;color:#fff}.blue .span>a,.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{-webkit-transition:.2s color;transition:.2s color}.blue.separated{border-bottom-color:#0076a3}.blue .h1,.blue .h2,.blue .h3,.blue .h4,.blue .h5,.blue .h6,.blue h1,.blue h2,.blue h3,.blue h4,.blue h5,.blue h6{color:#fff}.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{color:#fff;text-decoration:underline}.blue address>a:hover,.blue em>a:hover,.blue h1>a:hover,.blue h2>a:hover,.blue h3>a:hover,.blue h4>a:hover,.blue h5>a:hover,.blue h6>a:hover,.blue li>a:hover,.blue p>a:hover,.blue td>a:hover,.blue.subnav .navbar-brand a,.dark-blue .nav li>a,.dark-blue .span>a:active,.dark-blue .span>a:hover,.dark-blue address>a:active,.dark-blue address>a:hover,.dark-blue em>a:active,.dark-blue em>a:hover,.dark-blue h1>a:active,.dark-blue h1>a:hover,.dark-blue h2>a:active,.dark-blue h2>a:hover,.dark-blue h3>a:active,.dark-blue h3>a:hover,.dark-blue h4>a:active,.dark-blue h4>a:hover,.dark-blue h5>a:active,.dark-blue h5>a:hover,.dark-blue h6>a:active,.dark-blue h6>a:hover,.dark-blue li>a:active,.dark-blue li>a:hover,.dark-blue p>a:active,.dark-blue p>a:hover,.dark-blue td>a:active,.dark-blue td>a:hover{text-decoration:none}.blue.subnav .navbar-brand{color:#fff}.blue.subnav li>a{color:#7fdcff}.blue.subnav li>a.active,.blue.subnav li>a:hover{color:#fff}.blue.subnav .navbar-toggle{color:#006489}.blue.subnav .navbar-toggle:hover{background-color:transparent}.blue.subnav .navbar-collapse{border-top-color:#006489}.blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.blue .form-control{border:0!important}.dark-blue{background-color:#00aeef;color:#fff}.dark-blue .span>a,.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{-webkit-transition:.2s color;transition:.2s color}.dark-blue.separated{border-bottom-color:#0076a3}.dark-blue .h1,.dark-blue .h2,.dark-blue .h3,.dark-blue .h4,.dark-blue .h5,.dark-blue .h6,.dark-blue h1,.dark-blue h2,.dark-blue h3,.dark-blue h4,.dark-blue h5,.dark-blue h6{color:#fff}.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{color:#fff;text-decoration:underline}.dark-blue address>a:hover,.dark-blue em>a:hover,.dark-blue h1>a:hover,.dark-blue h2>a:hover,.dark-blue h3>a:hover,.dark-blue h4>a:hover,.dark-blue h5>a:hover,.dark-blue h6>a:hover,.dark-blue li>a:hover,.dark-blue p>a:hover,.dark-blue td>a:hover,.dark-blue.subnav .navbar-brand a,.light-blue .nav li>a,.light-blue .span>a:active,.light-blue .span>a:hover,.light-blue address>a:active,.light-blue address>a:hover,.light-blue em>a:active,.light-blue em>a:hover,.light-blue h1>a:active,.light-blue h1>a:hover,.light-blue h2>a:active,.light-blue h2>a:hover,.light-blue h3>a:active,.light-blue h3>a:hover,.light-blue h4>a:active,.light-blue h4>a:hover,.light-blue h5>a:active,.light-blue h5>a:hover,.light-blue h6>a:active,.light-blue h6>a:hover,.light-blue li>a:active,.light-blue li>a:hover,.light-blue p>a:active,.light-blue p>a:hover,.light-blue td>a:active,.light-blue td>a:hover,.light-blue ul.dropdown-menu>li>a:link,.light-blue.subnav .navbar-brand a,.red .nav li>a,.red .span>a:active,.red .span>a:hover,.red address>a:active,.red address>a:hover,.red em>a:active,.red em>a:hover,.red h1>a:active,.red h1>a:hover,.red h2>a:active,.red h2>a:hover,.red h3>a:active,.red h3>a:hover,.red h4>a:active,.red h4>a:hover,.red h5>a:active,.red h5>a:hover,.red h6>a:active,.red h6>a:hover,.red li>a:active,.red li>a:hover,.red p>a:active,.red p>a:hover,.red td>a:active,.red td>a:hover{text-decoration:none}.dark-blue.subnav .navbar-brand{color:#fff}.dark-blue.subnav li>a{color:#7fdcff}.dark-blue.subnav li>a.active,.dark-blue.subnav li>a:hover{color:#fff}.dark-blue.subnav .navbar-toggle{color:#006489}.dark-blue.subnav .navbar-toggle:hover{background-color:transparent}.dark-blue.subnav .navbar-collapse{border-top-color:#006489}.dark-blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.dark-blue .form-control{border:0!important}.light-blue{background-color:#edf7fe;color:#747474}.light-blue .span>a,.light-blue address>a,.light-blue em>a,.light-blue h1>a,.light-blue h2>a,.light-blue h3>a,.light-blue h4>a,.light-blue h5>a,.light-blue h6>a,.light-blue li>a,.light-blue p>a,.light-blue td>a{-webkit-transition:.2s color;transition:.2s color}.light-blue.separated{border-bottom-color:#a5d7fa}.light-blue .h1,.light-blue .h2,.light-blue .h3,.light-blue .h4,.light-blue .h5,.light-blue .h6,.light-blue h1,.light-blue h2,.light-blue h3,.light-blue h4,.light-blue h5,.light-blue h6{color:#000}.light-blue.jumbotron .h1,.light-blue.jumbotron h1{color:#343434}.light-blue.jumbotron .h2,.light-blue.jumbotron .h3,.light-blue.jumbotron .h4,.light-blue.jumbotron .h5,.light-blue.jumbotron .h6,.light-blue.jumbotron h2,.light-blue.jumbotron h3,.light-blue.jumbotron h4,.light-blue.jumbotron h5,.light-blue.jumbotron h6{color:#747474}.light-blue .span>a:active,.light-blue .span>a:link,.light-blue .span>a:visited,.light-blue address>a:active,.light-blue address>a:link,.light-blue address>a:visited,.light-blue em>a:active,.light-blue em>a:link,.light-blue em>a:visited,.light-blue h1>a:active,.light-blue h1>a:link,.light-blue h1>a:visited,.light-blue h2>a:active,.light-blue h2>a:link,.light-blue h2>a:visited,.light-blue h3>a:active,.light-blue h3>a:link,.light-blue h3>a:visited,.light-blue h4>a:active,.light-blue h4>a:link,.light-blue h4>a:visited,.light-blue h5>a:active,.light-blue h5>a:link,.light-blue h5>a:visited,.light-blue h6>a:active,.light-blue h6>a:link,.light-blue h6>a:visited,.light-blue li>a:active,.light-blue li>a:link,.light-blue li>a:visited,.light-blue p>a:active,.light-blue p>a:link,.light-blue p>a:visited,.light-blue td>a:active,.light-blue td>a:link,.light-blue td>a:visited{color:#0089bc}.light-blue .span>a:hover,.light-blue address>a:hover,.light-blue em>a:hover,.light-blue h1>a:hover,.light-blue h2>a:hover,.light-blue h3>a:hover,.light-blue h4>a:hover,.light-blue h5>a:hover,.light-blue h6>a:hover,.light-blue li>a:hover,.light-blue p>a:hover,.light-blue td>a:hover{color:#005170}.light-blue .span>a .glyphicon.tile,.light-blue address>a .glyphicon.tile,.light-blue em>a .glyphicon.tile,.light-blue h1>a .glyphicon.tile,.light-blue h2>a .glyphicon.tile,.light-blue h3>a .glyphicon.tile,.light-blue h4>a .glyphicon.tile,.light-blue h5>a .glyphicon.tile,.light-blue h6>a .glyphicon.tile,.light-blue li>a .glyphicon.tile,.light-blue p>a .glyphicon.tile,.light-blue td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-blue .span>a .glyphicon.tile:active,.light-blue .span>a .glyphicon.tile:hover,.light-blue address>a .glyphicon.tile:active,.light-blue address>a .glyphicon.tile:hover,.light-blue em>a .glyphicon.tile:active,.light-blue em>a .glyphicon.tile:hover,.light-blue h1>a .glyphicon.tile:active,.light-blue h1>a .glyphicon.tile:hover,.light-blue h2>a .glyphicon.tile:active,.light-blue h2>a .glyphicon.tile:hover,.light-blue h3>a .glyphicon.tile:active,.light-blue h3>a .glyphicon.tile:hover,.light-blue h4>a .glyphicon.tile:active,.light-blue h4>a .glyphicon.tile:hover,.light-blue h5>a .glyphicon.tile:active,.light-blue h5>a .glyphicon.tile:hover,.light-blue h6>a .glyphicon.tile:active,.light-blue h6>a .glyphicon.tile:hover,.light-blue li>a .glyphicon.tile:active,.light-blue li>a .glyphicon.tile:hover,.light-blue p>a .glyphicon.tile:active,.light-blue p>a .glyphicon.tile:hover,.light-blue td>a .glyphicon.tile:active,.light-blue td>a .glyphicon.tile:hover{color:#4e4e4e}.light-blue ul.nav-sidebar>li.active>a{color:#000}.light-blue ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.dark-purple .lead a,.hero .lead a,.hero-accent .lead a,.light-purple .lead a,.logo-bg-dark .lead a,.primary .lead a,.purple .lead a,.red .lead a{font-weight:300}.light-blue ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.light-blue ul.nav-sidebar>li>a:hover{color:#000}.light-blue ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.light-blue ul.dropdown-menu>li>a:hover{color:#fff}.light-blue.subnav{opacity:.96}.light-blue.subnav .navbar-brand,.light-blue.subnav .navbar-brand a{color:#000}.light-blue.subnav li>a{color:#aaa}.light-blue.subnav li>a.active{color:#000}.light-blue.subnav li>a:hover{color:#5b5b5b}.light-blue .sidebar strong,.light-blue.subnav .navbar-toggle{color:#000}.light-blue.subnav .navbar-toggle:hover{background-color:transparent}.light-blue.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-blue .sidebar a strong,.light-blue .sidebar a strong:active,.light-blue .sidebar a strong:link,.light-blue .sidebar a strong:visited{color:#0089bc}.light-blue .sidebar a strong:hover{color:#005170}.light-blue cite.bubble strong{color:#414141}.light-blue cite.bubble a:active,.light-blue cite.bubble a:link,.light-blue cite.bubble a:visited{color:#0089bc}.light-blue cite.bubble a:hover{color:#005170}.light-blue blockquote,.light-blue blockquote p,.light-blue blockquote ul>li{color:#747474}.red{background-color:#d7594c;color:#fff}.red .span>a,.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{-webkit-transition:.2s color;transition:.2s color}.red.separated{border-bottom-color:#af3428}.red .h1,.red .h2,.red .h3,.red .h4,.red .h5,.red .h6,.red h1,.red h2,.red h3,.red h4,.red h5,.red h6{color:#fff}.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{color:#fff;text-decoration:underline}.purple .nav li>a,.purple .span>a:active,.purple .span>a:hover,.purple address>a:active,.purple address>a:hover,.purple em>a:active,.purple em>a:hover,.purple h1>a:active,.purple h1>a:hover,.purple h2>a:active,.purple h2>a:hover,.purple h3>a:active,.purple h3>a:hover,.purple h4>a:active,.purple h4>a:hover,.purple h5>a:active,.purple h5>a:hover,.purple h6>a:active,.purple h6>a:hover,.purple li>a:active,.purple li>a:hover,.purple p>a:active,.purple p>a:hover,.purple td>a:active,.purple td>a:hover,.red address>a:hover,.red em>a:hover,.red h1>a:hover,.red h2>a:hover,.red h3>a:hover,.red h4>a:hover,.red h5>a:hover,.red h6>a:hover,.red li>a:hover,.red p>a:hover,.red td>a:hover,.red.subnav .navbar-brand a{text-decoration:none}.red.subnav .navbar-brand{color:#fff}.red.subnav li>a{color:#f1c5c1}.red.subnav li>a.active,.red.subnav li>a:hover{color:#fff}.red.subnav .navbar-toggle{color:#9a2e23}.red.subnav .navbar-toggle:hover{background-color:transparent}.red.subnav .navbar-collapse{border-top-color:#9a2e23}.red.subnav .subnav-divider{border-bottom:1px solid #d7594c}.red .form-control{border:0!important}.purple{background-color:#c67fcf;color:#fff}.purple .span>a,.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{-webkit-transition:.2s color;transition:.2s color}.purple.separated{border-bottom-color:#ad47ba}.purple .h1,.purple .h2,.purple .h3,.purple .h4,.purple .h5,.purple .h6,.purple h1,.purple h2,.purple h3,.purple h4,.purple h5,.purple h6{color:#fff}.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{color:#fff;text-decoration:underline}.dark-purple .nav li>a,.dark-purple .span>a:active,.dark-purple .span>a:hover,.dark-purple address>a:active,.dark-purple address>a:hover,.dark-purple em>a:active,.dark-purple em>a:hover,.dark-purple h1>a:active,.dark-purple h1>a:hover,.dark-purple h2>a:active,.dark-purple h2>a:hover,.dark-purple h3>a:active,.dark-purple h3>a:hover,.dark-purple h4>a:active,.dark-purple h4>a:hover,.dark-purple h5>a:active,.dark-purple h5>a:hover,.dark-purple h6>a:active,.dark-purple h6>a:hover,.dark-purple li>a:active,.dark-purple li>a:hover,.dark-purple p>a:active,.dark-purple p>a:hover,.dark-purple td>a:active,.dark-purple td>a:hover,.purple address>a:hover,.purple em>a:hover,.purple h1>a:hover,.purple h2>a:hover,.purple h3>a:hover,.purple h4>a:hover,.purple h5>a:hover,.purple h6>a:hover,.purple li>a:hover,.purple p>a:hover,.purple td>a:hover,.purple.subnav .navbar-brand a{text-decoration:none}.purple.subnav .navbar-brand{color:#fff}.purple.subnav li>a{color:#f4e7f6}.purple.subnav li>a.active,.purple.subnav li>a:hover{color:#fff}.purple.subnav .navbar-toggle{color:#9d3fa9}.purple.subnav .navbar-toggle:hover{background-color:transparent}.purple.subnav .navbar-collapse{border-top-color:#9d3fa9}.purple.subnav .subnav-divider{border-bottom:1px solid #c67fcf}.purple .form-control{border:0!important}.dark-purple{background-color:#be6cc8;color:#fff}.dark-purple .span>a,.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{-webkit-transition:.2s color;transition:.2s color}.dark-purple.separated{border-bottom-color:#9d3fa9}.dark-purple .h1,.dark-purple .h2,.dark-purple .h3,.dark-purple .h4,.dark-purple .h5,.dark-purple .h6,.dark-purple h1,.dark-purple h2,.dark-purple h3,.dark-purple h4,.dark-purple h5,.dark-purple h6{color:#fff}.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{color:#fff;text-decoration:underline}.dark-purple address>a:hover,.dark-purple em>a:hover,.dark-purple h1>a:hover,.dark-purple h2>a:hover,.dark-purple h3>a:hover,.dark-purple h4>a:hover,.dark-purple h5>a:hover,.dark-purple h6>a:hover,.dark-purple li>a:hover,.dark-purple p>a:hover,.dark-purple td>a:hover,.dark-purple.subnav .navbar-brand a,.light-purple .nav li>a,.light-purple .span>a:active,.light-purple .span>a:hover,.light-purple address>a:active,.light-purple address>a:hover,.light-purple em>a:active,.light-purple em>a:hover,.light-purple h1>a:active,.light-purple h1>a:hover,.light-purple h2>a:active,.light-purple h2>a:hover,.light-purple h3>a:active,.light-purple h3>a:hover,.light-purple h4>a:active,.light-purple h4>a:hover,.light-purple h5>a:active,.light-purple h5>a:hover,.light-purple h6>a:active,.light-purple h6>a:hover,.light-purple li>a:active,.light-purple li>a:hover,.light-purple p>a:active,.light-purple p>a:hover,.light-purple td>a:active,.light-purple td>a:hover{text-decoration:none}.dark-purple.subnav .navbar-brand{color:#fff}.dark-purple.subnav li>a{color:#ecd4ef}.dark-purple.subnav li>a.active,.dark-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle{color:#8c3896}.dark-purple.subnav .navbar-toggle:hover{background-color:transparent}.dark-purple.subnav .navbar-collapse{border-top-color:#8c3896}.dark-purple.subnav .subnav-divider{border-bottom:1px solid #be6cc8}.dark-purple .form-control{border:0!important}.light-purple{background-color:#eed8f0;color:#fff}.light-purple .span>a,.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{-webkit-transition:.2s color;transition:.2s color}.light-purple.separated{border-bottom-color:#d5a0dc}.light-purple .h1,.light-purple .h2,.light-purple .h3,.light-purple .h4,.light-purple .h5,.light-purple .h6,.light-purple h1,.light-purple h2,.light-purple h3,.light-purple h4,.light-purple h5,.light-purple h6{color:#fff}.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{color:#fff;text-decoration:underline}.light-purple address>a:hover,.light-purple em>a:hover,.light-purple h1>a:hover,.light-purple h2>a:hover,.light-purple h3>a:hover,.light-purple h4>a:hover,.light-purple h5>a:hover,.light-purple h6>a:hover,.light-purple li>a:hover,.light-purple p>a:hover,.light-purple td>a:hover{text-decoration:none}.light-purple.subnav .navbar-brand{color:#fff}.light-purple.subnav .navbar-brand a{text-decoration:none}.light-purple.subnav li>a,.light-purple.subnav li>a.active,.light-purple.subnav li>a:hover{color:#fff}.light-purple.subnav .navbar-toggle{color:#cd8ed5}.light-purple.subnav .navbar-toggle:hover{background-color:transparent}.light-purple.subnav .navbar-collapse{border-top-color:#cd8ed5}.light-purple.subnav .subnav-divider{border-bottom:1px solid #eed8f0}.light-purple .form-control{border:0!important}.dark{background-color:#161616;color:#444}.dark a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.dark-less a,.dark-moar a{-webkit-transition:.2s all}.dark a:active,.dark a:hover{color:#f2f2f2;text-decoration:none}.dark-moar{color:#444;background-color:#0a0a0a}.dark-moar a{transition:.2s all;color:#a6a6a6}.dark-moar a:active,.dark-moar a:hover{color:#f2f2f2;text-decoration:none}.dark-less{background-color:#222;color:#fff}.dark-less a{transition:.2s all;color:#a6a6a6}.dark-less a:active,.dark-less a:hover{color:#f2f2f2;text-decoration:none}.charcoal{color:#444;background-color:#353535}.charcoal a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.charcoal a:active,.charcoal a:hover{color:#f2f2f2;text-decoration:none}.logo-bg-dark{background-color:#2d3339;color:#fff}.logo-bg-dark .span>a,.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{-webkit-transition:.2s color;transition:.2s color}.logo-bg-dark .nav li>a,.logo-bg-dark .span>a:active,.logo-bg-dark .span>a:hover,.logo-bg-dark address>a:active,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:active,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:active,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:active,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:active,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:active,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:active,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:active,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:active,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:active,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:active,.logo-bg-dark td>a:hover{text-decoration:none}.logo-bg-dark.separated{border-bottom-color:#0b0d0e}.logo-bg-dark .h1,.logo-bg-dark .h2,.logo-bg-dark .h3,.logo-bg-dark .h4,.logo-bg-dark .h5,.logo-bg-dark .h6,.logo-bg-dark h1,.logo-bg-dark h2,.logo-bg-dark h3,.logo-bg-dark h4,.logo-bg-dark h5,.logo-bg-dark h6{color:#fff}.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{color:#fff;text-decoration:underline}.hero .nav li>a,.hero .span>a:active,.hero .span>a:hover,.hero address>a:active,.hero address>a:hover,.hero em>a:active,.hero em>a:hover,.hero h1>a:active,.hero h1>a:hover,.hero h2>a:active,.hero h2>a:hover,.hero h3>a:active,.hero h3>a:hover,.hero h4>a:active,.hero h4>a:hover,.hero h5>a:active,.hero h5>a:hover,.hero h6>a:active,.hero h6>a:hover,.hero li>a:active,.hero li>a:hover,.hero p>a:active,.hero p>a:hover,.hero td>a:active,.hero td>a:hover,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:hover,.logo-bg-dark.subnav .navbar-brand a{text-decoration:none}.logo-bg-dark.subnav .navbar-brand{color:#fff}.logo-bg-dark.subnav li>a{color:#6c7a89}.logo-bg-dark.subnav li>a.active,.logo-bg-dark.subnav li>a:hover{color:#fff}.logo-bg-dark.subnav .navbar-toggle{color:#000}.logo-bg-dark.subnav .navbar-toggle:hover{background-color:transparent}.logo-bg-dark.subnav .navbar-collapse{border-top-color:#000}.logo-bg-dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}.logo-bg-dark .form-control{border:0!important}.hero{background-color:#3BB878;color:#fff}.hero .span>a,.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{-webkit-transition:.2s color;transition:.2s color}.hero.separated{border-bottom-color:#287e52}.hero .h1,.hero .h2,.hero .h3,.hero .h4,.hero .h5,.hero .h6,.hero h1,.hero h2,.hero h3,.hero h4,.hero h5,.hero h6{color:#fff}.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{color:#fff;text-decoration:underline}.hero address>a:hover,.hero em>a:hover,.hero h1>a:hover,.hero h2>a:hover,.hero h3>a:hover,.hero h4>a:hover,.hero h5>a:hover,.hero h6>a:hover,.hero li>a:hover,.hero p>a:hover,.hero td>a:hover,.hero-accent .nav li>a,.hero-accent .span>a:active,.hero-accent .span>a:hover,.hero-accent address>a:active,.hero-accent address>a:hover,.hero-accent em>a:active,.hero-accent em>a:hover,.hero-accent h1>a:active,.hero-accent h1>a:hover,.hero-accent h2>a:active,.hero-accent h2>a:hover,.hero-accent h3>a:active,.hero-accent h3>a:hover,.hero-accent h4>a:active,.hero-accent h4>a:hover,.hero-accent h5>a:active,.hero-accent h5>a:hover,.hero-accent h6>a:active,.hero-accent h6>a:hover,.hero-accent li>a:active,.hero-accent li>a:hover,.hero-accent p>a:active,.hero-accent p>a:hover,.hero-accent td>a:active,.hero-accent td>a:hover,.hero.subnav .navbar-brand a{text-decoration:none}.hero.subnav .navbar-brand{color:#fff}.hero.subnav li>a{color:#a1e1c0}.hero.subnav li>a.active,.hero.subnav li>a:hover{color:#fff}.hero.subnav .navbar-toggle{color:#226b46}.hero.subnav .navbar-toggle:hover{background-color:transparent}.hero.subnav .navbar-collapse{border-top-color:#226b46}.hero.subnav .subnav-divider{border-bottom:1px solid #3BB878}.hero .form-control{border:0!important}.hero-accent{background-color:#35a56b;color:#fff}.hero-accent .span>a,.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{-webkit-transition:.2s color;transition:.2s color}.hero-accent.separated{border-bottom-color:#226b46}.hero-accent .h1,.hero-accent .h2,.hero-accent .h3,.hero-accent .h4,.hero-accent .h5,.hero-accent .h6,.hero-accent h1,.hero-accent h2,.hero-accent h3,.hero-accent h4,.hero-accent h5,.hero-accent h6{color:#fff}.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{color:#fff;text-decoration:underline}.alt .nav li>a,.alt .span>a:active,.alt .span>a:hover,.alt address>a:active,.alt address>a:hover,.alt em>a:active,.alt em>a:hover,.alt h1>a:active,.alt h1>a:hover,.alt h2>a:active,.alt h2>a:hover,.alt h3>a:active,.alt h3>a:hover,.alt h4>a:active,.alt h4>a:hover,.alt h5>a:active,.alt h5>a:hover,.alt h6>a:active,.alt h6>a:hover,.alt li>a:active,.alt li>a:hover,.alt p>a:active,.alt p>a:hover,.alt td>a:active,.alt td>a:hover,.alt ul.dropdown-menu>li>a:link,.alt.subnav .navbar-brand a,.bold .nav li>a,.bold .span>a:active,.bold .span>a:hover,.bold address>a:active,.bold address>a:hover,.bold em>a:active,.bold em>a:hover,.bold h1>a:active,.bold h1>a:hover,.bold h2>a:active,.bold h2>a:hover,.bold h3>a:active,.bold h3>a:hover,.bold h4>a:active,.bold h4>a:hover,.bold h5>a:active,.bold h5>a:hover,.bold h6>a:active,.bold h6>a:hover,.bold li>a:active,.bold li>a:hover,.bold p>a:active,.bold p>a:hover,.bold td>a:active,.bold td>a:hover,.hero-accent address>a:hover,.hero-accent em>a:hover,.hero-accent h1>a:hover,.hero-accent h2>a:hover,.hero-accent h3>a:hover,.hero-accent h4>a:hover,.hero-accent h5>a:hover,.hero-accent h6>a:hover,.hero-accent li>a:hover,.hero-accent p>a:hover,.hero-accent td>a:hover,.hero-accent.subnav .navbar-brand a,.primary .nav li>a,.primary .span>a:active,.primary .span>a:hover,.primary address>a:active,.primary address>a:hover,.primary em>a:active,.primary em>a:hover,.primary h1>a:active,.primary h1>a:hover,.primary h2>a:active,.primary h2>a:hover,.primary h3>a:active,.primary h3>a:hover,.primary h4>a:active,.primary h4>a:hover,.primary h5>a:active,.primary h5>a:hover,.primary h6>a:active,.primary h6>a:hover,.primary li>a:active,.primary li>a:hover,.primary p>a:active,.primary p>a:hover,.primary td>a:active,.primary td>a:hover,.primary ul.dropdown-menu>li>a:link,.primary.subnav .navbar-brand a{text-decoration:none}.hero-accent.subnav .navbar-brand{color:#fff}.hero-accent.subnav li>a{color:#8edbb3}.hero-accent.subnav li>a.active,.hero-accent.subnav li>a:hover{color:#fff}.hero-accent.subnav .navbar-toggle{color:#1c5739}.hero-accent.subnav .navbar-toggle:hover{background-color:transparent}.hero-accent.subnav .navbar-collapse{border-top-color:#1c5739}.hero-accent.subnav .subnav-divider{border-bottom:1px solid #35a56b}.hero-accent .form-control{border:0!important}.alt.subnav .navbar-collapse,.doc-sidebar-inner.subnav .navbar-collapse,.neutral.subnav .navbar-collapse,.primary.subnav .navbar-collapse,.resumator-basic-widget .resumator-job-title,div.logo-tile.subnav .navbar-collapse{border-top-color:#e7e6e6}.primary{background-color:#fff;color:#747474}.primary .span>a,.primary address>a,.primary em>a,.primary h1>a,.primary h2>a,.primary h3>a,.primary h4>a,.primary h5>a,.primary h6>a,.primary li>a,.primary p>a,.primary td>a{-webkit-transition:.2s color;transition:.2s color}.primary.separated{border-bottom-color:#d9d9d9}.primary .h1,.primary .h2,.primary .h3,.primary .h4,.primary .h5,.primary .h6,.primary h1,.primary h2,.primary h3,.primary h4,.primary h5,.primary h6{color:#000}.primary.jumbotron .h1,.primary.jumbotron h1{color:#343434}.primary.jumbotron .h2,.primary.jumbotron .h3,.primary.jumbotron .h4,.primary.jumbotron .h5,.primary.jumbotron .h6,.primary.jumbotron h2,.primary.jumbotron h3,.primary.jumbotron h4,.primary.jumbotron h5,.primary.jumbotron h6{color:#747474}.primary .span>a:active,.primary .span>a:link,.primary .span>a:visited,.primary address>a:active,.primary address>a:link,.primary address>a:visited,.primary em>a:active,.primary em>a:link,.primary em>a:visited,.primary h1>a:active,.primary h1>a:link,.primary h1>a:visited,.primary h2>a:active,.primary h2>a:link,.primary h2>a:visited,.primary h3>a:active,.primary h3>a:link,.primary h3>a:visited,.primary h4>a:active,.primary h4>a:link,.primary h4>a:visited,.primary h5>a:active,.primary h5>a:link,.primary h5>a:visited,.primary h6>a:active,.primary h6>a:link,.primary h6>a:visited,.primary li>a:active,.primary li>a:link,.primary li>a:visited,.primary p>a:active,.primary p>a:link,.primary p>a:visited,.primary td>a:active,.primary td>a:link,.primary td>a:visited{color:#0089bc}.primary .span>a:hover,.primary address>a:hover,.primary em>a:hover,.primary h1>a:hover,.primary h2>a:hover,.primary h3>a:hover,.primary h4>a:hover,.primary h5>a:hover,.primary h6>a:hover,.primary li>a:hover,.primary p>a:hover,.primary td>a:hover{color:#005170}.primary .span>a .glyphicon.tile,.primary address>a .glyphicon.tile,.primary em>a .glyphicon.tile,.primary h1>a .glyphicon.tile,.primary h2>a .glyphicon.tile,.primary h3>a .glyphicon.tile,.primary h4>a .glyphicon.tile,.primary h5>a .glyphicon.tile,.primary h6>a .glyphicon.tile,.primary li>a .glyphicon.tile,.primary p>a .glyphicon.tile,.primary td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.primary .span>a .glyphicon.tile:active,.primary .span>a .glyphicon.tile:hover,.primary address>a .glyphicon.tile:active,.primary address>a .glyphicon.tile:hover,.primary em>a .glyphicon.tile:active,.primary em>a .glyphicon.tile:hover,.primary h1>a .glyphicon.tile:active,.primary h1>a .glyphicon.tile:hover,.primary h2>a .glyphicon.tile:active,.primary h2>a .glyphicon.tile:hover,.primary h3>a .glyphicon.tile:active,.primary h3>a .glyphicon.tile:hover,.primary h4>a .glyphicon.tile:active,.primary h4>a .glyphicon.tile:hover,.primary h5>a .glyphicon.tile:active,.primary h5>a .glyphicon.tile:hover,.primary h6>a .glyphicon.tile:active,.primary h6>a .glyphicon.tile:hover,.primary li>a .glyphicon.tile:active,.primary li>a .glyphicon.tile:hover,.primary p>a .glyphicon.tile:active,.primary p>a .glyphicon.tile:hover,.primary td>a .glyphicon.tile:active,.primary td>a .glyphicon.tile:hover{color:#4e4e4e}.primary ul.nav-sidebar>li.active>a{color:#000}.primary ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.primary ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.primary ul.nav-sidebar>li>a:hover{color:#000}.primary ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.primary ul.dropdown-menu>li>a:hover{color:#fff}.primary.subnav{opacity:.96}.primary.subnav .navbar-brand,.primary.subnav .navbar-brand a{color:#000}.primary.subnav li>a{color:#aaa}.primary.subnav li>a.active{color:#000}.primary.subnav li>a:hover{color:#5b5b5b}.primary .sidebar strong,.primary.subnav .navbar-toggle{color:#000}.primary.subnav .navbar-toggle:hover{background-color:transparent}.primary.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.primary .sidebar a strong,.primary .sidebar a strong:active,.primary .sidebar a strong:link,.primary .sidebar a strong:visited{color:#0089bc}.primary .sidebar a strong:hover{color:#005170}.primary cite.bubble strong{color:#414141}.primary cite.bubble a:active,.primary cite.bubble a:link,.primary cite.bubble a:visited{color:#0089bc}.primary cite.bubble a:hover{color:#005170}.alt,.primary blockquote,.primary blockquote p,.primary blockquote ul>li{color:#747474}.alt{background-color:#edf7fe}.alt .lead a{font-weight:300}.alt .span>a,.alt address>a,.alt em>a,.alt h1>a,.alt h2>a,.alt h3>a,.alt h4>a,.alt h5>a,.alt h6>a,.alt li>a,.alt p>a,.alt td>a{-webkit-transition:.2s color;transition:.2s color}.alt.separated{border-bottom-color:#a5d7fa}.alt .h1,.alt .h2,.alt .h3,.alt .h4,.alt .h5,.alt .h6,.alt h1,.alt h2,.alt h3,.alt h4,.alt h5,.alt h6{color:#000}.alt.jumbotron .h1,.alt.jumbotron h1{color:#343434}.alt.jumbotron .h2,.alt.jumbotron .h3,.alt.jumbotron .h4,.alt.jumbotron .h5,.alt.jumbotron .h6,.alt.jumbotron h2,.alt.jumbotron h3,.alt.jumbotron h4,.alt.jumbotron h5,.alt.jumbotron h6{color:#747474}.alt .span>a:active,.alt .span>a:link,.alt .span>a:visited,.alt address>a:active,.alt address>a:link,.alt address>a:visited,.alt em>a:active,.alt em>a:link,.alt em>a:visited,.alt h1>a:active,.alt h1>a:link,.alt h1>a:visited,.alt h2>a:active,.alt h2>a:link,.alt h2>a:visited,.alt h3>a:active,.alt h3>a:link,.alt h3>a:visited,.alt h4>a:active,.alt h4>a:link,.alt h4>a:visited,.alt h5>a:active,.alt h5>a:link,.alt h5>a:visited,.alt h6>a:active,.alt h6>a:link,.alt h6>a:visited,.alt li>a:active,.alt li>a:link,.alt li>a:visited,.alt p>a:active,.alt p>a:link,.alt p>a:visited,.alt td>a:active,.alt td>a:link,.alt td>a:visited{color:#0089bc}.alt .span>a:hover,.alt address>a:hover,.alt em>a:hover,.alt h1>a:hover,.alt h2>a:hover,.alt h3>a:hover,.alt h4>a:hover,.alt h5>a:hover,.alt h6>a:hover,.alt li>a:hover,.alt p>a:hover,.alt td>a:hover{color:#005170}.alt .span>a .glyphicon.tile,.alt address>a .glyphicon.tile,.alt em>a .glyphicon.tile,.alt h1>a .glyphicon.tile,.alt h2>a .glyphicon.tile,.alt h3>a .glyphicon.tile,.alt h4>a .glyphicon.tile,.alt h5>a .glyphicon.tile,.alt h6>a .glyphicon.tile,.alt li>a .glyphicon.tile,.alt p>a .glyphicon.tile,.alt td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.alt .span>a .glyphicon.tile:active,.alt .span>a .glyphicon.tile:hover,.alt address>a .glyphicon.tile:active,.alt address>a .glyphicon.tile:hover,.alt em>a .glyphicon.tile:active,.alt em>a .glyphicon.tile:hover,.alt h1>a .glyphicon.tile:active,.alt h1>a .glyphicon.tile:hover,.alt h2>a .glyphicon.tile:active,.alt h2>a .glyphicon.tile:hover,.alt h3>a .glyphicon.tile:active,.alt h3>a .glyphicon.tile:hover,.alt h4>a .glyphicon.tile:active,.alt h4>a .glyphicon.tile:hover,.alt h5>a .glyphicon.tile:active,.alt h5>a .glyphicon.tile:hover,.alt h6>a .glyphicon.tile:active,.alt h6>a .glyphicon.tile:hover,.alt li>a .glyphicon.tile:active,.alt li>a .glyphicon.tile:hover,.alt p>a .glyphicon.tile:active,.alt p>a .glyphicon.tile:hover,.alt td>a .glyphicon.tile:active,.alt td>a .glyphicon.tile:hover{color:#4e4e4e}.alt ul.nav-sidebar>li.active>a{color:#000}.alt ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.accent .lead a,.bold .lead a,.neutral .lead a{font-weight:300}.alt ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.alt ul.nav-sidebar>li>a:hover{color:#000}.alt ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.alt ul.dropdown-menu>li>a:hover{color:#fff}.alt.subnav{opacity:.96}.alt.subnav .navbar-brand,.alt.subnav .navbar-brand a{color:#000}.alt.subnav li>a{color:#aaa}.alt.subnav li>a.active{color:#000}.alt.subnav li>a:hover{color:#5b5b5b}.alt .sidebar strong,.alt.subnav .navbar-toggle{color:#000}.alt.subnav .navbar-toggle:hover{background-color:transparent}.alt.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.alt .sidebar a strong,.alt .sidebar a strong:active,.alt .sidebar a strong:link,.alt .sidebar a strong:visited{color:#0089bc}.alt .sidebar a strong:hover{color:#005170}.alt cite.bubble strong{color:#414141}.alt cite.bubble a:active,.alt cite.bubble a:link,.alt cite.bubble a:visited{color:#0089bc}.alt cite.bubble a:hover{color:#005170}.alt blockquote,.alt blockquote p,.alt blockquote ul>li{color:#747474}.bold{background-color:#2d3339;color:#fff}.bold .span>a,.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{-webkit-transition:.2s color;transition:.2s color}.bold.separated{border-bottom-color:#0b0d0e}.bold .h1,.bold .h2,.bold .h3,.bold .h4,.bold .h5,.bold .h6,.bold h1,.bold h2,.bold h3,.bold h4,.bold h5,.bold h6{color:#fff}.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{color:#fff;text-decoration:underline}.accent .nav li>a,.accent .span>a:active,.accent .span>a:hover,.accent address>a:active,.accent address>a:hover,.accent em>a:active,.accent em>a:hover,.accent h1>a:active,.accent h1>a:hover,.accent h2>a:active,.accent h2>a:hover,.accent h3>a:active,.accent h3>a:hover,.accent h4>a:active,.accent h4>a:hover,.accent h5>a:active,.accent h5>a:hover,.accent h6>a:active,.accent h6>a:hover,.accent li>a:active,.accent li>a:hover,.accent p>a:active,.accent p>a:hover,.accent td>a:active,.accent td>a:hover,.bold address>a:hover,.bold em>a:hover,.bold h1>a:hover,.bold h2>a:hover,.bold h3>a:hover,.bold h4>a:hover,.bold h5>a:hover,.bold h6>a:hover,.bold li>a:hover,.bold p>a:hover,.bold td>a:hover,.bold.subnav .navbar-brand a{text-decoration:none}.bold.subnav .navbar-brand{color:#fff}.bold.subnav li>a{color:#6c7a89}.bold.subnav li>a.active,.bold.subnav li>a:hover{color:#fff}.bold.subnav .navbar-toggle{color:#000}.bold.subnav .navbar-toggle:hover{background-color:transparent}.bold.subnav .navbar-collapse{border-top-color:#000}.bold.subnav .subnav-divider{border-bottom:1px solid #2d3339}.bold .form-control{border:0!important}.accent{background-color:#00aeef;color:#fff}.accent .span>a,.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{-webkit-transition:.2s color;transition:.2s color}.accent.separated{border-bottom-color:#0076a3}.accent .h1,.accent .h2,.accent .h3,.accent .h4,.accent .h5,.accent .h6,.accent h1,.accent h2,.accent h3,.accent h4,.accent h5,.accent h6{color:#fff}.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{color:#fff;text-decoration:underline}.accent address>a:hover,.accent em>a:hover,.accent h1>a:hover,.accent h2>a:hover,.accent h3>a:hover,.accent h4>a:hover,.accent h5>a:hover,.accent h6>a:hover,.accent li>a:hover,.accent p>a:hover,.accent td>a:hover,.accent.subnav .navbar-brand a,.neutral .nav li>a,.neutral .span>a:active,.neutral .span>a:hover,.neutral address>a:active,.neutral address>a:hover,.neutral em>a:active,.neutral em>a:hover,.neutral h1>a:active,.neutral h1>a:hover,.neutral h2>a:active,.neutral h2>a:hover,.neutral h3>a:active,.neutral h3>a:hover,.neutral h4>a:active,.neutral h4>a:hover,.neutral h5>a:active,.neutral h5>a:hover,.neutral h6>a:active,.neutral h6>a:hover,.neutral li>a:active,.neutral li>a:hover,.neutral p>a:active,.neutral p>a:hover,.neutral td>a:active,.neutral td>a:hover,.neutral ul.dropdown-menu>li>a:link,.neutral.subnav .navbar-brand a,.smart .nav li>a,.smart .span>a:active,.smart .span>a:hover,.smart address>a:active,.smart address>a:hover,.smart em>a:active,.smart em>a:hover,.smart h1>a:active,.smart h1>a:hover,.smart h2>a:active,.smart h2>a:hover,.smart h3>a:active,.smart h3>a:hover,.smart h4>a:active,.smart h4>a:hover,.smart h5>a:active,.smart h5>a:hover,.smart h6>a:active,.smart h6>a:hover,.smart li>a:active,.smart li>a:hover,.smart p>a:active,.smart p>a:hover,.smart td>a:active,.smart td>a:hover{text-decoration:none}.accent.subnav .navbar-brand{color:#fff}.accent.subnav li>a{color:#7fdcff}.accent.subnav li>a.active,.accent.subnav li>a:hover{color:#fff}.accent.subnav .navbar-toggle{color:#006489}.accent.subnav .navbar-toggle:hover{background-color:transparent}.accent.subnav .navbar-collapse{border-top-color:#006489}.accent.subnav .subnav-divider{border-bottom:1px solid #00aeef}.accent .form-control{border:0!important}.neutral{background-color:#ebeff0;color:#747474}.neutral .span>a,.neutral address>a,.neutral em>a,.neutral h1>a,.neutral h2>a,.neutral h3>a,.neutral h4>a,.neutral h5>a,.neutral h6>a,.neutral li>a,.neutral p>a,.neutral td>a{-webkit-transition:.2s color;transition:.2s color}.neutral.separated{border-bottom-color:#bfcccf}.neutral .h1,.neutral .h2,.neutral .h3,.neutral .h4,.neutral .h5,.neutral .h6,.neutral h1,.neutral h2,.neutral h3,.neutral h4,.neutral h5,.neutral h6{color:#000}.neutral.jumbotron .h1,.neutral.jumbotron h1{color:#343434}.neutral.jumbotron .h2,.neutral.jumbotron .h3,.neutral.jumbotron .h4,.neutral.jumbotron .h5,.neutral.jumbotron .h6,.neutral.jumbotron h2,.neutral.jumbotron h3,.neutral.jumbotron h4,.neutral.jumbotron h5,.neutral.jumbotron h6{color:#747474}.neutral .span>a:active,.neutral .span>a:link,.neutral .span>a:visited,.neutral address>a:active,.neutral address>a:link,.neutral address>a:visited,.neutral em>a:active,.neutral em>a:link,.neutral em>a:visited,.neutral h1>a:active,.neutral h1>a:link,.neutral h1>a:visited,.neutral h2>a:active,.neutral h2>a:link,.neutral h2>a:visited,.neutral h3>a:active,.neutral h3>a:link,.neutral h3>a:visited,.neutral h4>a:active,.neutral h4>a:link,.neutral h4>a:visited,.neutral h5>a:active,.neutral h5>a:link,.neutral h5>a:visited,.neutral h6>a:active,.neutral h6>a:link,.neutral h6>a:visited,.neutral li>a:active,.neutral li>a:link,.neutral li>a:visited,.neutral p>a:active,.neutral p>a:link,.neutral p>a:visited,.neutral td>a:active,.neutral td>a:link,.neutral td>a:visited{color:#0089bc}.neutral .span>a:hover,.neutral address>a:hover,.neutral em>a:hover,.neutral h1>a:hover,.neutral h2>a:hover,.neutral h3>a:hover,.neutral h4>a:hover,.neutral h5>a:hover,.neutral h6>a:hover,.neutral li>a:hover,.neutral p>a:hover,.neutral td>a:hover{color:#005170}.neutral .span>a .glyphicon.tile,.neutral address>a .glyphicon.tile,.neutral em>a .glyphicon.tile,.neutral h1>a .glyphicon.tile,.neutral h2>a .glyphicon.tile,.neutral h3>a .glyphicon.tile,.neutral h4>a .glyphicon.tile,.neutral h5>a .glyphicon.tile,.neutral h6>a .glyphicon.tile,.neutral li>a .glyphicon.tile,.neutral p>a .glyphicon.tile,.neutral td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.neutral .span>a .glyphicon.tile:active,.neutral .span>a .glyphicon.tile:hover,.neutral address>a .glyphicon.tile:active,.neutral address>a .glyphicon.tile:hover,.neutral em>a .glyphicon.tile:active,.neutral em>a .glyphicon.tile:hover,.neutral h1>a .glyphicon.tile:active,.neutral h1>a .glyphicon.tile:hover,.neutral h2>a .glyphicon.tile:active,.neutral h2>a .glyphicon.tile:hover,.neutral h3>a .glyphicon.tile:active,.neutral h3>a .glyphicon.tile:hover,.neutral h4>a .glyphicon.tile:active,.neutral h4>a .glyphicon.tile:hover,.neutral h5>a .glyphicon.tile:active,.neutral h5>a .glyphicon.tile:hover,.neutral h6>a .glyphicon.tile:active,.neutral h6>a .glyphicon.tile:hover,.neutral li>a .glyphicon.tile:active,.neutral li>a .glyphicon.tile:hover,.neutral p>a .glyphicon.tile:active,.neutral p>a .glyphicon.tile:hover,.neutral td>a .glyphicon.tile:active,.neutral td>a .glyphicon.tile:hover{color:#4e4e4e}.neutral ul.nav-sidebar>li.active>a{color:#000}.neutral ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.neutral ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.neutral ul.nav-sidebar>li>a:hover{color:#000}.neutral ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.neutral ul.dropdown-menu>li>a:hover{color:#fff}.neutral.subnav{opacity:.96}.neutral.subnav .navbar-brand,.neutral.subnav .navbar-brand a{color:#000}.neutral.subnav li>a{color:#aaa}.neutral.subnav li>a.active{color:#000}.neutral.subnav li>a:hover{color:#5b5b5b}.neutral .sidebar strong,.neutral.subnav .navbar-toggle{color:#000}.neutral.subnav .navbar-toggle:hover{background-color:transparent}.neutral.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.neutral .sidebar a strong,.neutral .sidebar a strong:active,.neutral .sidebar a strong:link,.neutral .sidebar a strong:visited{color:#0089bc}.neutral .sidebar a strong:hover{color:#005170}.neutral cite.bubble strong{color:#414141}.neutral cite.bubble a:active,.neutral cite.bubble a:link,.neutral cite.bubble a:visited{color:#0089bc}.neutral cite.bubble a:hover{color:#005170}.neutral blockquote,.neutral blockquote p,.neutral blockquote ul>li{color:#747474}.smart{background-color:#2d8ec6;color:#fff}.smart .lead a{font-weight:300}.smart .span>a,.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{-webkit-transition:.2s color;transition:.2s color}.smart.separated{border-bottom-color:#1f6188}.smart .h1,.smart .h2,.smart .h3,.smart .h4,.smart .h5,.smart .h6,.smart h1,.smart h2,.smart h3,.smart h4,.smart h5,.smart h6{color:#fff}.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{color:#fff;text-decoration:underline}.smart address>a:hover,.smart em>a:hover,.smart h1>a:hover,.smart h2>a:hover,.smart h3>a:hover,.smart h4>a:hover,.smart h5>a:hover,.smart h6>a:hover,.smart li>a:hover,.smart p>a:hover,.smart td>a:hover,.smart.subnav .navbar-brand a,div.logo-tile .nav li>a,div.logo-tile .span>a:active,div.logo-tile .span>a:hover,div.logo-tile address>a:active,div.logo-tile address>a:hover,div.logo-tile em>a:active,div.logo-tile em>a:hover,div.logo-tile h1>a:active,div.logo-tile h1>a:hover,div.logo-tile h2>a:active,div.logo-tile h2>a:hover,div.logo-tile h3>a:active,div.logo-tile h3>a:hover,div.logo-tile h4>a:active,div.logo-tile h4>a:hover,div.logo-tile h5>a:active,div.logo-tile h5>a:hover,div.logo-tile h6>a:active,div.logo-tile h6>a:hover,div.logo-tile li>a:active,div.logo-tile li>a:hover,div.logo-tile p>a:active,div.logo-tile p>a:hover,div.logo-tile td>a:active,div.logo-tile td>a:hover,div.logo-tile ul.dropdown-menu>li>a:link,div.logo-tile.dark .nav li>a,div.logo-tile.dark .span>a:active,div.logo-tile.dark .span>a:hover,div.logo-tile.dark address>a:active,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:active,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:active,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:active,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:active,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:active,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:active,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:active,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:active,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:active,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:active,div.logo-tile.dark td>a:hover,div.logo-tile.subnav .navbar-brand a{text-decoration:none}.smart.subnav .navbar-brand{color:#fff}.smart.subnav li>a{color:#9acbe8}.smart.subnav li>a.active,.smart.subnav li>a:hover{color:#fff}.smart.subnav .navbar-toggle{color:#1a5273}.smart.subnav .navbar-toggle:hover{background-color:transparent}.smart.subnav .navbar-collapse{border-top-color:#1a5273}.smart.subnav .subnav-divider{border-bottom:1px solid #2d8ec6}.smart .form-control{border:0!important}.add-ons-log-in{margin-top:16px}.docs-list{list-style:none;padding-left:20px}.docs-list>li{line-height:30px}.docs-list>li .glyphicon{font-size:18px}#footer-copyright{font-size:19px;line-height:39px}@media screen and (min-width:768px){#footer-copyright{padding:0 50px;font-size:14px;line-height:14px}#footer-copyright .col{width:19.5%;display:inline-block;vertical-align:middle}#footer-copyright .col:first-child{margin-left:20%}}@media screen and (min-width:992px){#footer-copyright{padding:0}}.footer-col{min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:768px){.footer-col{float:left;width:16.66666667%}}.footer-col:not(:first-child){margin-left:4.166666667%}.footer-col>h5,.footer-col>h5>a{line-height:25px;color:#fff}@media screen and (min-width:768px){.footer-col>h5,.footer-col>h5>a{width:130px;margin:0 auto;font-size:16px}}.footer-col ul{margin-bottom:30px!important;padding-left:0;line-height:25px;list-style:none}@media screen and (min-width:768px){.footer-col ul{width:130px;margin:0 auto}}.footer-col ul>li{padding:7px 0;font-size:19px;white-space:nowrap}.footer-col ul>li:first-child{padding-top:0}.footer-col ul>li:last-child{padding-bottom:0}.footer-col ul>li>ul{margin-top:15px!important}.footer-col ul>li>ul>li{padding:7px 0}.footer-col ul>li .fa{font-size:17px}@media screen and (min-width:768px){.footer-col ul>li>ul>li{padding:1px 0}.footer-col ul>li{font-size:14px;padding:0}}div.landing-tile{padding:30px;margin:15px 0;background-color:#ebeff0}div.landing-tile img{width:100%;max-width:300px}div.landing-tile p.description{margin-bottom:30px}@media screen and (min-width:768px){div.landing-tile img{width:300px}div.landing-tile p.description{margin-bottom:0;min-height:150px}}@media screen and (min-width:992px){div.landing-tile p.description{min-height:120px}}div.landing-tile p.cta{text-align:center;margin-bottom:0}div.landing-tile .btn{-webkit-transition:.2s all;transition:.2s all}.legal{font-weight:800}.legal address,.legal>li>ol>li,.legal>li>p{font-weight:400}.legal>li{padding:10px 0}.legal>li>ol>li{padding:5px 0}img.logo-img{max-height:200px}div.logo-tile{min-height:360px;padding:30px;margin:15px 0;background-color:#ebeff0;color:#747474}div.logo-tile.standard{padding:61px 30px}div.logo-tile .lead a{font-weight:300}div.logo-tile .span>a,div.logo-tile address>a,div.logo-tile em>a,div.logo-tile h1>a,div.logo-tile h2>a,div.logo-tile h3>a,div.logo-tile h4>a,div.logo-tile h5>a,div.logo-tile h6>a,div.logo-tile li>a,div.logo-tile p>a,div.logo-tile td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.separated{border-bottom-color:#bfcccf}.library-category-title,div.logo-tile.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}div.logo-tile .h1,div.logo-tile .h2,div.logo-tile .h3,div.logo-tile .h4,div.logo-tile .h5,div.logo-tile .h6,div.logo-tile h1,div.logo-tile h2,div.logo-tile h3,div.logo-tile h4,div.logo-tile h5,div.logo-tile h6{color:#000}div.logo-tile.jumbotron .h1,div.logo-tile.jumbotron h1{color:#343434}div.logo-tile.jumbotron .h2,div.logo-tile.jumbotron .h3,div.logo-tile.jumbotron .h4,div.logo-tile.jumbotron .h5,div.logo-tile.jumbotron .h6,div.logo-tile.jumbotron h2,div.logo-tile.jumbotron h3,div.logo-tile.jumbotron h4,div.logo-tile.jumbotron h5,div.logo-tile.jumbotron h6{color:#747474}div.logo-tile .span>a:active,div.logo-tile .span>a:link,div.logo-tile .span>a:visited,div.logo-tile address>a:active,div.logo-tile address>a:link,div.logo-tile address>a:visited,div.logo-tile em>a:active,div.logo-tile em>a:link,div.logo-tile em>a:visited,div.logo-tile h1>a:active,div.logo-tile h1>a:link,div.logo-tile h1>a:visited,div.logo-tile h2>a:active,div.logo-tile h2>a:link,div.logo-tile h2>a:visited,div.logo-tile h3>a:active,div.logo-tile h3>a:link,div.logo-tile h3>a:visited,div.logo-tile h4>a:active,div.logo-tile h4>a:link,div.logo-tile h4>a:visited,div.logo-tile h5>a:active,div.logo-tile h5>a:link,div.logo-tile h5>a:visited,div.logo-tile h6>a:active,div.logo-tile h6>a:link,div.logo-tile h6>a:visited,div.logo-tile li>a:active,div.logo-tile li>a:link,div.logo-tile li>a:visited,div.logo-tile p>a:active,div.logo-tile p>a:link,div.logo-tile p>a:visited,div.logo-tile td>a:active,div.logo-tile td>a:link,div.logo-tile td>a:visited{color:#0089bc}div.logo-tile .span>a:hover,div.logo-tile address>a:hover,div.logo-tile em>a:hover,div.logo-tile h1>a:hover,div.logo-tile h2>a:hover,div.logo-tile h3>a:hover,div.logo-tile h4>a:hover,div.logo-tile h5>a:hover,div.logo-tile h6>a:hover,div.logo-tile li>a:hover,div.logo-tile p>a:hover,div.logo-tile td>a:hover{color:#005170}div.logo-tile .span>a .glyphicon.tile,div.logo-tile address>a .glyphicon.tile,div.logo-tile em>a .glyphicon.tile,div.logo-tile h1>a .glyphicon.tile,div.logo-tile h2>a .glyphicon.tile,div.logo-tile h3>a .glyphicon.tile,div.logo-tile h4>a .glyphicon.tile,div.logo-tile h5>a .glyphicon.tile,div.logo-tile h6>a .glyphicon.tile,div.logo-tile li>a .glyphicon.tile,div.logo-tile p>a .glyphicon.tile,div.logo-tile td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}div.logo-tile .span>a .glyphicon.tile:active,div.logo-tile .span>a .glyphicon.tile:hover,div.logo-tile address>a .glyphicon.tile:active,div.logo-tile address>a .glyphicon.tile:hover,div.logo-tile em>a .glyphicon.tile:active,div.logo-tile em>a .glyphicon.tile:hover,div.logo-tile h1>a .glyphicon.tile:active,div.logo-tile h1>a .glyphicon.tile:hover,div.logo-tile h2>a .glyphicon.tile:active,div.logo-tile h2>a .glyphicon.tile:hover,div.logo-tile h3>a .glyphicon.tile:active,div.logo-tile h3>a .glyphicon.tile:hover,div.logo-tile h4>a .glyphicon.tile:active,div.logo-tile h4>a .glyphicon.tile:hover,div.logo-tile h5>a .glyphicon.tile:active,div.logo-tile h5>a .glyphicon.tile:hover,div.logo-tile h6>a .glyphicon.tile:active,div.logo-tile h6>a .glyphicon.tile:hover,div.logo-tile li>a .glyphicon.tile:active,div.logo-tile li>a .glyphicon.tile:hover,div.logo-tile p>a .glyphicon.tile:active,div.logo-tile p>a .glyphicon.tile:hover,div.logo-tile td>a .glyphicon.tile:active,div.logo-tile td>a .glyphicon.tile:hover{color:#4e4e4e}div.logo-tile ul.nav-sidebar>li.active>a{color:#000}div.logo-tile ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}#pre-footer,.doc-sidebar-inner .lead a,div.logo-tile.dark .lead a{font-weight:300}div.logo-tile ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}div.logo-tile ul.nav-sidebar>li>a:hover{color:#000}div.logo-tile ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}div.logo-tile ul.dropdown-menu>li>a:hover{color:#fff}div.logo-tile.subnav{opacity:.96}div.logo-tile.subnav .navbar-brand,div.logo-tile.subnav .navbar-brand a{color:#000}div.logo-tile.subnav li>a{color:#aaa}div.logo-tile.subnav li>a.active{color:#000}div.logo-tile.subnav li>a:hover{color:#5b5b5b}div.logo-tile .sidebar strong,div.logo-tile.subnav .navbar-toggle{color:#000}div.logo-tile.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile .sidebar a strong,div.logo-tile .sidebar a strong:active,div.logo-tile .sidebar a strong:link,div.logo-tile .sidebar a strong:visited{color:#0089bc}div.logo-tile .sidebar a strong:hover{color:#005170}div.logo-tile cite.bubble strong{color:#414141}div.logo-tile cite.bubble a:active,div.logo-tile cite.bubble a:link,div.logo-tile cite.bubble a:visited{color:#0089bc}div.logo-tile cite.bubble a:hover{color:#005170}div.logo-tile blockquote,div.logo-tile blockquote p,div.logo-tile blockquote ul>li{color:#747474}div.logo-tile.dark{background-color:#2d3339;color:#fff}div.logo-tile.dark .span>a,div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.dark.separated{border-bottom-color:#0b0d0e}div.logo-tile.dark .h1,div.logo-tile.dark .h2,div.logo-tile.dark .h3,div.logo-tile.dark .h4,div.logo-tile.dark .h5,div.logo-tile.dark .h6,div.logo-tile.dark h1,div.logo-tile.dark h2,div.logo-tile.dark h3,div.logo-tile.dark h4,div.logo-tile.dark h5,div.logo-tile.dark h6{color:#fff}div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{color:#fff;text-decoration:underline}#pre-footer a:active,#pre-footer a:hover,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:hover,div.logo-tile.dark.subnav .navbar-brand a{text-decoration:none}div.logo-tile.dark.subnav .navbar-brand{color:#fff}div.logo-tile.dark.subnav li>a{color:#6c7a89}div.logo-tile.dark.subnav li>a.active,div.logo-tile.dark.subnav li>a:hover{color:#fff}div.logo-tile.dark.subnav .navbar-toggle{color:#000}div.logo-tile.dark.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.dark.subnav .navbar-collapse{border-top-color:#000}div.logo-tile.dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}div.logo-tile.dark .form-control{border:0!important}div.logo-tile img{display:block;margin:0 auto}div.logo-tile p{margin-top:30px;margin-bottom:0;text-align:center}#main-nav{z-index:9002}#main-nav span{color:#e6e6e6}#navbar-logo{padding:6px 0 6px 15px}.mobile-badge{display:block}.mobile-badge-apple{margin-left:auto;margin-right:0}#pre-footer{padding:30px 0;background-color:#222;color:#fff;text-align:center;font-family:Lato,sans-serif;font-size:21px}#pre-footer a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}#pre-footer a:active,#pre-footer a:hover{color:#f2f2f2}@media screen and (min-width:768px){#navbar-logo{padding-left:0;padding-right:0}#pre-footer span{font-size:24px;line-height:38px}}@media screen and (min-width:992px){#pre-footer span{font-size:30px}}.resumator-basic-widget .resumator-jobs-text>p{margin-bottom:30px}.resumator-basic-widget .resumator-jobs-text li,.resumator-basic-widget .resumator-jobs-text>p{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6em;color:#747474}.btn,.resumator-basic-widget .resumator-job-title,.resumator-basic-widget input[type=button],div#os-tabs span{font-family:Lato,sans-serif}.resumator-basic-widget .resumator-jobs-text strong{color:#414141}.resumator-basic-widget .resumator-job-title{line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:16px;font-size:21px;color:#000;padding-top:30px!important;font-weight:400}.resumator-basic-widget .resumator-job-title .small,.resumator-basic-widget .resumator-job-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.resumator-basic-widget .resumator-job-title+.lead{padding-top:10px}.resumator-basic-widget .resumator-job-view-details{margin-bottom:30px}.resumator-basic-widget .resumator-job-link{margin-bottom:30px!important;font-size:16px}.resumator-basic-widget .resumator-job-link:active,.resumator-basic-widget .resumator-job-link:link,.resumator-basic-widget .resumator-job-link:visited{color:#0089bc}.resumator-basic-widget .resumator-job-link:hover{color:#005170}.btn-funky,.btn-green,.btn-white,.resumator-basic-widget input[type=button]{color:#fff!important;text-decoration:none!important}.resumator-basic-widget input[type=button]{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all;background-color:#3BB878}.resumator-basic-widget input[type=button].active.focus,.resumator-basic-widget input[type=button].active:focus,.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:active.focus,.resumator-basic-widget input[type=button]:active:focus,.resumator-basic-widget input[type=button]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{color:#333;text-decoration:none}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button][disabled],fieldset[disabled] .resumator-basic-widget input[type=button]{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.resumator-basic-widget input[type=button].disabled,fieldset[disabled] a.resumator-basic-widget input[type=button]{pointer-events:none}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{-webkit-box-shadow:none;box-shadow:none;text-decoration:none;color:#fff;background-color:#35a56b;outline:0}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active{background-image:none;background-color:#2f915f}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button].disabled.active,.resumator-basic-widget input[type=button].disabled:active,.resumator-basic-widget input[type=button].disabled:focus,.resumator-basic-widget input[type=button].disabled:hover,.resumator-basic-widget input[type=button][disabled],.resumator-basic-widget input[type=button][disabled].active,.resumator-basic-widget input[type=button][disabled]:active,.resumator-basic-widget input[type=button][disabled]:focus,.resumator-basic-widget input[type=button][disabled]:hover,fieldset[disabled] .resumator-basic-widget input[type=button],fieldset[disabled] .resumator-basic-widget input[type=button].active,fieldset[disabled] .resumator-basic-widget input[type=button]:active,fieldset[disabled] .resumator-basic-widget input[type=button]:focus,fieldset[disabled] .resumator-basic-widget input[type=button]:hover{color:#e6e6e6;background-color:#3BB878}.resumator-basic-widget input[type=button] .caret,.resumator-basic-widget input[type=button] caret-right{border-top-color:#fff}.resumator-basic-widget input[type=button].btn-border{border-style:solid;border-color:#2f915f;border-width:0 0 2px}.sidebar-modal-footer-close{text-align:center}.sidebar-modal-footer-close a{display:block}#sidebar-modal .modal-header *{line-height:20px}.t{display:none}.toc-bar{text-align:center}@media screen and (min-width:992px){.toc-bar{display:none}}#___gcse_0{margin-top:60px}.h3{padding-top:40px}.row-content:first-of-type .h3:nth-child(1){padding-top:0}#search-results{margin-top:40px}.btn{font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all}.btn.active,.btn:active,.btn:focus,.btn:hover{-webkit-box-shadow:none;box-shadow:none;outline:0;text-decoration:none}div#os-tabs .btn{border:1px solid #dadada;padding:10px;width:200px;background-color:#fff;color:#000}.btn-accent.btn-border,.btn-action-alt.btn-border,.btn-action.btn-border,.btn-blue.btn-border,.btn-brown.btn-border,.btn-funky.btn-border,.btn-green.btn-border,.btn-light-gray.btn-border,.btn-orange.btn-border,.btn-sand.btn-border,.btn-standard.btn-border,.btn-subdued.btn-border,.btn-white.btn-border{border-style:solid;border-width:0 0 2px}div#os-tabs .btn.current{outline:0;border-color:#9ecaed;-webkit-box-shadow:0 0 10px #9ecaed;box-shadow:0 0 10px #9ecaed;max-height:inherit}.linuxinstall,.macinstall,.windowsinstall{font-size:1.08rem}.btn-full{width:100%}.btn-half-circle{border-bottom-left-radius:30px;border-bottom-right-radius:30px;min-width:50px;max-width:50px}.btn-white{background-color:#3BB878}.btn-white.active,.btn-white:active,.btn-white:focus,.btn-white:hover{color:#fff;background-color:#35a56b;outline:0}.btn-white.active,.btn-white:active{background-color:#2f915f}.btn-white.disabled,.btn-white.disabled.active,.btn-white.disabled:active,.btn-white.disabled:focus,.btn-white.disabled:hover,.btn-white[disabled],.btn-white[disabled].active,.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,fieldset[disabled] .btn-white,fieldset[disabled] .btn-white.active,fieldset[disabled] .btn-white:active,fieldset[disabled] .btn-white:focus,fieldset[disabled] .btn-white:hover{color:#e6e6e6;background-color:#3BB878}.btn-white .caret,.btn-white caret-right{border-top-color:#fff}.btn-white.btn-border{border-color:#2f915f}.btn-green{background-color:#3BB878}.btn-green.active,.btn-green:active,.btn-green:focus,.btn-green:hover{color:#fff;background-color:#35a56b;outline:0}.btn-green.active,.btn-green:active{background-color:#2f915f}.btn-green.disabled,.btn-green.disabled.active,.btn-green.disabled:active,.btn-green.disabled:focus,.btn-green.disabled:hover,.btn-green[disabled],.btn-green[disabled].active,.btn-green[disabled]:active,.btn-green[disabled]:focus,.btn-green[disabled]:hover,fieldset[disabled] .btn-green,fieldset[disabled] .btn-green.active,fieldset[disabled] .btn-green:active,fieldset[disabled] .btn-green:focus,fieldset[disabled] .btn-green:hover{color:#e6e6e6;background-color:#3BB878}.btn-green .caret,.btn-green caret-right{border-top-color:#fff}.btn-green.btn-border{border-color:#2f915f}.btn-funky{background-color:#c67fcf}.btn-funky.active,.btn-funky:active,.btn-funky:focus,.btn-funky:hover{color:#fff;background-color:#be6cc8;outline:0}.btn-funky.active,.btn-funky:active{background-color:#b55ac1}.btn-funky.disabled,.btn-funky.disabled.active,.btn-funky.disabled:active,.btn-funky.disabled:focus,.btn-funky.disabled:hover,.btn-funky[disabled],.btn-funky[disabled].active,.btn-funky[disabled]:active,.btn-funky[disabled]:focus,.btn-funky[disabled]:hover,fieldset[disabled] .btn-funky,fieldset[disabled] .btn-funky.active,fieldset[disabled] .btn-funky:active,fieldset[disabled] .btn-funky:focus,fieldset[disabled] .btn-funky:hover{color:#e6e6e6;background-color:#c67fcf}.btn-funky .caret,.btn-funky caret-right{border-top-color:#fff}.btn-funky.btn-border{border-color:#b55ac1}.btn-blue .caret,.btn-blue caret-right,.btn-light-gray .caret,.btn-light-gray caret-right{border-top-color:#fff}.btn-blue{color:#fff!important;text-decoration:none!important;background-color:#2d8ec6}.btn-blue.active,.btn-blue:active,.btn-blue:focus,.btn-blue:hover{color:#fff;background-color:#287fb1;outline:0}.btn-blue.active,.btn-blue:active{background-color:#24709c}.btn-blue.disabled,.btn-blue.disabled.active,.btn-blue.disabled:active,.btn-blue.disabled:focus,.btn-blue.disabled:hover,.btn-blue[disabled],.btn-blue[disabled].active,.btn-blue[disabled]:active,.btn-blue[disabled]:focus,.btn-blue[disabled]:hover,fieldset[disabled] .btn-blue,fieldset[disabled] .btn-blue.active,fieldset[disabled] .btn-blue:active,fieldset[disabled] .btn-blue:focus,fieldset[disabled] .btn-blue:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-blue.btn-border{border-color:#24709c}.btn-light-gray{color:#fff!important;text-decoration:none!important;background-color:#3BB878}.btn-light-gray.active,.btn-light-gray:active,.btn-light-gray:focus,.btn-light-gray:hover{color:#fff;background-color:#35a56b;outline:0}.btn-light-gray.active,.btn-light-gray:active{background-color:#2f915f}.btn-light-gray.disabled,.btn-light-gray.disabled.active,.btn-light-gray.disabled:active,.btn-light-gray.disabled:focus,.btn-light-gray.disabled:hover,.btn-light-gray[disabled],.btn-light-gray[disabled].active,.btn-light-gray[disabled]:active,.btn-light-gray[disabled]:focus,.btn-light-gray[disabled]:hover,fieldset[disabled] .btn-light-gray,fieldset[disabled] .btn-light-gray.active,fieldset[disabled] .btn-light-gray:active,fieldset[disabled] .btn-light-gray:focus,fieldset[disabled] .btn-light-gray:hover{color:#e6e6e6;background-color:#3BB878}.btn-brown,.btn-sand{color:#fff!important;text-decoration:none!important}.btn-light-gray.btn-border{border-color:#2f915f}.btn-sand{background-color:#3BB878}.btn-sand.active,.btn-sand:active,.btn-sand:focus,.btn-sand:hover{color:#fff;background-color:#35a56b;outline:0}.btn-sand.active,.btn-sand:active{background-color:#2f915f}.btn-sand.disabled,.btn-sand.disabled.active,.btn-sand.disabled:active,.btn-sand.disabled:focus,.btn-sand.disabled:hover,.btn-sand[disabled],.btn-sand[disabled].active,.btn-sand[disabled]:active,.btn-sand[disabled]:focus,.btn-sand[disabled]:hover,fieldset[disabled] .btn-sand,fieldset[disabled] .btn-sand.active,fieldset[disabled] .btn-sand:active,fieldset[disabled] .btn-sand:focus,fieldset[disabled] .btn-sand:hover{color:#e6e6e6;background-color:#3BB878}.btn-sand .caret,.btn-sand caret-right{border-top-color:#fff}.btn-sand.btn-border{border-color:#2f915f}.btn-brown{background-color:#C2BA7A}.btn-brown.active,.btn-brown:active,.btn-brown:focus,.btn-brown:hover{color:#fff;background-color:#bab169;outline:0}.btn-brown.active,.btn-brown:active{background-color:#b2a857}.btn-brown.disabled,.btn-brown.disabled.active,.btn-brown.disabled:active,.btn-brown.disabled:focus,.btn-brown.disabled:hover,.btn-brown[disabled],.btn-brown[disabled].active,.btn-brown[disabled]:active,.btn-brown[disabled]:focus,.btn-brown[disabled]:hover,fieldset[disabled] .btn-brown,fieldset[disabled] .btn-brown.active,fieldset[disabled] .btn-brown:active,fieldset[disabled] .btn-brown:focus,fieldset[disabled] .btn-brown:hover{color:#e6e6e6;background-color:#C2BA7A}.btn-brown .caret,.btn-brown caret-right{border-top-color:#fff}.btn-brown.btn-border{border-color:#b2a857}.btn-action .caret,.btn-action caret-right,.btn-orange .caret,.btn-orange caret-right{border-top-color:#fff}.btn-orange{color:#fff!important;text-decoration:none!important;background-color:#FFAC5F}.btn-orange.active,.btn-orange:active,.btn-orange:focus,.btn-orange:hover{color:#fff;background-color:#ff9f45;outline:0}.btn-orange.active,.btn-orange:active{background-color:#ff922c}.btn-orange.disabled,.btn-orange.disabled.active,.btn-orange.disabled:active,.btn-orange.disabled:focus,.btn-orange.disabled:hover,.btn-orange[disabled],.btn-orange[disabled].active,.btn-orange[disabled]:active,.btn-orange[disabled]:focus,.btn-orange[disabled]:hover,fieldset[disabled] .btn-orange,fieldset[disabled] .btn-orange.active,fieldset[disabled] .btn-orange:active,fieldset[disabled] .btn-orange:focus,fieldset[disabled] .btn-orange:hover{color:#e6e6e6;background-color:#FFAC5F}.btn-orange.btn-border{border-color:#ff922c}.btn-action{color:#fff!important;text-decoration:none!important;background-color:#3BB878}.btn-action.active,.btn-action:active,.btn-action:focus,.btn-action:hover{color:#fff;background-color:#35a56b;outline:0}.btn-action.active,.btn-action:active{background-color:#2f915f}.btn-action.disabled,.btn-action.disabled.active,.btn-action.disabled:active,.btn-action.disabled:focus,.btn-action.disabled:hover,.btn-action[disabled],.btn-action[disabled].active,.btn-action[disabled]:active,.btn-action[disabled]:focus,.btn-action[disabled]:hover,fieldset[disabled] .btn-action,fieldset[disabled] .btn-action.active,fieldset[disabled] .btn-action:active,fieldset[disabled] .btn-action:focus,fieldset[disabled] .btn-action:hover{color:#e6e6e6;background-color:#3BB878}.btn-action.btn-border{border-color:#2f915f}.btn-action-alt .caret,.btn-action-alt caret-right,.btn-subdued .caret,.btn-subdued caret-right{border-top-color:#000}.btn-action-alt{color:#000!important;text-decoration:none!important;background-color:#fff}.btn-action-alt.active,.btn-action-alt:active,.btn-action-alt:focus,.btn-action-alt:hover{color:#000;background-color:#f2f2f2;outline:0}.btn-action-alt.active,.btn-action-alt:active{background-color:#e6e6e6}.btn-action-alt.disabled,.btn-action-alt.disabled.active,.btn-action-alt.disabled:active,.btn-action-alt.disabled:focus,.btn-action-alt.disabled:hover,.btn-action-alt[disabled],.btn-action-alt[disabled].active,.btn-action-alt[disabled]:active,.btn-action-alt[disabled]:focus,.btn-action-alt[disabled]:hover,fieldset[disabled] .btn-action-alt,fieldset[disabled] .btn-action-alt.active,fieldset[disabled] .btn-action-alt:active,fieldset[disabled] .btn-action-alt:focus,fieldset[disabled] .btn-action-alt:hover{color:#000;background-color:#fff}.btn-action-alt.btn-border{border-color:#e6e6e6}.btn-accent .caret,.btn-accent caret-right,.btn-standard .caret,.btn-standard caret-right{border-top-color:#fff}.btn-accent{color:#fff!important;text-decoration:none!important;background-color:#00aeef}.btn-accent.active,.btn-accent:active,.btn-accent:focus,.btn-accent:hover{color:#fff;background-color:#009bd6;outline:0}.btn-accent.active,.btn-accent:active{background-color:#0089bc}.btn-accent.disabled,.btn-accent.disabled.active,.btn-accent.disabled:active,.btn-accent.disabled:focus,.btn-accent.disabled:hover,.btn-accent[disabled],.btn-accent[disabled].active,.btn-accent[disabled]:active,.btn-accent[disabled]:focus,.btn-accent[disabled]:hover,fieldset[disabled] .btn-accent,fieldset[disabled] .btn-accent.active,fieldset[disabled] .btn-accent:active,fieldset[disabled] .btn-accent:focus,fieldset[disabled] .btn-accent:hover{color:#e6e6e6;background-color:#00aeef}.btn-accent.btn-border{border-color:#0089bc}.btn-standard{color:#fff!important;text-decoration:none!important;background-color:#2d8ec6}.btn-standard.active,.btn-standard:active,.btn-standard:focus,.btn-standard:hover{color:#fff;background-color:#287fb1;outline:0}.btn-standard.active,.btn-standard:active{background-color:#24709c}.btn-standard.disabled,.btn-standard.disabled.active,.btn-standard.disabled:active,.btn-standard.disabled:focus,.btn-standard.disabled:hover,.btn-standard[disabled],.btn-standard[disabled].active,.btn-standard[disabled]:active,.btn-standard[disabled]:focus,.btn-standard[disabled]:hover,fieldset[disabled] .btn-standard,fieldset[disabled] .btn-standard.active,fieldset[disabled] .btn-standard:active,fieldset[disabled] .btn-standard:focus,fieldset[disabled] .btn-standard:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-standard.btn-border{border-color:#24709c}.btn-subdued{color:#000!important;text-decoration:none!important;background-color:#eee}.btn-subdued.active,.btn-subdued:active,.btn-subdued:focus,.btn-subdued:hover{color:#000;background-color:#e2e2e2;outline:0}.btn-subdued.active,.btn-subdued:active{background-color:#d5d5d5}.btn-subdued.disabled,.btn-subdued.disabled.active,.btn-subdued.disabled:active,.btn-subdued.disabled:focus,.btn-subdued.disabled:hover,.btn-subdued[disabled],.btn-subdued[disabled].active,.btn-subdued[disabled]:active,.btn-subdued[disabled]:focus,.btn-subdued[disabled]:hover,fieldset[disabled] .btn-subdued,fieldset[disabled] .btn-subdued.active,fieldset[disabled] .btn-subdued:active,fieldset[disabled] .btn-subdued:focus,fieldset[disabled] .btn-subdued:hover{color:#000;background-color:#eee}.btn-subdued.btn-border{border-color:#d5d5d5}#ds-search-modal{margin-top:65px;z-index:9999}#ds-search-modal a{display:block;padding:10px 15px}#ds-search-modal a:active,#ds-search-modal a:link,#ds-search-modal a:visited{color:#0089bc}#ds-search-modal a:hover{color:#005170}#ds-search-input{padding:3px;border:1px solid #E4E4E4;border-radius:6px;background-color:#fff}#ds-search-input input{border:0;-webkit-box-shadow:none;box-shadow:none}#ds-search-input button{margin:2px 0 0;background:0 0;-webkit-box-shadow:none;box-shadow:none;border:0;color:#666;padding:0 8px 0 10px;border-left:solid 1px #ccc}#ds-search-input button:hover{border:0;-webkit-box-shadow:none;box-shadow:none;border-left:solid 1px #ccc}#ds-search-input .glyphicon-search{font-size:23px}#ds-search-input ul li:hover{background-color:#e6e6e6}.search-deprecated{font-size:9px;background-color:#FFAC5F;height:43px;color:#fff;border-radius:3px;padding:4px;margin-left:5px;vertical-align:middle}.search-form{width:100%}.hits,.search-icon{position:absolute;z-index:10}.search-box{padding-left:35px}.search-icon{top:.85em;left:.85em}.hits{top:50px;left:0}.hit-body{width:100%;background:#fff;color:#747474;border:.5px solid #e7e6e6;padding:1em}.hit-body:hover{background:#edf7fe;color:#fff}.hit-body a,.hit-body a:hover{color:#747474;text-decoration:none}.hit-body a{display:inline-block}.algolia-autocomplete,.algolia-autocomplete .aa-hint,.algolia-autocomplete .aa-input{width:100%}.algolia-autocomplete .aa-hint{color:#999}.algolia-autocomplete .aa-dropdown-menu{width:100%;background-color:#fff;border:1px solid #cecccc;border-top:none}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion{cursor:pointer;padding:10px 12px}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor{background-color:#edf7fe;color:#343434}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em{font-weight:700;font-style:normal}.library-article-blurb{padding-top:15px;padding-bottom:15px}.library-section-app{padding-top:30px}.library-breadcrumb-search{padding:20px 15px 55px}#library-main-search{margin-top:20px;height:45px}#library-main-search button,#library-main-search input{height:42px}.library-breadcrumb{background-color:#fff;padding:30px 0 0}div.library-tile,li.library-article-item:nth-child(odd){background-color:#ebeff0}@media screen and (min-width:768px){.library-breadcrumb{padding:30px 0 60px}}#library-page-num,#library-search-status+.lead,.library-search-result-title+.lead{padding-top:10px}.library-breadcrumb>li{display:block}@media screen and (min-width:768px){.library-breadcrumb>li{display:inline-block}div.library-tile{min-height:220px}}.library-breadcrumb>li+li:before{content:"\00BB\00a0";color:#9a9a9a}.library-breadcrumb>.active{color:#9a9a9a}.library-spinner{width:60px;height:60px;margin:0 auto;border-left:3px solid #eee;border-right:3px solid #eee;border-bottom:3px solid #eee;border-top:3px solid #555;border-radius:100%;-webkit-animation:rotation .4s infinite ease-in-out;animation:rotation .4s infinite ease-in-out}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.library-search-result{margin-bottom:60px}.library-search-result:last-child{margin-bottom:0}#library-search-status,.library-search-result-title{margin-top:11px;margin-bottom:11px;font-weight:400;font-family:Lato,sans-serif}.library-search-result small{display:block}#doc-sidebar-container #doc-sidebar-toc .toc-long ul>li>ul>li>ul,.library-pager li{display:none}.library-search-result-title{line-height:1.1;color:inherit;font-size:20px;font-size:25px}.library-search-result-title .small,.library-search-result-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.library-search-result-desc{color:#9a9a9a}#library-search-status{line-height:1.1;color:inherit;font-size:16px;font-size:21px;text-align:center}#library-search-status .small,#library-search-status small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile p,div.library-tile.active p,div.library-tile:active p,div.library-tile:focus p,div.library-tile:hover p{color:#747474}#library-page-num{display:block}.library-categories-row{margin-left:-15px;margin-right:-15px;margin-top:60px}.library-category-articles{padding-left:20px}.library-category-articles+.library-category-title{margin-top:60px}div.library-tile{padding:30px;margin-bottom:30px}div.library-tile.active,div.library-tile:active,div.library-tile:focus,div.library-tile:hover{background-color:#edf7fe}div.library-tile h2.tile-title{color:#000}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}@media screen and (min-width:992px){.library-category-title{width:80%}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:20px;font-size:25px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}}@media screen and (min-width:1200px){.first-section .container{max-width:1170px}}#article-body{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;color:#333}@media screen and (min-width:768px){#article-body{padding-bottom:60px}}#article-body li{font-size:17px;font-size:1.08rem}#article-body .h1,#article-body .h2,#article-body .h3,#article-body .h4,#article-body .h5,#article-body .h6,#article-body h1,#article-body h2,#article-body h3,#article-body h4,#article-body h5,#article-body h6{word-wrap:break-word;margin-top:3.125rem}#article-body .h1+.h1,#article-body .h1+.h2,#article-body .h1+.h3,#article-body .h1+.h4,#article-body .h1+.h5,#article-body .h1+.h6,#article-body .h1+h1,#article-body .h1+h2,#article-body .h1+h3,#article-body .h1+h4,#article-body .h1+h5,#article-body .h1+h6,#article-body .h2+.h1,#article-body .h2+.h2,#article-body .h2+.h3,#article-body .h2+.h4,#article-body .h2+.h5,#article-body .h2+.h6,#article-body .h2+h1,#article-body .h2+h2,#article-body .h2+h3,#article-body .h2+h4,#article-body .h2+h5,#article-body .h2+h6,#article-body .h3+.h1,#article-body .h3+.h2,#article-body .h3+.h3,#article-body .h3+.h4,#article-body .h3+.h5,#article-body .h3+.h6,#article-body .h3+h1,#article-body .h3+h2,#article-body .h3+h3,#article-body .h3+h4,#article-body .h3+h5,#article-body .h3+h6,#article-body .h4+.h1,#article-body .h4+.h2,#article-body .h4+.h3,#article-body .h4+.h4,#article-body .h4+.h5,#article-body .h4+.h6,#article-body .h4+h1,#article-body .h4+h2,#article-body .h4+h3,#article-body .h4+h4,#article-body .h4+h5,#article-body .h4+h6,#article-body .h5+.h1,#article-body .h5+.h2,#article-body .h5+.h3,#article-body .h5+.h4,#article-body .h5+.h5,#article-body .h5+.h6,#article-body .h5+h1,#article-body .h5+h2,#article-body .h5+h3,#article-body .h5+h4,#article-body .h5+h5,#article-body .h5+h6,#article-body .h6+.h1,#article-body .h6+.h2,#article-body .h6+.h3,#article-body .h6+.h4,#article-body .h6+.h5,#article-body .h6+.h6,#article-body .h6+h1,#article-body .h6+h2,#article-body .h6+h3,#article-body .h6+h4,#article-body .h6+h5,#article-body .h6+h6,#article-body h1+.h1,#article-body h1+.h2,#article-body h1+.h3,#article-body h1+.h4,#article-body h1+.h5,#article-body h1+.h6,#article-body h1+h1,#article-body h1+h2,#article-body h1+h3,#article-body h1+h4,#article-body h1+h5,#article-body h1+h6,#article-body h2+.h1,#article-body h2+.h2,#article-body h2+.h3,#article-body h2+.h4,#article-body h2+.h5,#article-body h2+.h6,#article-body h2+h1,#article-body h2+h2,#article-body h2+h3,#article-body h2+h4,#article-body h2+h5,#article-body h2+h6,#article-body h3+.h1,#article-body h3+.h2,#article-body h3+.h3,#article-body h3+.h4,#article-body h3+.h5,#article-body h3+.h6,#article-body h3+h1,#article-body h3+h2,#article-body h3+h3,#article-body h3+h4,#article-body h3+h5,#article-body h3+h6,#article-body h4+.h1,#article-body h4+.h2,#article-body h4+.h3,#article-body h4+.h4,#article-body h4+.h5,#article-body h4+.h6,#article-body h4+h1,#article-body h4+h2,#article-body h4+h3,#article-body h4+h4,#article-body h4+h5,#article-body h4+h6,#article-body h5+.h1,#article-body h5+.h2,#article-body h5+.h3,#article-body h5+.h4,#article-body h5+.h5,#article-body h5+.h6,#article-body h5+h1,#article-body h5+h2,#article-body h5+h3,#article-body h5+h4,#article-body h5+h5,#article-body h5+h6,#article-body h6+.h1,#article-body h6+.h2,#article-body h6+.h3,#article-body h6+.h4,#article-body h6+.h5,#article-body h6+.h6,#article-body h6+h1,#article-body h6+h2,#article-body h6+h3,#article-body h6+h4,#article-body h6+h5,#article-body h6+h6{margin-top:0}#article-body .h1:hover a,#article-body .h2:hover a,#article-body .h3:hover a,#article-body .h4:hover a,#article-body .h5:hover a,#article-body .h6:hover a,#article-body h1:hover a,#article-body h2:hover a,#article-body h3:hover a,#article-body h4:hover a,#article-body h5:hover a,#article-body h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}#article-body .h1,#article-body h1{font-size:38px;font-size:2.375rem}#article-body .h2,#article-body h2{font-size:33px;font-size:2.0625rem}#article-body .h3,#article-body h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}#article-body .h4,#article-body h4{font-size:23px;font-size:1.4375rem}#article-body .h5,#article-body h5{font-size:20px;font-size:1.25rem}#article-body .h6,#article-body h6{font-size:18px;font-size:1.125rem}#article-body li ol,#article-body li ul,#article-body li+li{margin-top:10px}#article-body li ol li,#article-body li ul li{margin-top:5px}#article-body li blockquote,#article-body li img{margin:20px 0}#article-body li ol+p,#article-body li ul+p{margin-top:20px}#article-body code{font-size:14px}#article-body img{display:block;max-width:100%;height:auto;margin:0 auto}#article-body table:not([class]){width:100%;max-width:100%;margin-bottom:22px}#article-body table:not([class])>tbody>tr>td,#article-body table:not([class])>tbody>tr>th,#article-body table:not([class])>tfoot>tr>td,#article-body table:not([class])>tfoot>tr>th,#article-body table:not([class])>thead>tr>td,#article-body table:not([class])>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}#article-body table:not([class])>caption+thead>tr:first-child>td,#article-body table:not([class])>caption+thead>tr:first-child>th,#article-body table:not([class])>colgroup+thead>tr:first-child>td,#article-body table:not([class])>colgroup+thead>tr:first-child>th,#article-body table:not([class])>thead:first-child>tr:first-child>td,#article-body table:not([class])>thead:first-child>tr:first-child>th{border-top:0}#article-body table:not([class])>tbody+tbody{border-top:2px solid #ddd}#article-body table:not([class]) .table{background-color:#fff}#article-body table:not([class])>thead>tr>th{font-family:Lato,sans-serif;padding:17px 10px;vertical-align:middle;text-align:left;color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}#article-body table:not([class])>tbody>tr:first-child{border-top:none}#article-body table:not([class])>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}#article-body table:not([class])>tbody>tr>td{padding:17px 10px;vertical-align:middle;text-align:left;width:0;color:#747474}.email-signup,.library-rss,.library-sidebar-extra,.library-signup{text-align:center}#article-body table:not([class])>tbody>tr>td:last-child{border-right:none}#article-body table:not([class])>tbody>tr>td.large{font-size:20px;color:#000}#article-body table:not([class])>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}#article-body table:not([class])>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.doc-time{color:#9a9a9a}.doc-time a:active,.doc-time a:link,.doc-time a:visited{color:#0089bc}.doc-time a:hover{color:#005170}.doc-title{margin-top:0!important;font-size:40px}.doc-license{font-size:87%;font-size:14px;padding-top:45px;color:#9a9a9a}.doc-sidebar-inner{background-color:#edf7fe;color:#747474;padding:15px;font-size:14px}.doc-sidebar-inner .span>a,.doc-sidebar-inner address>a,.doc-sidebar-inner em>a,.doc-sidebar-inner h1>a,.doc-sidebar-inner h2>a,.doc-sidebar-inner h3>a,.doc-sidebar-inner h4>a,.doc-sidebar-inner h5>a,.doc-sidebar-inner h6>a,.doc-sidebar-inner li>a,.doc-sidebar-inner p>a,.doc-sidebar-inner td>a{-webkit-transition:.2s color;transition:.2s color}.doc-sidebar-inner .nav li>a,.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:hover{text-decoration:none}.doc-sidebar-inner.separated{border-bottom-color:#a5d7fa}.doc-sidebar-inner .h1,.doc-sidebar-inner .h2,.doc-sidebar-inner .h3,.doc-sidebar-inner .h4,.doc-sidebar-inner .h5,.doc-sidebar-inner .h6,.doc-sidebar-inner h1,.doc-sidebar-inner h2,.doc-sidebar-inner h3,.doc-sidebar-inner h4,.doc-sidebar-inner h5,.doc-sidebar-inner h6{color:#000}.doc-sidebar-inner.jumbotron .h1,.doc-sidebar-inner.jumbotron h1{color:#343434}.doc-sidebar-inner.jumbotron .h2,.doc-sidebar-inner.jumbotron .h3,.doc-sidebar-inner.jumbotron .h4,.doc-sidebar-inner.jumbotron .h5,.doc-sidebar-inner.jumbotron .h6,.doc-sidebar-inner.jumbotron h2,.doc-sidebar-inner.jumbotron h3,.doc-sidebar-inner.jumbotron h4,.doc-sidebar-inner.jumbotron h5,.doc-sidebar-inner.jumbotron h6{color:#747474}.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:link,.doc-sidebar-inner .span>a:visited,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:link,.doc-sidebar-inner address>a:visited,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:link,.doc-sidebar-inner em>a:visited,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:link,.doc-sidebar-inner h1>a:visited,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:link,.doc-sidebar-inner h2>a:visited,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:link,.doc-sidebar-inner h3>a:visited,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:link,.doc-sidebar-inner h4>a:visited,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:link,.doc-sidebar-inner h5>a:visited,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:link,.doc-sidebar-inner h6>a:visited,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:link,.doc-sidebar-inner li>a:visited,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:link,.doc-sidebar-inner p>a:visited,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:link,.doc-sidebar-inner td>a:visited{color:#0089bc}.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:hover{color:#005170}.doc-sidebar-inner .span>a .glyphicon.tile,.doc-sidebar-inner address>a .glyphicon.tile,.doc-sidebar-inner em>a .glyphicon.tile,.doc-sidebar-inner h1>a .glyphicon.tile,.doc-sidebar-inner h2>a .glyphicon.tile,.doc-sidebar-inner h3>a .glyphicon.tile,.doc-sidebar-inner h4>a .glyphicon.tile,.doc-sidebar-inner h5>a .glyphicon.tile,.doc-sidebar-inner h6>a .glyphicon.tile,.doc-sidebar-inner li>a .glyphicon.tile,.doc-sidebar-inner p>a .glyphicon.tile,.doc-sidebar-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.doc-sidebar-inner .span>a .glyphicon.tile:active,.doc-sidebar-inner .span>a .glyphicon.tile:hover,.doc-sidebar-inner address>a .glyphicon.tile:active,.doc-sidebar-inner address>a .glyphicon.tile:hover,.doc-sidebar-inner em>a .glyphicon.tile:active,.doc-sidebar-inner em>a .glyphicon.tile:hover,.doc-sidebar-inner h1>a .glyphicon.tile:active,.doc-sidebar-inner h1>a .glyphicon.tile:hover,.doc-sidebar-inner h2>a .glyphicon.tile:active,.doc-sidebar-inner h2>a .glyphicon.tile:hover,.doc-sidebar-inner h3>a .glyphicon.tile:active,.doc-sidebar-inner h3>a .glyphicon.tile:hover,.doc-sidebar-inner h4>a .glyphicon.tile:active,.doc-sidebar-inner h4>a .glyphicon.tile:hover,.doc-sidebar-inner h5>a .glyphicon.tile:active,.doc-sidebar-inner h5>a .glyphicon.tile:hover,.doc-sidebar-inner h6>a .glyphicon.tile:active,.doc-sidebar-inner h6>a .glyphicon.tile:hover,.doc-sidebar-inner li>a .glyphicon.tile:active,.doc-sidebar-inner li>a .glyphicon.tile:hover,.doc-sidebar-inner p>a .glyphicon.tile:active,.doc-sidebar-inner p>a .glyphicon.tile:hover,.doc-sidebar-inner td>a .glyphicon.tile:active,.doc-sidebar-inner td>a .glyphicon.tile:hover{color:#4e4e4e}.doc-sidebar-inner ul.nav-sidebar>li.active>a{color:#000}.doc-sidebar-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.doc-sidebar-inner ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.doc-sidebar-inner ul.nav-sidebar>li>a:hover{color:#000}.doc-sidebar-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.doc-sidebar-inner ul.dropdown-menu>li>a:hover{color:#fff}.doc-sidebar-inner.subnav{opacity:.96}.doc-sidebar-inner.subnav .navbar-brand{color:#000}.doc-sidebar-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.doc-sidebar-inner.subnav li>a{color:#aaa}.doc-sidebar-inner.subnav li>a.active{color:#000}.doc-sidebar-inner.subnav li>a:hover{color:#5b5b5b}.doc-sidebar-inner .sidebar strong,.doc-sidebar-inner.subnav .navbar-toggle{color:#000}.doc-sidebar-inner.subnav .navbar-toggle:hover{background-color:transparent}.doc-sidebar-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.doc-sidebar-inner .sidebar a strong,.doc-sidebar-inner .sidebar a strong:active,.doc-sidebar-inner .sidebar a strong:link,.doc-sidebar-inner .sidebar a strong:visited{color:#0089bc}.doc-sidebar-inner .sidebar a strong:hover{color:#005170}.doc-sidebar-inner cite.bubble strong{color:#414141}.doc-sidebar-inner cite.bubble a:active,.doc-sidebar-inner cite.bubble a:link,.doc-sidebar-inner cite.bubble a:visited{color:#0089bc}.doc-sidebar-inner cite.bubble a:hover{color:#005170}.doc-sidebar-inner blockquote,.doc-sidebar-inner blockquote p,.doc-sidebar-inner blockquote ul>li{color:#747474}.doc-sidebar-inner+.doc-sidebar-inner{margin-top:20px}#doc-sidebar-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;font-size:14px;font-size:19px;font-weight:400;margin-bottom:30px}#doc-sidebar-title .small,#doc-sidebar-title small{font-weight:400;line-height:1;color:#777;font-size:75%}#doc-sidebar-title+.lead{padding-top:10px}.sidebar-library nav>ul{border:0;margin:0;padding:0}.sidebar-library nav>ul>li>ul{border:0;padding-left:0}.sidebar-library nav>ul>li>ul>li{padding-left:0;display:block;line-height:20px;margin-top:20px;margin-bottom:20px}.sidebar-library nav>ul>li>ul>li>a{font-weight:800}.alert-banner a,.sidebar-library nav>ul>li>ul>li ul>li>a{font-weight:400}.sidebar-library nav>ul>li>ul>li ul>li{margin-top:2px;margin-bottom:2px;padding-left:10px}.sidebar-library nav>ul>li ul>li>ul>li>a{font-size:14px}.library-sidebar-extra h6{margin:5px auto}.library-sidebar-extra p{font-size:12px;margin-bottom:0}.library-sidebar-extra .fa{font-size:40px;color:#000}.library-github{vertical-align:middle;margin-bottom:15px;margin-top:15px}.library-github strong{font-size:1.2em}.library-github i{font-size:1.35em}.library-github p{display:inline-block;font-size:.8em;margin-left:7px}.contributed-by{float:right;margin-top:3px}.updated{float:left}.doc-time:after{content:"";display:table;clear:both}.library-signup{margin-top:40px}.library-signup h6{margin:5px auto}.library-signup p{font-size:12px;margin-bottom:0}.library-signup .fa{font-size:40px;color:#000}.library-rss{margin-top:4px}.library-rss a{font-size:14px}.library-rss a:hover{color:#737373}#img-modal-image{max-width:1200px;max-height:700px;margin:auto}.modal-full{width:90%;padding-top:90px}.modal-body{overflow:scroll}div#search{height:57px}.gsc-input-box,td.gsc-input{height:45px!important}input.gsc-input{height:36px!important}.gsc-search-button{background-color:#2d8ec6;padding-top:2px}.gsc-modal-background-image{background-color:#333!important}table.gsc-table-result>tbody>tr>td{padding-left:8px;padding-right:8px}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}div.gsc-input-box,div.gsc-input-box-focus{border-color:#4fa5d7}div.gsc-input-box-focus,div.gsc-input-box-hover{-webkit-box-shadow:none;box-shadow:none}div.gsc-control-cse{font-family:Helvetica,Arial,sans-serif}input.gsc-search-button,input.gsc-search-button:focus,input.gsc-search-button:hover{background-color:#2d8ec6!important;background-image:url(https://www.google.com/uds/css/v2/search_box_icon.png)!important;background-position:50% 50%;background-repeat:no-repeat;height:36px!important;border-color:#2d8ec6!important;-webkit-filter:none;filter:none}span.gscb_a{margin-top:13px!important}li.library-article-item{border:none;padding:16px 24px}#signup-form{margin-top:16px}#frontpage_upcoming_webinar{background:#2d8ec6}#frontpage_upcoming_webinar_text a{color:#fff;height:50px;line-height:50px;vertical-align:middle}.email-signup{margin-top:30px}.create-account{margin-top:10px}.signup-top{background:#eee;padding:13px;display:inline-block;margin-bottom:8px;width:100%}.hs-richtext,.hubspot-form .input{padding-bottom:20px}@media only screen and (min-width:1200px){.signup-top>div.row>div:first-child{padding-top:4px}}@media only screen and (max-width:768px){.signup-top>div.row>div:last-child{text-align:left;margin-top:8px}}@media only screen and (min-width:768px){.signup-top>div.row>div:last-child{text-align:right;margin-top:0}}.alert-banner,.container .contribute,.container .contribute .money{text-align:center}.signup-top span{font-family:Lato,sans-serif;font-size:18px;vertical-align:middle}.signup-top form{display:inline}.clear{clear:both}.hs_recaptcha{float:right;margin:10px 0 10px 10px;padding-left:0}.hubspot-container{background-color:#ebeff0;width:80%}.hubspot-form input{display:block;height:40px;width:100%}.hubspot-form input[type=submit]{padding-bottom:0;display:block;float:left;height:40px;width:50%;margin:10px 10px 0 auto}.hubspot-form{width:100%;margin:0 auto;padding:40px 40px 25px}.hs-button{min-height:75px;font-size:1.5em;border:none;background-color:#3BB878;color:#fff}.hs-button:hover{background-color:#2f925f}.container .contribute img{padding-bottom:10px}h1.contribute{padding-bottom:40px}.contrib-header,.samples{padding-bottom:20px}.contribute{margin-left:0;padding-left:0}.compensation{text-align:left}.compensation-footer{text-align:left;padding-top:40px}.primary{margin-bottom:0;padding-bottom:0}.current{padding-bottom:20px;padding-top:20px}.sample-header{margin-left:0;margin-bottom:20px}.subtitle{padding-top:40px;margin:0}.row-content{margin-bottom:0}#doc-sidebar-container{position:webkit-sticky;position:-webkit-sticky;position:sticky;top:10px}#doc-sidebar-container #doc-sidebar{margin-top:10px;max-width:100%}#doc-sidebar-container #doc-sidebar-toc li.active>a{color:#005170}.social-share>a{padding:6px 10px}.social-share .btn-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.social-share .share-group{float:left;max-width:59px;margin-top:12.5px!important;min-width:200px}.social-share .share-group ul{float:right;list-style:none;margin:0;min-width:61px;padding:0}.social-share .share-group .share{min-width:17px}.social-share .share-group li{display:block;font-size:18px;list-style:none;margin-bottom:3px;margin-left:4px;margin-top:3px}.social-share .share-group .btn-common{width:51px;color:#FFF!important}.social-share .share-group .btn-twitter{background-color:#39C!important;width:51px;color:#FFF!important}.social-share .share-group .btn-facebook{background-color:#3D5B96!important;width:51px;color:#FFF!important}.social-share .share-group .btn-hacker-news{background-color:#f60!important;width:51px;color:#FFF!important}#disqus_thread{margin-top:40px}.copy-code{position:absolute;padding-top:.25rem;right:1.4rem;opacity:0}#article-body .disclosure-note div.btn-copy>.copy-code,blockquote div.btn-copy>.copy-code{padding-top:.01rem;right:2.2rem}#article-body .disclosure-note .glyphicon.glyphicon-copy{font-size:1.6rem;color:#a6a6a6}blockquote div.btn-copy .glyphicon.glyphicon-copy{color:#a6a6a6}.copy-code:hover{opacity:1}.glyphicon.glyphicon-copy{font-size:1.6rem}.btn-copy:hover .glyphicon{color:#B2D7FF}.form_elem_email{color:#000}.alert-banner{font-size:22px;background-color:#7c9fb3;margin-bottom:30px;padding:10px 0}.alert-banner a{font-family:Lato,sans-serif;color:rgba(255,255,255,.8);display:block}.alert-banner a:hover{text-decoration:none;color:#fff}.alert-banner i{padding:0 15px}.sub-menu-wrap{max-width:1170px;margin:0 auto;padding-left:15px;padding-right:15px}.sub-menu-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #e7e6e6;width:100%;-webkit-font-smoothing:initial}.with-subnavigation{margin-top:30px}.breadcrumb-row.with-subnavigation,.pad-xs.with-subnavigation{margin-top:0!important}#library-main-search{margin-bottom:0}.sub-menu-wrapper__title{padding:21px 0;margin:11px 0;-webkit-font-smoothing:antialiased;font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.sub-menu-wrapper__title a:link,.sub-menu-wrapper__title a:visited{color:#000;text-decoration:none}.sub-menu-wrapper__title a:hover{color:#000}.sub-menu{list-style-type:none;font-family:Lato,sans-serif;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;top:1px}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.sub-menu{top:-2px}}}.sub-menu li{display:inline-block}.sub-menu-wrapper .sub-menu li:first-child a{margin-left:0}.sub-menu li:last-child a{margin-right:0}.sub-menu a:link,.sub-menu a:visited{color:#aaa;padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px;margin:13px 12px 0}.sub-menu a.active,.sub-menu a:hover{color:#000}@media (max-width:768px){.sub-menu,.sub-menu li{display:block}.sub-menu{width:100%}.sub-menu-wrapper{padding-bottom:20px}.sub-menu-wrapper .sub-menu li a{margin:0}.some-space.first-section.with-subnavigation{padding-bottom:30px}}@media screen and (min-width:992px){.navbar .nav-home{top:1px}}@media screen and (min-width:768px){.navbar.navbar-default{height:auto}.navbar .navbar-nav>li>a{padding-bottom:20px}}.chroma{background-color:#eed}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;overflow:auto;display:block}.chroma .ln,.chroma .lnt{margin-right:.4em;padding:0 .4em}.chroma .hl{background-color:#ffc;display:block;width:100%}.chroma .lnt{display:block}.chroma .k,.chroma .kc,.chroma .kd,.chroma .kn,.chroma .kp,.chroma .kr{color:#8b008b;font-weight:700}.chroma .kt{color:#00688b;font-weight:700}.chroma .na,.chroma .nb{color:#658b00}.chroma .nc{color:#008b45;font-weight:700}.chroma .no{color:#00688b}.chroma .nd{color:#707a7c}.chroma .ne,.chroma .nf,.chroma .nn{color:#008b45}.chroma .ne{font-weight:700}.chroma .nt{color:#8b008b;font-weight:700}.chroma .nv{color:#00688b}.chroma .dl,.chroma .s,.chroma .s2,.chroma .sa,.chroma .sb,.chroma .sc,.chroma .sd,.chroma .se{color:#cd5555}.chroma .sh{color:#1c7e71}.chroma .si{color:#cd5555}.chroma .sx{color:#cb6c20}.chroma .sr{color:#1c7e71}.chroma .s1,.chroma .ss{color:#cd5555}.chroma .il,.chroma .m,.chroma .mb,.chroma .mf,.chroma .mh,.chroma .mi,.chroma .mo{color:#b452cd}.chroma .ow{color:#8b008b}.chroma .c,.chroma .c1,.chroma .ch,.chroma .cm{color:#228b22}.chroma .cs{color:#8b008b;font-weight:700}.chroma .cp,.chroma .cpf{color:#1e889b}.chroma .gd,.chroma .gr{color:#a00}.chroma .gh{color:navy;font-weight:700}.chroma .gi{color:#0a0}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gs{font-weight:700}.chroma .gu{color:purple;font-weight:700}.chroma .gt{color:#a00}.chroma .w{color:#bbb} \ No newline at end of file diff --git a/themes/docsmith/static/build/stylesheets/home.min.css b/themes/docsmith/static/build/stylesheets/home.min.css index a21def7898f..5f32d36bf65 100644 --- a/themes/docsmith/static/build/stylesheets/home.min.css +++ b/themes/docsmith/static/build/stylesheets/home.min.css @@ -2,7 +2,7 @@ * Bootstrap v3.3.7 (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.chroma .ge,.chroma .sh,dfn{font-style:italic}.label,audio,canvas,progress,sub,sup,video{vertical-align:baseline}#article-body,.fa,.glyphicon{-moz-osx-font-smoothing:grayscale}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{border:0;vertical-align:middle}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}body{margin:0;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0089bc;text-decoration:none}a:focus,a:hover{color:#005170;text-decoration:underline}a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}figure{margin:0}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin:0 auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:22px;margin-bottom:22px;border:0;border-top:1px solid #eee}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Lato,sans-serif;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.badge,.label,dt,kbd kbd,label{font-weight:700}.h1,.h2,.h3,h1,h2,h3{margin-top:22px;margin-bottom:11px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,.label,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h4,.h5,.h6,h4,h5,h6{margin-top:11px;margin-bottom:11px}@media (min-width:768px){.lead{font-size:24px}}.small,small{font-size:87%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#00aeef}a.text-primary:focus,a.text-primary:hover{color:#0089bc}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .input-group-addon,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#00aeef}a.bg-primary:focus,a.bg-primary:hover{background-color:#0089bc}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:10px;margin:44px 0 22px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}ol,ul{margin-bottom:11px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:22px}dd,dt{line-height:1.42857143}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:11px 22px;margin:0 0 22px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}legend,pre{display:block;color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%;border-radius:0}.dropdown-menu,caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:22px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{color:#555;background-color:#ebeff0}kbd{color:#fff;background-color:#333;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{padding:10.5px;margin:0 0 11px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;background-color:#fff;border:1px solid #e7e6e6}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-left:15px;padding-right:15px}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;max-width:100%;margin-bottom:22px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.label,.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:16.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}.breadcrumb,.thumbnail,legend{margin-bottom:22px}fieldset{margin:0;min-width:0}legend{width:100%;font-size:24px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{line-height:1.42857143;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px;font-size:16px;color:#555}.form-control{width:100%;height:36px;padding:6px 12px;background-color:#fff;background-image:none}.form-control:focus{outline:0}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:36px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:33px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:22px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox-inline,.collapsing,.dropdown,.dropup,.has-feedback,.radio-inline{position:relative}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.btn-block+.btn-block,.help-block{margin-top:5px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:38px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.form-group-sm .form-control,.input-sm{padding:5px 10px;border-radius:0;font-size:14px}.input-sm{height:33px;line-height:1.5}select.input-sm{height:33px;line-height:33px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:33px;line-height:1.5}.form-group-sm select.form-control{height:33px;line-height:33px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:33px;min-height:36px;padding:6px 10px;font-size:14px;line-height:1.5}.btn-group-lg>.btn,.btn-lg,.form-group-lg .form-control,.input-lg{padding:10px 16px;border-radius:0}.input-lg{height:46px;line-height:1.3333333}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;font-size:18px;line-height:1.3333333}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:40px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback .form-control{padding-right:45px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:36px;height:36px;line-height:36px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:33px;height:33px;line-height:33px}.has-success .form-control{border-color:#3c763d}.has-success .form-control:focus{border-color:#2b542c}.has-success .input-group-addon{border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b}.has-warning .form-control:focus{border-color:#66512c}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442}.has-error .form-control:focus{border-color:#843534}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:27px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control,.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .checkbox,.form-inline .control-label,.form-inline .form-group,.form-inline .radio{margin-bottom:0;vertical-align:middle}.form-inline .form-control{width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:29px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:14px}}.btn{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#00aeef;border-color:#009bd6}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0089bc;border-color:#003f56}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#0089bc;border-color:#006f98}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#006f98;border-color:#003f56}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#00aeef;border-color:#009bd6}.btn-primary .badge{color:#00aeef;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#0089bc;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#005170;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{font-size:18px;line-height:1.3333333}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:14px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:9001;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:16px;background-color:#fff;border:1px solid #e7e6e6;background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-menu .divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e7e6e6}.dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#fff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:14px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:8991}.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.modal,.modal-backdrop{right:0;position:fixed}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.media-object.img-thumbnail,.nav>li>a>img{max-width:none}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child),.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group .form-control,.input-group-btn,.input-group-btn>.btn,.nav>li,.nav>li>a,.navbar{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0;font-size:18px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:16px;font-weight:400;line-height:1;text-align:center;border:1px solid #ccc;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{display:block}.nav>li>a{display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#0089bc}.nav .nav-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e5e5e5}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0}.navbar-brand,.navbar-nav>li>a{line-height:22px}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li{float:none}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2d8ec6}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}.navbar{border-radius:0}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{min-height:57px}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-static-top{border-radius:0}}.navbar-static-top{z-index:9001;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:21px 15px;font-size:18px;height:57px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:11.5px;margin-bottom:11.5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.callout-title:before+.lead,.has-inner-before:before+.lead,.has-outer-before:before+.lead,.navbar-nav>li>a{padding-top:10px}.library-category-title,.navbar-nav>li>a{padding-bottom:10px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:10.5px -15px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:22px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:21px;padding-bottom:21px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:10.5px -15px}@media (min-width:768px){.navbar-form .form-control,.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .checkbox,.navbar-form .control-label,.navbar-form .form-group,.navbar-form .radio{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:0}.navbar-btn{margin-top:10.5px;margin-bottom:10.5px}.navbar-btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-xs,.navbar-text{margin-top:17.5px;margin-bottom:17.5px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#323232;border-color:#212121}.navbar-default .navbar-brand{color:#a6a6a6}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#a6a6a6}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:transparent}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:#e6e6e6}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#212121}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#a6a6a6}.navbar-default .navbar-link:hover{color:#d9d9d9}.navbar-default .btn-link{color:#a6a6a6}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#d9d9d9}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:22px 0;border-radius:0}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#0089bc;background-color:#fff;border:1px solid #e7e6e6;margin-left:-1px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span,.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span,.pagination>li:first-child>a,.pagination>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span,.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#005170;background-color:#edf7fe;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#2d8ec6;border-color:#00aeef;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:14px;line-height:1.5}.badge,.label{line-height:1;white-space:nowrap}.pager{padding-left:0;margin:22px 0;list-style:none;text-align:center}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e7e6e6;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#edf7fe}.pager .next>a,.pager .next>span{float:right}.fa-pull-left,.pager .previous>a,.pager .previous>span,.progress-bar{float:left}.close,.list-group-item>.badge{float:right}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;color:#fff;text-align:center}.badge,.progress-bar{font-size:14px;text-align:center}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#00aeef}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#0089bc}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty,.modal,.popover{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0089bc;background-color:#fff}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:24px;font-weight:200}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.list-group-item,.thumbnail{background-color:#fff;border:1px solid #ddd}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:72px}}.thumbnail{padding:4px;line-height:1.42857143;border-radius:0;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.alert,.progress{margin-bottom:22px;border-radius:0}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0089bc}.thumbnail .caption{padding:9px;color:#333}.alert,.modal-body,.modal-footer,.modal-header,.panel-body{padding:15px}.alert h4{margin-top:0;color:inherit}.alert>p+p,.panel-group .panel+.panel{margin-top:5px}.alert>p,.alert>ul{margin-bottom:0}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:22px;background-color:#f5f5f5;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{width:0%;height:100%;line-height:22px;color:#fff;background-color:#00aeef;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle,.switcher-controls a{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#2d8ec6;border-color:#2d8ec6}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#cce5f3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:22px;background-color:#fff;border:1px solid transparent;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive,.panel>.table-responsive>.table{margin-bottom:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-title{margin-top:0;font-size:18px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0}.panel-group{margin-bottom:22px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#00aeef}.panel-primary>.panel-heading{color:#fff;background-color:#00aeef;border-color:#00aeef}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00aeef}.panel-primary>.panel-heading .badge{color:#00aeef;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00aeef}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{font-size:24px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-family:Helvetica,Arial,sans-serif;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal-open{overflow:hidden}.modal{overflow:hidden;top:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #e7e6e6;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop,.terminal,.tooltip-inner{background-color:#000}.modal-backdrop{top:0;bottom:0;left:0;z-index:1040}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.carousel-control,.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{border-bottom:1px solid #e7e6e6}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative}.modal-footer{text-align:right;border-top:1px solid #e7e6e6}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-style:normal;font-weight:400;text-align:left;text-align:start;font-size:14px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;max-width:276px;padding:1px;font-style:normal;font-weight:400;text-align:left;text-align:start;font-size:16px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:16px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1px -1px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;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;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover,.remove-gradient{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-image:none}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt .belt-inner .belt-content:before,.belt-outer .belt:after,.belt-outer .belt:before,.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.library-categories-row:after,.library-categories-row:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar-nav .open .dropdown-menu.dropdown-mega:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row-content:after,.row-content:before,.row-tiles:after,.row-tiles:before,.row:after,.row:before{content:" ";display:table}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt:after,.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.library-categories-row:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar:after,.pager:after,.panel-body:after,.row-content:after,.row-tiles:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.hidden,.hide,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.pull-right{float:right!important}.pull-left{float:left!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.callout-title:before,.has-inner-before:before{font-family:Lato,sans-serif;margin-top:11px;font-weight:400}#article-body .disclosure-note,.cloud_manager_link,.community,.note{background-color:#edf7fe}.affix{position:fixed}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}/*! + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}body,figure{margin:0}.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu{float:left}.btn,.text-nowrap{white-space:nowrap}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}.form-control-feedback,a.btn.disabled,a.resumator-basic-widget input[type=button].disabled,fieldset[disabled] a.btn,fieldset[disabled] a.resumator-basic-widget input[type=button]{pointer-events:none}#article-body,.fa,.glyphicon{-moz-osx-font-smoothing:grayscale}.fa-ul,.sub-menu{list-style-type:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{border:0;vertical-align:middle}svg:not(:root){overflow:hidden}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.glyphicon,address{font-style:normal}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.form-control,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-success,.open>.dropdown-toggle.btn-warning{background-image:none}.img-thumbnail,body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}body{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.42857143;color:#333}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0089bc;text-decoration:none}a:focus,a:hover{color:#005170;text-decoration:underline}a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin:0 auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:22px;margin-bottom:22px;border:0;border-top:1px solid #eee}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Lato,sans-serif;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}dt,kbd kbd,label{font-weight:700}address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143}.h1,.h2,.h3,h1,h2,h3{margin-top:22px;margin-bottom:11px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:11px;margin-bottom:11px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}@media (min-width:768px){.lead{font-size:24px}}.small,small{font-size:87%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#00aeef}a.text-primary:focus,a.text-primary:hover{color:#0089bc}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#00aeef}a.bg-primary:focus,a.bg-primary:hover{background-color:#0089bc}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:10px;margin:44px 0 22px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}address,dl{margin-bottom:22px}ol,ul{margin-bottom:11px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt:after,.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clear,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.doc-time:after,.form-horizontal .form-group:after,.library-categories-row:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar:after,.pager:after,.panel-body:after,.row-content:after,.row-tiles:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:11px 22px;margin:0 0 22px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#777}legend,pre{display:block;color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%;border-radius:0}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{color:#555;background-color:#ebeff0}kbd{color:#fff;background-color:#333;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{padding:10.5px;margin:0 0 11px;word-break:break-all;word-wrap:break-word;background-color:#fff;border:1px solid #e7e6e6}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;max-width:100%;margin-bottom:22px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:16.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{width:100%;margin-bottom:22px;font-size:24px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px}input[type=search]{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{line-height:1.42857143;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px;font-size:16px;color:#555}.form-control{width:100%;height:36px;padding:6px 12px;background-color:#fff}.form-control:focus{outline:0}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:36px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:33px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:22px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:38px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.form-group-sm .form-control,.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-sm{height:33px;line-height:1.5}select.input-sm{height:33px;line-height:33px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:33px;line-height:1.5}.form-group-sm select.form-control{height:33px;line-height:33px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:33px;min-height:36px;padding:6px 10px;font-size:14px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:40px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:45px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:36px;height:36px;line-height:36px;text-align:center}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:33px;height:33px;line-height:33px}.has-success .form-control{border-color:#3c763d}.has-success .form-control:focus{border-color:#2b542c}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b}.has-warning .form-control:focus{border-color:#66512c}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442}.has-error .form-control:focus{border-color:#843534}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:27px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:29px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:14px}}.btn{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle,.carousel-control:focus,.carousel-control:hover,.dropdown-toggle:focus,.modal,.modal-content,.navbar-toggle:focus,.open>a,button:focus{outline:0}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#00aeef;border-color:#009bd6}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0089bc;border-color:#003f56}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#0089bc;border-color:#006f98}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#006f98;border-color:#003f56}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#00aeef;border-color:#009bd6}.btn-primary .badge{color:#00aeef;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#0089bc;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#005170;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:14px;line-height:1.5;border-radius:0}.btn-block{display:block}.btn-block+.btn-block{margin-top:5px}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-menu{position:absolute;top:100%;left:0;z-index:9001;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:16px;text-align:left;background-color:#fff;border:1px solid #e7e6e6;background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.dropdown-menu .divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e7e6e6}.dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-image:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#fff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0}.dropdown-header,.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.nav>li.disabled>a{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:14px}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:8991}.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>.btn:last-child:not(:first-child),.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;line-height:1.3333333;border-radius:0;font-size:18px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.nav>li,.nav>li>a{display:block;position:relative}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:16px;font-weight:400;line-height:1;text-align:center;border:1px solid #ccc;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#0089bc}.nav .nav-divider{height:1px;margin:10px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px;margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li{float:none}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#2d8ec6}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}.navbar{border-radius:0}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:57px}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.carousel-inner,.embed-responsive,.media,.media-body,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:9001;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:21px 15px;font-size:18px;line-height:22px;height:57px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:11.5px;margin-bottom:11.5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:10.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:22px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:22px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-danger,.progress-striped .progress-bar-info,.progress-striped .progress-bar-success,.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:21px;padding-bottom:21px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:10.5px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:0}.navbar-btn{margin-top:10.5px;margin-bottom:10.5px}.navbar-btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-xs,.navbar-text{margin-top:17.5px;margin-bottom:17.5px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#323232;border-color:#212121}.navbar-default .navbar-brand{color:#a6a6a6}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#a6a6a6}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:transparent}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:#e6e6e6}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#212121}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#a6a6a6}.navbar-default .navbar-link:hover{color:#d9d9d9}.navbar-default .btn-link{color:#a6a6a6}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#d9d9d9}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:22px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:22px 0;border-radius:0}.pager li,.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#0089bc;background-color:#fff;border:1px solid #e7e6e6;margin-left:-1px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span,.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span,.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#005170;background-color:#edf7fe;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#2d8ec6;border-color:#00aeef;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:14px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pager{padding-left:0;margin:22px 0;list-style:none;text-align:center}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e7e6e6;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#edf7fe}.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:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;font-size:75%;color:#fff}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#00aeef}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#0089bc}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:14px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0089bc;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:24px;font-weight:200}.alert,.thumbnail{margin-bottom:22px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:72px}}.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0089bc}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;border-radius:0}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:22px;margin-bottom:22px;background-color:#f5f5f5;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:14px;line-height:22px;color:#fff;text-align:center;background-color:#00aeef;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-bar-info{background-color:#5bc0de}.progress-bar-warning{background-color:#f0ad4e}.progress-bar-danger{background-color:#d9534f}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle,.switcher-controls a{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#2d8ec6;border-color:#2d8ec6}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#cce5f3}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:22px;background-color:#fff;border:1px solid transparent;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-title{margin-top:0;font-size:18px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:22px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#00aeef}.panel-primary>.panel-heading{color:#fff;background-color:#00aeef;border-color:#00aeef}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00aeef}.panel-primary>.panel-heading .badge{color:#00aeef;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00aeef}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{float:right;font-size:24px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #e7e6e6;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e7e6e6}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e7e6e6}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:14px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:16px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:16px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1px -1px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.callout-title:before+.lead,.has-inner-before:before+.lead,.has-outer-before:before+.lead{padding-top:10px}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.belt-outer .belt .belt-inner .belt-content:after,.belt-outer .belt .belt-inner .belt-content:before,.belt-outer .belt:after,.belt-outer .belt:before,.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.library-categories-row:after,.library-categories-row:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar-nav .open .dropdown-menu.dropdown-mega:after,.navbar-nav .open .dropdown-menu.dropdown-mega:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row-content:after,.row-content:before,.row-tiles:after,.row-tiles:before,.row:after,.row:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.callout-title:before,.has-inner-before:before{font-family:Lato,sans-serif;margin-top:11px}#article-body .disclosure-note,.community,.note{background-color:#edf7fe;border-left:4px solid #bde2fb}.affix{position:fixed}.has-outer-before:before,.output:before{position:relative;top:-40px;left:-10.5px}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}/*! Animate.css - http://daneden.me/animate Licensed under the MIT license @@ -13,7 +13,7 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}@keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}.rounded{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}.border-radius-default,.cornered{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.remove-box-shadow{-webkit-box-shadow:none;box-shadow:none}.transition-base{-webkit-transition:.2s all;transition:.2s all}.link-standard:active,.link-standard:link,.link-standard:visited{color:#0089bc}.link-standard:hover{color:#005170}.callout-title:before{line-height:1.1;margin-bottom:11px;font-size:14px;font-size:19px;color:#000}.callout-title:before .small,.callout-title:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.callout-text *{font-size:16px;font-weight:400;line-height:1.5}.has-inner-before:before{line-height:1.1;font-size:14px;font-size:19px;color:#000;display:inline-block;margin-bottom:10px}.has-inner-before:before .small,.has-inner-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.has-outer-before{margin-top:40px}#article-body .disclosure-note:before,.community:before,.has-outer-before:before,.note:before{font-family:Lato,sans-serif;margin-top:11px;margin-bottom:11px}.has-outer-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;position:relative;display:block;height:0;top:-40px;left:-10.5px}.has-outer-before:before .small,.has-outer-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note{padding:15px;border-left:4px solid #bde2fb}.note *{font-size:16px;font-weight:400;line-height:1.5}.note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.note:before .small,.note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note:before+.lead{padding-top:10px}.note a{color:#0089bc}.note a:hover{color:#006489}.note strong{font-weight:700}.community{padding:15px;border-left:4px solid #bde2fb}.community *{font-size:16px;font-weight:400;line-height:1.5}.community:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.community:before .small,.community:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.community:before+.lead{padding-top:10px}.community a{color:#0089bc}.community a:hover{color:#006489}.community strong{font-weight:bolder}#article-body .disclosure-note{padding:15px;border-left:4px solid #bde2fb}#article-body .disclosure-note *{font-size:16px;font-weight:400;line-height:1.5}#article-body .disclosure-note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}#article-body .disclosure-note:before .small,#article-body .disclosure-note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}#article-body .disclosure-note:before+.lead{padding-top:10px}#article-body .disclosure-note a{color:#0089bc}#article-body .disclosure-note a:hover{color:#006489}#article-body .disclosure-note strong{font-weight:700}#article-body .disclosure-note img.disclosure-icon{display:inline-block;height:1.5em;margin:-.1em 0 0;-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(1);transform:scaleY(1)}#article-body .disclosure-note .disclosure-note-content{overflow:hidden;margin-top:10px}#article-body .disclosure-note table:not([class])>thead>tr>th{background:0 0}#article-body .disclosure-note table:not([class])>tbody>tr:nth-of-type(odd){background:#fff}#article-body .disclosure-note.disclosed img.disclosure-icon{-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(-1);transform:scaleY(-1)}.caution{padding:15px;background-color:#fdf3f2;border-left:4px solid #f8c9c4}.caution *{font-size:16px;font-weight:400;line-height:1.5}.caution:before,.deprecated:before{line-height:1.1;display:inline-block;margin-top:11px;font-family:Lato,sans-serif;margin-bottom:11px}.caution:before{color:inherit;font-size:14px;font-size:19px;font-weight:400}.caution:before .small,.caution:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.caution:before+.lead{padding-top:10px}.caution a{color:#0089bc}.caution a:hover{color:#006489}.caution strong{font-weight:700}.deprecated{padding:15px;background-color:#ffeedf;border-left:4px solid #ffd4ac}.deprecated *{font-size:16px;font-weight:400;line-height:1.5}.deprecated:before{color:inherit;font-size:14px;font-size:19px;font-weight:400}.deprecated:before .small,.deprecated:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.deprecated:before+.lead{padding-top:10px}.deprecated a{color:#0089bc}.deprecated a:hover{color:#006489}.deprecated strong{font-weight:700}.cloud_manager_link{padding:15px;border-left:4px solid #bde2fb}.file-name,.variable{border-width:1px;border-style:solid}.cloud_manager_link *{font-size:16px;font-weight:400;line-height:1.5}.cloud_manager_link:before{display:inline-block;font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}.cloud_manager_link:before .small,.cloud_manager_link:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.cloud_manager_link:before+.lead{padding-top:10px}.cloud_manager_link a{color:#0089bc}.cloud_manager_link a:hover{color:#006489}.cloud_manager_link strong{font-weight:700}.terminal{color:rgba(65,255,0,.85);padding:0 10px}.file dt:before+.lead,.output:before+.lead{padding-top:10px}.terminal code{white-space:pre-line}.file pre.chroma code,pre code{white-space:pre}pre.terminal code::-moz-selection{background-color:#B2D7FF;color:#000}pre.terminal code::selection{background-color:#B2D7FF;color:#000}.output{margin-top:40px;background-color:#f8f8f8}.output:before{font-family:Lato,sans-serif;line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;color:#000;position:relative;display:block;height:0;top:-40px;left:-10.5px;content:"Output"}.output:before .small,.output:before small{font-weight:400;line-height:1;color:#777;font-size:75%}pre code{word-wrap:normal;overflow-wrap:normal}.variable{background-color:#cff0df;border-color:#a9e3c5!important}.file-name{background-color:#f9f9ef;border-color:#ebebca!important}.file dt{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}.file dt:before,.navbar{font-family:Lato,sans-serif}.file dt:before{line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;padding-right:5px}.file dt:before .small,.file dt:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.file dd+dt{margin-top:20px}.file dt{background-color:#073642;padding:.5em;margin-bottom:0;color:#93a1a1;text-align:center;font-size:16px}.highlight{margin-bottom:.7em}@media screen and (min-width:768px){.sticky-header{position:fixed;right:0;left:0;z-index:1030;top:0;border-width:0 0 1px}.sticky-header .navbar-collapse{max-height:340px}.navbar.navbar-default{height:57px}}@media screen and (min-width:768px) and (max-device-width:480px) and (orientation:landscape){.sticky-header .navbar-collapse{max-height:200px}}@media screen and (min-width:768px) and (min-width:768px){.sticky-header{border-radius:0}}.navbar{font-size:15px;line-height:15px;font-weight:300;margin-bottom:0;border:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{font-size:19px;line-height:19px;-webkit-transition:.2s color;transition:.2s color}.navbar .navbar-nav>li>span{display:inline-block}.navbar .divider-vertical{margin-left:15px;margin-right:15px}@media (max-width:767px){.navbar .divider-vertical{display:none!important}}.navbar .divider-vertical span{color:#737373!important}.navbar .navbar-nav .btn{margin-left:12px;font-size:15px}.navbar .navbar-nav .btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar .nav-home{color:inherit!important}.navbar .nav-home:after{content:"Home"}@media screen and (min-width:768px){.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px}.navbar .nav-home:after{content:""}}@media screen and (min-width:992px){.navbar .nav-home{display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px}.navbar .nav-home.tile{font-size:150px;margin-bottom:20px!important}.navbar .nav-home.tile-small{font-size:100px;margin-bottom:35px!important}.navbar .nav-home.glyphicon-heart{color:#e74c3c}.navbar .nav-home:before{content:"\e021"}}.nav-sidebar,.nav-sidebar .nav-sidebar.collapse{display:none}@media screen and (min-width:992px) and screen and (min-width:768px){.navbar .nav-home.tile-small{margin-bottom:0!important}}.navbar.navbar-default .navbar-nav>li.dropdown.open{background-color:#4c4c4c}#main-nav .navbar-collapse{max-height:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:0}.subnav{background-color:#323232;border-color:#212121;font-weight:400;font-family:Lato,sans-serif;min-height:0}.subnav .navbar-brand{color:#a6a6a6}.subnav .navbar-brand:focus,.subnav .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.subnav .navbar-text{color:#777}.subnav .navbar-nav>li>a{color:#a6a6a6}.subnav .navbar-nav>li>a:focus,.subnav .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav>.active>a,.subnav .navbar-nav>.active>a:focus,.subnav .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav>.disabled>a,.subnav .navbar-nav>.disabled>a:focus,.subnav .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.subnav .navbar-toggle{border-color:transparent}.subnav .navbar-toggle:focus,.subnav .navbar-toggle:hover{background-color:transparent}.subnav .navbar-toggle .icon-bar{background-color:#e6e6e6}.subnav .navbar-collapse,.subnav .navbar-form{border-color:#212121}.subnav .navbar-nav>.open>a,.subnav .navbar-nav>.open>a:focus,.subnav .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.subnav .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.subnav .navbar-nav .open .dropdown-menu>li>a:focus,.subnav .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.active>a,.subnav .navbar-nav .open .dropdown-menu>.active>a:focus,.subnav .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.disabled>a,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:focus,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.subnav .navbar-link{color:#a6a6a6}.subnav .navbar-link:hover{color:#d9d9d9}.subnav .btn-link{color:#a6a6a6}.subnav .btn-link:focus,.subnav .btn-link:hover{color:#d9d9d9}.subnav .btn-link[disabled]:focus,.subnav .btn-link[disabled]:hover,fieldset[disabled] .subnav .btn-link:focus,fieldset[disabled] .subnav .btn-link:hover{color:#ccc}.subnav li>a{font-size:15px;line-height:15px}@media screen and (min-width:768px){.navbar li.active>a>span.nav-home{display:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:21px}.subnav li>a{margin:13px 12px 0;padding:0}}.sidebar-library nav>ul>li,.subnav li:first-child a{margin-left:0}.subnav li:last-child a{margin-right:0}.subnav .navbar-toggle{margin-top:21px;margin-bottom:21px}.subnav-divider{margin:0 -15px}@media screen and (min-width:768px){.subnav-divider{margin:0}}.nav-sidebar .nav-sidebar,.sidebar>ul>li{margin-bottom:30px}.nav-sidebar{border-right:1px solid #e7e6e6;position:static}.nav-sidebar li{text-align:right;border-right:#fff solid 2px}.nav-sidebar li:hover{border-right:#e7e6e6 solid 2px}.nav-sidebar li.active,.nav-sidebar li.header-active{border-right:#000 solid 2px}.nav-sidebar li>a{padding:3px 15px;font-size:14px}.nav-sidebar .nav-sidebar.collapse.in{display:block}tr.nav-sidebar .nav-sidebar.collapse.in{display:table-row}tbody.nav-sidebar .nav-sidebar.collapse.in{display:table-row-group}@media screen and (min-width:992px){.nav-sidebar{width:213px;top:24px;display:block}.nav-sidebar.affix{position:fixed}.nav-sidebar.affix-bottom{position:absolute}}.sidebar-toggle{background:0 0;border:none;padding:0}.sidebar-toggle .toggle-closed,.sidebar-toggle .toggle-open{font-size:10px;position:relative;top:-1px;color:#626262}.sidebar-toggle .toggle-closed:hover,.sidebar-toggle .toggle-open:hover{color:#000}.sidebar-modal ul{list-style:none;padding-left:0}.sidebar-modal ul li a{padding:5px 0 5px 10px}.sidebar-modal ul li a:hover{background-color:transparent}.sidebar-modal ul li a:active{background-color:#eee}.sidebar-modal ul li.header a{display:inline-block;padding:5px 0;font-weight:800}.sidebar-modal ul li.header a:hover{background-color:transparent}.sidebar{margin-top:30px!important;padding-top:30px;border-top:1px solid #e7e6e6}.sidebar ul{list-style:none;padding-left:0}@media screen and (min-width:768px){.sidebar{margin-top:0!important;padding-top:0;border-top:0}.sidebar ul{padding-left:20px;border-left:1px solid #e7e6e6}.sidebar>ul{text-align:left}}.sidebar ul>li>ul{border:0;padding-left:0}.sidebar ul.list{padding-left:20px;list-style:disc}.sidebar ul.list>li{padding:10px 0;font-size:16px}@media screen and (min-width:768px){.sidebar>ul>li{padding:0}}.sidebar>ul>li>ul>li{padding:6px 0;font-size:19px}.sidebar>ul>li>ul>li:first-child{padding-top:0}.sidebar>ul>li>ul>li:last-child{padding-bottom:0}@media screen and (min-width:768px){.sidebar>ul>li>ul>li{padding:0;font-size:16px}}.nav-tiny>ul{padding:0;width:90%;display:table;table-layout:fixed}.nav-tiny>ul>li{display:table-cell}.toggle-closed,.toggle-open{display:none}.follow-header{top:0;display:block;z-index:1030;background-color:rgba(0,0,0,.4)}.follow-header.affix{position:fixed}.follow-header.affix-bottom{position:absolute}@media screen and (min-width:992px){.follow-header{display:none}.container{max-width:970px}}.jumbotron{padding:0;margin:0;line-height:1.64285714;color:inherit;background-color:transparent}.jumbotron .h1,.jumbotron h1{font-size:39px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron .h3,.jumbotron h3{font-size:23px}.jumbotron .h4,.jumbotron h4{font-size:21px}.jumbotron .h5,.jumbotron h5{font-size:20px}.jumbotron .h6,.jumbotron h6{font-size:18px}.jumbotron .h2,.jumbotron .h3,.jumbotron .h4,.jumbotron .h5,.jumbotron .h6,.jumbotron h2,.jumbotron h3,.jumbotron h4,.jumbotron h5,.jumbotron h6{font-weight:300}@media screen and (min-width:768px){.jumbotron{padding:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.jumbotron .h1,.jumbotron h1{font-size:45px}.jumbotron .h2,.jumbotron h2{font-size:26px}.jumbotron .h3,.jumbotron h3{font-size:24px}.jumbotron .h4,.jumbotron h4{font-size:23px}.jumbotron .h5,.jumbotron h5{font-size:21px}.jumbotron .h6,.jumbotron h6{font-size:20px}.dropdown-menu.dropdown-main-nav{padding:15px 0}}.jumbotron .navbar-brand{font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.switcher-controls,.table-pricing-total>tbody>tr:last-child>td,.table>thead>tr>th{font-family:Lato,sans-serif}.dropdown-menu{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.125);box-shadow:0 6px 12px rgba(0,0,0,.125)}.dropdown-menu>li>a{-webkit-transition:none;transition:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#2d8ec6}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#d9d9d9}.dropdown-menu.dropdown-main-nav{background-color:#4c4c4c;border:0}.dropdown-menu.dropdown-main-nav li a{display:block;padding:6px 20px}.dropdown-menu.dropdown-main-nav li a:active,.dropdown-menu.dropdown-main-nav li a:link,.dropdown-menu.dropdown-main-nav li a:visited{color:#999}.dropdown-menu.dropdown-main-nav li a:hover{color:#fff;background-color:#6f6f6f}.dropdown-menu.dropdown-main-nav .divider{background-color:#555}.navbar-nav .open .dropdown-menu.dropdown-mega{margin-left:-15px;margin-right:0;z-index:9001}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega{padding:15px 0;margin-right:-150px;width:600px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{position:relative;min-height:1px;padding:0}@media (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{float:left;width:33.33333333%}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul{padding:0;list-style:none}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li{margin:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{-webkit-transition:none;transition:none;line-height:22px;padding:8px 35px 8px 40px;display:block;color:#999;font-size:19px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a:hover{color:#fff;background-color:#6f6f6f}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{padding:6px 20px;font-size:16px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third.middle{border-color:#555;border-style:solid;border-width:0 1px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third .divider{margin:10px 20px}.pagination,.pagination>li:first-child>a,.pagination>li:first-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.pagination>li.active a{color:#fff!important}.pagination>li a:link{text-decoration:none}.pager>li>a{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.modal-open .navbar-fixed-bottom,.modal-open .navbar-fixed-top,body.modal-open{margin-right:0}.modal-footer{margin-top:0}.switcher-content{display:none;margin-top:0!important}.switcher-content.active{display:block}.switcher-controls{width:100%;display:table;table-layout:fixed}.switcher-controls a{-webkit-transition:none;transition:none;display:table-cell;width:100%;padding:10px;background-color:#fff;border:2px solid #00aeef;border-right-width:0;text-align:center;cursor:pointer;color:#00aeef}.switcher-controls a:active,.switcher-controls a:link,.switcher-controls a:visited{color:#00aeef}.switcher-controls a:hover{color:#0089bc}.switcher-controls a:last-child{border-right-width:2px}.switcher-controls a.active{background-color:#00aeef;border-color:#00aeef;color:#fff}.switcher-arrow{-webkit-transition:bottom .2s;transition:bottom .2s;display:block;position:relative;width:2px;border:0 solid transparent;border-width:15px 15px 0;margin:0 auto;bottom:15px}.switcher-arrow.active{border-color:#00aeef transparent;bottom:0}.label{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>tbody>tr>td,.table>thead>tr>th{padding:17px 10px;vertical-align:middle;text-align:left}.alert{color:#fff;border:0}.panel,.well{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>thead>tr>th{color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}.table>tbody>tr:first-child{border-top:none}.table>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}.table>tbody>tr>td{width:0;color:#747474}.table>tbody>tr>td:last-child{border-right:none}.table>tbody>tr>td.large{font-size:20px;color:#000}.table>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}table.lntable tbody{display:table;width:inherit}table.lntable tbody>tr>td.lntd:first-child{width:25px}.table-responsive>.table>tbody>tr:last-child{border-bottom-width:0}@media screen and (min-width:768px){.table-responsive>.table>tbody>tr:last-child{border-bottom-width:1px}}.table-pricing,.table-pricing-green{border:none}.table-shadow{-webkit-box-shadow:0 1px 1px 1px rgba(174,174,174,.2);box-shadow:0 1px 1px 1px rgba(174,174,174,.2)}.table-pricing>thead>tr>th{border-top:none;text-align:center;margin-right:12px}.table-pricing>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-green>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f6fcf9;border-bottom:2px solid #3BB878}.table-pricing-green>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-neutral{border:none}.table-pricing-neutral>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f3f7f8;border-bottom:2px solid #8ab}.table-pricing-neutral>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-total>tbody>tr:last-child{font-size:18px;font-weight:300;border-bottom:none}.table-pricing-total>tbody>tr:last-child>td{color:#000}.table-pricing-total>tbody>tr:last-child>td .small{font-weight:100}@media screen and (min-width:768px){.table-pricing-total>tbody>tr:last-child{font-size:22px;font-weight:300;border-bottom:none}}.center-first-column>table tbody>tr:first-child{text-align:center!important}.fixed-layout>table{table-layout:fixed}.form-control{padding-top:8px;border:1px solid #e7e6e6;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;color:#343434;font-size:16px;font-weight:400;-webkit-transition:none;transition:none;-webkit-box-shadow:none;box-shadow:none}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#cecccc}.input-lg{font-size:18px}.form-control-lg,.form-control-sm{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:none;box-shadow:none}.input-group-addon{-moz-border-radius:0;-webkit-border-radius:0;background-color:#f9f9ef;color:#6f6f6f}.input-group-addon .lead a{font-weight:300}.input-group-addon .span>a,.input-group-addon address>a,.input-group-addon em>a,.input-group-addon h1>a,.input-group-addon h2>a,.input-group-addon h3>a,.input-group-addon h4>a,.input-group-addon h5>a,.input-group-addon h6>a,.input-group-addon li>a,.input-group-addon p>a,.input-group-addon td>a{-webkit-transition:.2s color;transition:.2s color}.input-group-addon .nav li>a,.input-group-addon .span>a:active,.input-group-addon .span>a:hover,.input-group-addon address>a:active,.input-group-addon address>a:hover,.input-group-addon em>a:active,.input-group-addon em>a:hover,.input-group-addon h1>a:active,.input-group-addon h1>a:hover,.input-group-addon h2>a:active,.input-group-addon h2>a:hover,.input-group-addon h3>a:active,.input-group-addon h3>a:hover,.input-group-addon h4>a:active,.input-group-addon h4>a:hover,.input-group-addon h5>a:active,.input-group-addon h5>a:hover,.input-group-addon h6>a:active,.input-group-addon h6>a:hover,.input-group-addon li>a:active,.input-group-addon li>a:hover,.input-group-addon p>a:active,.input-group-addon p>a:hover,.input-group-addon td>a:active,.input-group-addon td>a:hover{text-decoration:none}.input-group-addon.separated{border-bottom-color:#e4e4b7}.input-group-addon .h1,.input-group-addon .h2,.input-group-addon .h3,.input-group-addon .h4,.input-group-addon .h5,.input-group-addon .h6,.input-group-addon h1,.input-group-addon h2,.input-group-addon h3,.input-group-addon h4,.input-group-addon h5,.input-group-addon h6{color:#000}.input-group-addon.jumbotron .h1,.input-group-addon.jumbotron h1{color:#2f2f2f}.input-group-addon.jumbotron .h2,.input-group-addon.jumbotron .h3,.input-group-addon.jumbotron .h4,.input-group-addon.jumbotron .h5,.input-group-addon.jumbotron .h6,.input-group-addon.jumbotron h2,.input-group-addon.jumbotron h3,.input-group-addon.jumbotron h4,.input-group-addon.jumbotron h5,.input-group-addon.jumbotron h6{color:#6f6f6f}.input-group-addon .span>a:active,.input-group-addon .span>a:link,.input-group-addon .span>a:visited,.input-group-addon address>a:active,.input-group-addon address>a:link,.input-group-addon address>a:visited,.input-group-addon em>a:active,.input-group-addon em>a:link,.input-group-addon em>a:visited,.input-group-addon h1>a:active,.input-group-addon h1>a:link,.input-group-addon h1>a:visited,.input-group-addon h2>a:active,.input-group-addon h2>a:link,.input-group-addon h2>a:visited,.input-group-addon h3>a:active,.input-group-addon h3>a:link,.input-group-addon h3>a:visited,.input-group-addon h4>a:active,.input-group-addon h4>a:link,.input-group-addon h4>a:visited,.input-group-addon h5>a:active,.input-group-addon h5>a:link,.input-group-addon h5>a:visited,.input-group-addon h6>a:active,.input-group-addon h6>a:link,.input-group-addon h6>a:visited,.input-group-addon li>a:active,.input-group-addon li>a:link,.input-group-addon li>a:visited,.input-group-addon p>a:active,.input-group-addon p>a:link,.input-group-addon p>a:visited,.input-group-addon td>a:active,.input-group-addon td>a:link,.input-group-addon td>a:visited{color:#0089bc}.input-group-addon .span>a:hover,.input-group-addon address>a:hover,.input-group-addon em>a:hover,.input-group-addon h1>a:hover,.input-group-addon h2>a:hover,.input-group-addon h3>a:hover,.input-group-addon h4>a:hover,.input-group-addon h5>a:hover,.input-group-addon h6>a:hover,.input-group-addon li>a:hover,.input-group-addon p>a:hover,.input-group-addon td>a:hover{color:#005170}.input-group-addon .span>a .glyphicon.tile,.input-group-addon address>a .glyphicon.tile,.input-group-addon em>a .glyphicon.tile,.input-group-addon h1>a .glyphicon.tile,.input-group-addon h2>a .glyphicon.tile,.input-group-addon h3>a .glyphicon.tile,.input-group-addon h4>a .glyphicon.tile,.input-group-addon h5>a .glyphicon.tile,.input-group-addon h6>a .glyphicon.tile,.input-group-addon li>a .glyphicon.tile,.input-group-addon p>a .glyphicon.tile,.input-group-addon td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.input-group-addon .span>a .glyphicon.tile:active,.input-group-addon .span>a .glyphicon.tile:hover,.input-group-addon address>a .glyphicon.tile:active,.input-group-addon address>a .glyphicon.tile:hover,.input-group-addon em>a .glyphicon.tile:active,.input-group-addon em>a .glyphicon.tile:hover,.input-group-addon h1>a .glyphicon.tile:active,.input-group-addon h1>a .glyphicon.tile:hover,.input-group-addon h2>a .glyphicon.tile:active,.input-group-addon h2>a .glyphicon.tile:hover,.input-group-addon h3>a .glyphicon.tile:active,.input-group-addon h3>a .glyphicon.tile:hover,.input-group-addon h4>a .glyphicon.tile:active,.input-group-addon h4>a .glyphicon.tile:hover,.input-group-addon h5>a .glyphicon.tile:active,.input-group-addon h5>a .glyphicon.tile:hover,.input-group-addon h6>a .glyphicon.tile:active,.input-group-addon h6>a .glyphicon.tile:hover,.input-group-addon li>a .glyphicon.tile:active,.input-group-addon li>a .glyphicon.tile:hover,.input-group-addon p>a .glyphicon.tile:active,.input-group-addon p>a .glyphicon.tile:hover,.input-group-addon td>a .glyphicon.tile:active,.input-group-addon td>a .glyphicon.tile:hover{color:#494949}.input-group-addon ul.nav-sidebar>li.active>a{color:#000}.input-group-addon ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.input-group-addon ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.input-group-addon ul.nav-sidebar>li>a:hover{color:#000}.input-group-addon ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.input-group-addon ul.dropdown-menu>li>a:hover{color:#fff}.input-group-addon.subnav{opacity:.96}.input-group-addon.subnav .navbar-brand{color:#000}.input-group-addon.subnav .navbar-brand a{text-decoration:none;color:#000}.input-group-addon.subnav li>a{color:#aaa}.input-group-addon.subnav li>a.active{color:#000}.input-group-addon.subnav li>a:hover{color:#555}.input-group-addon .sidebar strong,.input-group-addon.subnav .navbar-toggle{color:#000}.input-group-addon.subnav .navbar-toggle:hover{background-color:transparent}.input-group-addon.subnav .navbar-collapse{border-top-color:#e7e6e6}.input-group-addon.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.input-group-addon .sidebar a strong,.input-group-addon .sidebar a strong:active,.input-group-addon .sidebar a strong:link,.input-group-addon .sidebar a strong:visited{color:#0089bc}.input-group-addon .sidebar a strong:hover{color:#005170}.input-group-addon cite.bubble strong{color:#414141}.input-group-addon cite.bubble a:active,.input-group-addon cite.bubble a:link,.input-group-addon cite.bubble a:visited{color:#0089bc}.input-group-addon cite.bubble a:hover{color:#005170}.input-group-addon blockquote,.input-group-addon blockquote p,.input-group-addon blockquote ul>li{color:#747474}.has-error .form-control,.has-error .form-control:focus,.has-success .form-control,.has-success .form-control:focus,.has-warning .form-control,.has-warning .form-control:focus{-webkit-box-shadow:none;box-shadow:none}button:focus{outline:0}html{-webkit-tap-highlight-color:transparent;color:#444;background-color:#0a0a0a;font-size:16px}html a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}html a:active,html a:hover{color:#f2f2f2;text-decoration:none}@media (min-width:768px){html{font-size:18px}.belt-outer .belt .belt-inner{float:left;width:83.33333333%}}nav,section{background-color:inherit}header,nav,section{margin:0}.belt-outer .belt,.row-content,.row-tiles{margin-left:-15px;margin-right:-15px}header .row-content:first-child,header .row:first-child,nav .row-content:first-child,nav .row:first-child,section .row-content:first-child,section .row:first-child{margin-top:30px}header .row-content:last-child,header .row:last-child,nav .row-content:last-child,nav .row:last-child,section .row-content:last-child,section .row:last-child{margin-bottom:30px}header .row :first-child,header .row-content :first-child,nav .row :first-child,nav .row-content :first-child,section .row :first-child,section .row-content :first-child{margin-top:0}header .row :last-child,header .row-content :last-child,nav .row :last-child,nav .row-content :last-child,section .row :last-child,section .row-content :last-child{margin-bottom:0}.doc-title,header.small .row:last-child,nav.small .row:last-child,section.small .row:last-child{margin-bottom:5px}header.small,nav.small,section.small{font-size:14px}header.small .row:first-child,nav.small .row:first-child,section.small .row:first-child{margin-top:5px}header.small .row :first-child,nav.small .row :first-child,section.small .row :first-child{margin-top:0}header.small .row :last-child,nav.small .row :last-child,section.small .row :last-child{margin-bottom:0}@media screen and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:60px;padding-bottom:60px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:30px;padding-bottom:30px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:60px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:60px}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:30px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:30px}}@media screen and (min-width:768px){header.some-space,nav.some-space,section.some-space{padding-top:30px;padding-bottom:30px}header.some-space.bottom,nav.some-space.bottom,section.some-space.bottom{padding-top:0}header.some-space.top,nav.some-space.top,section.some-space.top{padding-bottom:0}header.some-space-top,nav.some-space-top,section.some-space-top{padding-top:30px}header.some-space-bottom,nav.some-space-bottom,section.some-space-bottom{padding-bottom:30px}header.super-space,nav.super-space,section.super-space{padding-top:90px;padding-bottom:90px}header.super-space.bottom,nav.super-space.bottom,section.super-space.bottom{padding-top:0}header.super-space.top,nav.super-space.top,section.super-space.top{padding-bottom:0}header.super-space-top,nav.super-space-top,section.super-space-top{padding-top:90px}header.super-space-bottom,nav.super-space-bottom,section.super-space-bottom{padding-bottom:90px}}.sr-only,div.no-padding,li.list-group-item{padding:0}header.flush-bottom,nav.flush-bottom,section.flush-bottom{margin-bottom:0;padding-bottom:0}header.flush-bottom .row-content:last-child,header.flush-bottom .row:last-child,nav.flush-bottom .row-content:last-child,nav.flush-bottom .row:last-child,section.flush-bottom .row-content:last-child,section.flush-bottom .row:last-child{margin-bottom:0}.row-content.extra-bottom{margin-bottom:90px}.row-content.super-bottom{margin-bottom:120px}@media screen and (max-width:768px){.row-content.shrink{margin-bottom:30px}}.pad-xs{margin-top:30px}.separated{border-bottom-width:1px;border-bottom-style:solid}@media screen and (min-width:768px){.pad-xs{margin-top:0}.belt-outer{height:100px}.belt-outer .belt .belt-inner{top:-50px}}.belt-outer .belt .belt-inner{min-height:1px;background-color:#f9f9ef;color:#6f6f6f;padding:20px;border:1px solid #ebebca;margin-bottom:0;position:relative}@media (min-width:768px){.belt-outer .belt .belt-inner{margin-left:8.33333333%}}.belt-outer .belt .belt-inner .lead a{font-weight:300}.belt-outer .belt .belt-inner .span>a,.belt-outer .belt .belt-inner address>a,.belt-outer .belt .belt-inner em>a,.belt-outer .belt .belt-inner h1>a,.belt-outer .belt .belt-inner h2>a,.belt-outer .belt .belt-inner h3>a,.belt-outer .belt .belt-inner h4>a,.belt-outer .belt .belt-inner h5>a,.belt-outer .belt .belt-inner h6>a,.belt-outer .belt .belt-inner li>a,.belt-outer .belt .belt-inner p>a,.belt-outer .belt .belt-inner td>a{-webkit-transition:.2s color;transition:.2s color}.belt-outer .belt .belt-inner .nav li>a,.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:hover{text-decoration:none}.belt-outer .belt .belt-inner.separated{border-bottom-color:#e4e4b7}.belt-outer .belt .belt-inner .h1,.belt-outer .belt .belt-inner .h2,.belt-outer .belt .belt-inner .h3,.belt-outer .belt .belt-inner .h4,.belt-outer .belt .belt-inner .h5,.belt-outer .belt .belt-inner .h6,.belt-outer .belt .belt-inner h1,.belt-outer .belt .belt-inner h2,.belt-outer .belt .belt-inner h3,.belt-outer .belt .belt-inner h4,.belt-outer .belt .belt-inner h5,.belt-outer .belt .belt-inner h6{color:#000}.belt-outer .belt .belt-inner.jumbotron .h1,.belt-outer .belt .belt-inner.jumbotron h1{color:#2f2f2f}.belt-outer .belt .belt-inner.jumbotron .h2,.belt-outer .belt .belt-inner.jumbotron .h3,.belt-outer .belt .belt-inner.jumbotron .h4,.belt-outer .belt .belt-inner.jumbotron .h5,.belt-outer .belt .belt-inner.jumbotron .h6,.belt-outer .belt .belt-inner.jumbotron h2,.belt-outer .belt .belt-inner.jumbotron h3,.belt-outer .belt .belt-inner.jumbotron h4,.belt-outer .belt .belt-inner.jumbotron h5,.belt-outer .belt .belt-inner.jumbotron h6{color:#6f6f6f}.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:link,.belt-outer .belt .belt-inner .span>a:visited,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:link,.belt-outer .belt .belt-inner address>a:visited,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:link,.belt-outer .belt .belt-inner em>a:visited,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:link,.belt-outer .belt .belt-inner h1>a:visited,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:link,.belt-outer .belt .belt-inner h2>a:visited,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:link,.belt-outer .belt .belt-inner h3>a:visited,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:link,.belt-outer .belt .belt-inner h4>a:visited,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:link,.belt-outer .belt .belt-inner h5>a:visited,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:link,.belt-outer .belt .belt-inner h6>a:visited,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:link,.belt-outer .belt .belt-inner li>a:visited,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:link,.belt-outer .belt .belt-inner p>a:visited,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:link,.belt-outer .belt .belt-inner td>a:visited{color:#0089bc}.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:hover{color:#005170}.belt-outer .belt .belt-inner .span>a .glyphicon.tile,.belt-outer .belt .belt-inner address>a .glyphicon.tile,.belt-outer .belt .belt-inner em>a .glyphicon.tile,.belt-outer .belt .belt-inner h1>a .glyphicon.tile,.belt-outer .belt .belt-inner h2>a .glyphicon.tile,.belt-outer .belt .belt-inner h3>a .glyphicon.tile,.belt-outer .belt .belt-inner h4>a .glyphicon.tile,.belt-outer .belt .belt-inner h5>a .glyphicon.tile,.belt-outer .belt .belt-inner h6>a .glyphicon.tile,.belt-outer .belt .belt-inner li>a .glyphicon.tile,.belt-outer .belt .belt-inner p>a .glyphicon.tile,.belt-outer .belt .belt-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.belt-outer .belt .belt-inner .span>a .glyphicon.tile:active,.belt-outer .belt .belt-inner .span>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner address>a .glyphicon.tile:active,.belt-outer .belt .belt-inner address>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner em>a .glyphicon.tile:active,.belt-outer .belt .belt-inner em>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner li>a .glyphicon.tile:active,.belt-outer .belt .belt-inner li>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner p>a .glyphicon.tile:active,.belt-outer .belt .belt-inner p>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner td>a .glyphicon.tile:active,.belt-outer .belt .belt-inner td>a .glyphicon.tile:hover{color:#494949}.belt-outer .belt .belt-inner ul.nav-sidebar>li.active>a{color:#000}.belt-outer .belt .belt-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,li,p{font-weight:400}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a:hover{color:#000}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:hover,.fa-inverse{color:#fff}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.belt-outer .belt .belt-inner.subnav{opacity:.96}.belt-outer .belt .belt-inner.subnav .navbar-brand{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.belt-outer .belt .belt-inner.subnav li>a{color:#aaa}.belt-outer .belt .belt-inner.subnav li>a.active{color:#000}.belt-outer .belt .belt-inner.subnav li>a:hover{color:#555}.belt-outer .belt .belt-inner .sidebar strong,.belt-outer .belt .belt-inner.subnav .navbar-toggle{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-toggle:hover{background-color:transparent}.white,q.bubble{background-color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.belt-outer .belt .belt-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.belt-outer .belt .belt-inner .sidebar a strong,.belt-outer .belt .belt-inner .sidebar a strong:active,.belt-outer .belt .belt-inner .sidebar a strong:link,.belt-outer .belt .belt-inner .sidebar a strong:visited{color:#0089bc}.belt-outer .belt .belt-inner .sidebar a strong:hover{color:#005170}.belt-outer .belt .belt-inner cite.bubble strong{color:#414141}.belt-outer .belt .belt-inner cite.bubble a:active,.belt-outer .belt .belt-inner cite.bubble a:link,.belt-outer .belt .belt-inner cite.bubble a:visited{color:#0089bc}.belt-outer .belt .belt-inner cite.bubble a:hover{color:#005170}.belt-outer .belt .belt-inner blockquote,.belt-outer .belt .belt-inner blockquote p,.belt-outer .belt .belt-inner blockquote ul>li{color:#747474}.belt-outer .belt .belt-inner .belt-content{margin:0}.vertical-center{display:table-cell;vertical-align:middle}@media screen and (min-width:768px){.reduce-gutter{padding:0 2px}q.bubble{min-height:152px}}#article-body .h1 a,#article-body .h2 a,#article-body .h3 a,#article-body .h4 a,#article-body .h5 a,#article-body .h6 a,#article-body h1 a,#article-body h2 a,#article-body h3 a,#article-body h4 a,#article-body h5 a,#article-body h6 a,.doc .h1 a,.doc .h2 a,.doc .h3 a,.doc .h4 a,.doc .h5 a,.doc .h6 a,.doc h1 a,.doc h2 a,.doc h3 a,.doc h4 a,.doc h5 a,.doc h6 a{padding-left:10px;opacity:0}img.full-width{display:block;width:100%}img.centered-icon{margin:0 auto;display:block}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')}.large{font-size:18px}.small{font-size:14px}.h1,h1{font-size:48px}.h2,h2{font-size:44px}.h3,h3{font-size:32px}.h4,h4{font-size:25px}.h5,h5{font-size:21px}.h6,h6{font-size:19px}p{font-size:17px;font-size:1.08rem;line-height:1.5;margin:0 0 20px}.lead{padding-top:22px;margin-bottom:22px;font-size:19.8px;font-weight:300;line-height:1.4;font-family:Helvetica,Arial,sans-serif}.h1+.lead,.h2+.lead,.h3+.lead,.h4+.lead,.h5+.lead,.h6+.lead,h1+.lead,h2+.lead,h3+.lead,h4+.lead,h5+.lead,h6+.lead{padding-top:10px}pre{overflow-x:auto;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;font-size:14px}code{-moz-border-radius:0;-webkit-border-radius:0;word-wrap:break-word}.amp{font-family:Helvetica,sans-serif;font-weight:400;line-height:0}.footnote{font-size:10px;margin-top:20px}q.bubble{position:relative;display:block;width:100%;padding:10px}@media screen and (min-width:992px){.belt-outer{height:50px}q.bubble{min-height:108px}}q.bubble:after{content:"";display:block;width:0;border:0 solid;border-right-width:20px;border-bottom-width:20px;border-color:transparent #fff;position:absolute;bottom:-20px;left:15px}cite.bubble{display:block;margin-left:50px;margin-top:5px;padding-bottom:20px}blockquote{font-size:17px}blockquote *,blockquote p,blockquote ul>li{font-size:17px;font-weight:300}blockquote strong{font-weight:800}.doc li{font-size:17px;font-size:1.08rem}.doc .h1,.doc .h2,.doc .h3,.doc .h4,.doc .h5,.doc .h6,.doc h1,.doc h2,.doc h3,.doc h4,.doc h5,.doc h6{word-wrap:break-word;margin-top:3.125rem}.doc .h1+.h1,.doc .h1+.h2,.doc .h1+.h3,.doc .h1+.h4,.doc .h1+.h5,.doc .h1+.h6,.doc .h1+h1,.doc .h1+h2,.doc .h1+h3,.doc .h1+h4,.doc .h1+h5,.doc .h1+h6,.doc .h2+.h1,.doc .h2+.h2,.doc .h2+.h3,.doc .h2+.h4,.doc .h2+.h5,.doc .h2+.h6,.doc .h2+h1,.doc .h2+h2,.doc .h2+h3,.doc .h2+h4,.doc .h2+h5,.doc .h2+h6,.doc .h3+.h1,.doc .h3+.h2,.doc .h3+.h3,.doc .h3+.h4,.doc .h3+.h5,.doc .h3+.h6,.doc .h3+h1,.doc .h3+h2,.doc .h3+h3,.doc .h3+h4,.doc .h3+h5,.doc .h3+h6,.doc .h4+.h1,.doc .h4+.h2,.doc .h4+.h3,.doc .h4+.h4,.doc .h4+.h5,.doc .h4+.h6,.doc .h4+h1,.doc .h4+h2,.doc .h4+h3,.doc .h4+h4,.doc .h4+h5,.doc .h4+h6,.doc .h5+.h1,.doc .h5+.h2,.doc .h5+.h3,.doc .h5+.h4,.doc .h5+.h5,.doc .h5+.h6,.doc .h5+h1,.doc .h5+h2,.doc .h5+h3,.doc .h5+h4,.doc .h5+h5,.doc .h5+h6,.doc .h6+.h1,.doc .h6+.h2,.doc .h6+.h3,.doc .h6+.h4,.doc .h6+.h5,.doc .h6+.h6,.doc .h6+h1,.doc .h6+h2,.doc .h6+h3,.doc .h6+h4,.doc .h6+h5,.doc .h6+h6,.doc h1+.h1,.doc h1+.h2,.doc h1+.h3,.doc h1+.h4,.doc h1+.h5,.doc h1+.h6,.doc h1+h1,.doc h1+h2,.doc h1+h3,.doc h1+h4,.doc h1+h5,.doc h1+h6,.doc h2+.h1,.doc h2+.h2,.doc h2+.h3,.doc h2+.h4,.doc h2+.h5,.doc h2+.h6,.doc h2+h1,.doc h2+h2,.doc h2+h3,.doc h2+h4,.doc h2+h5,.doc h2+h6,.doc h3+.h1,.doc h3+.h2,.doc h3+.h3,.doc h3+.h4,.doc h3+.h5,.doc h3+.h6,.doc h3+h1,.doc h3+h2,.doc h3+h3,.doc h3+h4,.doc h3+h5,.doc h3+h6,.doc h4+.h1,.doc h4+.h2,.doc h4+.h3,.doc h4+.h4,.doc h4+.h5,.doc h4+.h6,.doc h4+h1,.doc h4+h2,.doc h4+h3,.doc h4+h4,.doc h4+h5,.doc h4+h6,.doc h5+.h1,.doc h5+.h2,.doc h5+.h3,.doc h5+.h4,.doc h5+.h5,.doc h5+.h6,.doc h5+h1,.doc h5+h2,.doc h5+h3,.doc h5+h4,.doc h5+h5,.doc h5+h6,.doc h6+.h1,.doc h6+.h2,.doc h6+.h3,.doc h6+.h4,.doc h6+.h5,.doc h6+.h6,.doc h6+h1,.doc h6+h2,.doc h6+h3,.doc h6+h4,.doc h6+h5,.doc h6+h6{margin-top:0}.doc .h1:hover a,.doc .h2:hover a,.doc .h3:hover a,.doc .h4:hover a,.doc .h5:hover a,.doc .h6:hover a,.doc h1:hover a,.doc h2:hover a,.doc h3:hover a,.doc h4:hover a,.doc h5:hover a,.doc h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.doc .h1,.doc h1{font-size:38px;font-size:2.375rem}.doc .h2,.doc h2{font-size:33px;font-size:2.0625rem}.doc .h3,.doc h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}.doc .h4,.doc h4{font-size:23px;font-size:1.4375rem}.doc .h5,.doc h5{font-size:20px;font-size:1.25rem}.doc .h6,.doc h6{font-size:18px;font-size:1.125rem}.doc li ol,.doc li ul{margin-top:10px}.doc li ol li,.doc li ul li{margin-top:5px}.doc li blockquote,.doc li img{margin:20px 0}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.doc li ol+p,.doc li ul+p{margin-top:20px}.doc li+li{margin-top:10px}.doc code{font-size:14px}.glyphicon.tile{font-size:150px;margin-bottom:20px!important}.glyphicon.tile-small{font-size:100px;margin-bottom:35px!important}.glyphicon.glyphicon-heart{color:#e74c3c}.caret-right{display:none}@media screen and (min-width:768px){cite.bubble{padding-bottom:0}.doc{padding-bottom:60px}.glyphicon.tile-small{margin-bottom:0!important}.caret-right{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent}}.login-caret{display:none}.tile-list{text-align:center}@media screen and (min-width:768px){.login-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent;border-left-color:#3BB878}.tile-list{text-align:right}}/*! +*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes pulse{0%,100%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}@keyframes wobble{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}.flipInY,.flipOutX{-webkit-backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}}.flipInY{backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0);transform:perspective(400px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0) skewX(-15deg);transform:translateX(0) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0) skewX(0);transform:translateX(0) skewX(0);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.belt-outer .belt .belt-inner.subnav,.input-group-addon.subnav{opacity:.96}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}.rounded{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px}.border-radius-default,.cornered{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.remove-gradient{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.remove-box-shadow{-webkit-box-shadow:none;box-shadow:none}.transition-base{-webkit-transition:.2s all;transition:.2s all}.link-standard:active,.link-standard:link,.link-standard:visited{color:#0089bc}.link-standard:hover{color:#005170}.callout-title:before{line-height:1.1;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400;color:#000}.callout-title:before .small,.callout-title:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.callout-text *{font-size:16px;font-weight:400;line-height:1.5}.has-inner-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;display:inline-block;margin-bottom:10px}.has-inner-before:before .small,.has-inner-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.has-outer-before{margin-top:40px}#article-body .disclosure-note:before,.community:before,.has-outer-before:before,.note:before{font-family:Lato,sans-serif;margin-top:11px;margin-bottom:11px}.has-outer-before:before{line-height:1.1;font-size:14px;font-size:19px;font-weight:400;color:#000;display:block;height:0}.has-outer-before:before .small,.has-outer-before:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note{padding:15px}.note *{font-size:16px;font-weight:400;line-height:1.5}.note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.note:before .small,.note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.note:before+.lead{padding-top:10px}.note a{color:#0089bc}.note a:hover{color:#006489}.note strong{font-weight:700}.community{padding:15px}.community *{font-size:16px;font-weight:400;line-height:1.5}.community:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.community:before .small,.community:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.community:before+.lead{padding-top:10px}.community a{color:#0089bc}.community a:hover{color:#006489}.community strong{font-weight:bolder}#article-body .disclosure-note{padding:15px}#article-body .disclosure-note *{font-size:16px;font-weight:400;line-height:1.5}#article-body .disclosure-note:before{display:inline-block;line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}#article-body .disclosure-note:before .small,#article-body .disclosure-note:before small{font-weight:400;line-height:1;color:#777;font-size:75%}#article-body .disclosure-note:before+.lead{padding-top:10px}#article-body .disclosure-note a{color:#0089bc}#article-body .disclosure-note a:hover{color:#006489}#article-body .disclosure-note strong{font-weight:700}#article-body .disclosure-note img.disclosure-icon{display:inline-block;height:1.5em;margin:-.1em 0 0;-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(1);transform:scaleY(1)}#article-body .disclosure-note .disclosure-note-content{overflow:hidden;margin-top:10px}.caution:before,.cloud_manager_link:before,.deprecated:before{display:inline-block;margin-top:11px;margin-bottom:11px;font-family:Lato,sans-serif}#article-body .disclosure-note table:not([class])>thead>tr>th{background:0 0}#article-body .disclosure-note table:not([class])>tbody>tr:nth-of-type(odd){background:#fff}#article-body .disclosure-note.disclosed img.disclosure-icon{-webkit-transition:.2s linear;transition:.2s linear;-webkit-transform:scaleY(-1);transform:scaleY(-1)}.caution{padding:15px;background-color:#fdf3f2;border-left:4px solid #f8c9c4}.caution *{font-size:16px;font-weight:400;line-height:1.5}.caution:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.caution:before .small,.caution:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.caution:before+.lead{padding-top:10px}.caution a{color:#0089bc}.caution a:hover{color:#006489}.caution strong{font-weight:700}.deprecated{padding:15px;background-color:#ffeedf;border-left:4px solid #ffd4ac}.deprecated *{font-size:16px;font-weight:400;line-height:1.5}.deprecated:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.deprecated:before .small,.deprecated:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.deprecated:before+.lead{padding-top:10px}.deprecated a{color:#0089bc}.deprecated a:hover{color:#006489}.deprecated strong{font-weight:700}.cloud_manager_link{padding:15px;background-color:#edf7fe;border-left:4px solid #bde2fb}.file-name,.variable{border-width:1px;border-style:solid}.cloud_manager_link *{font-size:16px;font-weight:400;line-height:1.5}.cloud_manager_link:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;font-weight:400}.cloud_manager_link:before .small,.cloud_manager_link:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.cloud_manager_link:before+.lead{padding-top:10px}.cloud_manager_link a{color:#0089bc}.cloud_manager_link a:hover{color:#006489}.cloud_manager_link strong{font-weight:700}.terminal{background-color:#000;color:rgba(65,255,0,.85);padding:0 10px}.file dt:before+.lead,.output:before+.lead{padding-top:10px}.terminal code{white-space:pre-line}.file pre.chroma code,pre code{white-space:pre}pre.terminal code::-moz-selection{background-color:#B2D7FF;color:#000}pre.terminal code::selection{background-color:#B2D7FF;color:#000}.output{margin-top:40px;background-color:#f8f8f8}.file dt:before,.output:before{margin-top:11px;margin-bottom:11px;font-weight:400}.output:before{font-family:Lato,sans-serif;line-height:1.1;font-size:14px;font-size:19px;color:#000;display:block;height:0;content:"Output"}.output:before .small,.output:before small{font-weight:400;line-height:1;color:#777;font-size:75%}pre code{word-wrap:normal;overflow-wrap:normal}.variable{background-color:#cff0df;border-color:#a9e3c5!important}.file-name{background-color:#f9f9ef;border-color:#ebebca!important}.file dt{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}.file dt:before,.navbar{font-family:Lato,sans-serif}.file dt:before{line-height:1.1;color:inherit;font-size:14px;font-size:19px;padding-right:5px}.file dt:before .small,.file dt:before small{font-weight:400;line-height:1;color:#777;font-size:75%}.file dd+dt{margin-top:20px}.file dt{background-color:#073642;padding:.5em;margin-bottom:0;color:#93a1a1;text-align:center;font-size:16px}.highlight{margin-bottom:.7em}@media screen and (min-width:768px){.sticky-header{position:fixed;right:0;left:0;z-index:1030;top:0;border-width:0 0 1px}.sticky-header .navbar-collapse{max-height:340px}.navbar.navbar-default{height:57px}}@media screen and (min-width:768px) and (max-device-width:480px) and (orientation:landscape){.sticky-header .navbar-collapse{max-height:200px}}@media screen and (min-width:768px) and (min-width:768px){.sticky-header{border-radius:0}}.navbar{font-size:15px;line-height:15px;font-weight:300;margin-bottom:0;border:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{font-size:19px;line-height:19px;-webkit-transition:.2s color;transition:.2s color}.navbar .navbar-nav>li>span{display:inline-block}.navbar .divider-vertical{margin-left:15px;margin-right:15px}@media (max-width:767px){.navbar .divider-vertical{display:none!important}}.navbar .divider-vertical span{color:#737373!important}.navbar .navbar-nav .btn{margin-left:12px;font-size:15px}.navbar .navbar-nav .btn.btn-sm{margin-top:12px;margin-bottom:12px}.navbar .nav-home{color:inherit!important}.navbar .nav-home:after{content:"Home"}@media screen and (min-width:768px){.navbar .navbar-header>a,.navbar .navbar-nav>li>a,.navbar .navbar-nav>li>span{padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px}.navbar .nav-home:after{content:""}}@media screen and (min-width:992px){.navbar .nav-home{display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:relative;top:-1px}.navbar .nav-home.tile{font-size:150px;margin-bottom:20px!important}.navbar .nav-home.tile-small{font-size:100px;margin-bottom:35px!important}.navbar .nav-home.glyphicon-heart{color:#e74c3c}.navbar .nav-home:before{content:"\e021"}}.nav-sidebar,.nav-sidebar .nav-sidebar.collapse{display:none}@media screen and (min-width:992px) and screen and (min-width:768px){.navbar .nav-home.tile-small{margin-bottom:0!important}}.navbar.navbar-default .navbar-nav>li.dropdown.open{background-color:#4c4c4c}#main-nav .navbar-collapse{max-height:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:0}.subnav{background-color:#323232;border-color:#212121;font-weight:400;font-family:Lato,sans-serif;min-height:0}.subnav .navbar-brand{color:#a6a6a6}.subnav .navbar-brand:focus,.subnav .navbar-brand:hover{color:#8c8c8c;background-color:transparent}.subnav .navbar-text{color:#777}.subnav .navbar-nav>li>a{color:#a6a6a6}.subnav .navbar-nav>li>a:focus,.subnav .navbar-nav>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav>.active>a,.subnav .navbar-nav>.active>a:focus,.subnav .navbar-nav>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav>.disabled>a,.subnav .navbar-nav>.disabled>a:focus,.subnav .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.subnav .navbar-toggle{border-color:transparent}.subnav .navbar-toggle:focus,.subnav .navbar-toggle:hover{background-color:transparent}.subnav .navbar-toggle .icon-bar{background-color:#e6e6e6}.subnav .navbar-collapse,.subnav .navbar-form{border-color:#212121}.subnav .navbar-nav>.open>a,.subnav .navbar-nav>.open>a:focus,.subnav .navbar-nav>.open>a:hover{background-color:transparent;color:#fff}@media (max-width:767px){.subnav .navbar-nav .open .dropdown-menu>li>a{color:#a6a6a6}.subnav .navbar-nav .open .dropdown-menu>li>a:focus,.subnav .navbar-nav .open .dropdown-menu>li>a:hover{color:#d9d9d9;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.active>a,.subnav .navbar-nav .open .dropdown-menu>.active>a:focus,.subnav .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:transparent}.subnav .navbar-nav .open .dropdown-menu>.disabled>a,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:focus,.subnav .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.subnav .navbar-link{color:#a6a6a6}.subnav .navbar-link:hover{color:#d9d9d9}.subnav .btn-link{color:#a6a6a6}.subnav .btn-link:focus,.subnav .btn-link:hover{color:#d9d9d9}.subnav .btn-link[disabled]:focus,.subnav .btn-link[disabled]:hover,fieldset[disabled] .subnav .btn-link:focus,fieldset[disabled] .subnav .btn-link:hover{color:#ccc}.subnav li>a{font-size:15px;line-height:15px}@media screen and (min-width:768px){.navbar li.active>a>span.nav-home{display:none}#main-nav .dropdown.open>.dropdown-toggle{padding-bottom:21px}.subnav li>a{margin:13px 12px 0;padding:0}}.subnav li:first-child a{margin-left:0}.subnav li:last-child a{margin-right:0}.subnav .navbar-toggle{margin-top:21px;margin-bottom:21px}.subnav-divider{margin:0 -15px}@media screen and (min-width:768px){.subnav-divider{margin:0}}.nav-sidebar .nav-sidebar,.sidebar>ul>li{margin-bottom:30px}.nav-sidebar{border-right:1px solid #e7e6e6;position:static}.nav-sidebar li{text-align:right;border-right:#fff solid 2px}.nav-sidebar li:hover{border-right:#e7e6e6 solid 2px}.nav-sidebar li.active,.nav-sidebar li.header-active{border-right:#000 solid 2px}.nav-sidebar li>a{padding:3px 15px;font-size:14px}.nav-sidebar .nav-sidebar.collapse.in{display:block}tr.nav-sidebar .nav-sidebar.collapse.in{display:table-row}tbody.nav-sidebar .nav-sidebar.collapse.in{display:table-row-group}@media screen and (min-width:992px){.nav-sidebar{width:213px;top:24px;display:block}.nav-sidebar.affix{position:fixed}.nav-sidebar.affix-bottom{position:absolute}}.sidebar-toggle{background:0 0;border:none;padding:0}.sidebar-toggle .toggle-closed,.sidebar-toggle .toggle-open{font-size:10px;position:relative;top:-1px;color:#626262}.sidebar-toggle .toggle-closed:hover,.sidebar-toggle .toggle-open:hover{color:#000}.sidebar-modal ul{list-style:none;padding-left:0}.sidebar-modal ul li a{padding:5px 0 5px 10px}.sidebar-modal ul li a:hover{background-color:transparent}.sidebar-modal ul li a:active{background-color:#eee}.sidebar-modal ul li.header a{display:inline-block;padding:5px 0;font-weight:800}.sidebar-modal ul li.header a:hover{background-color:transparent}.sidebar{margin-top:30px!important;padding-top:30px;border-top:1px solid #e7e6e6}.sidebar ul{list-style:none;padding-left:0}@media screen and (min-width:768px){.sidebar{margin-top:0!important;padding-top:0;border-top:0}.sidebar ul{padding-left:20px;border-left:1px solid #e7e6e6}.sidebar>ul{text-align:left}}.sidebar ul>li>ul{border:0;padding-left:0}.sidebar ul.list{padding-left:20px;list-style:disc}.sidebar ul.list>li{padding:10px 0;font-size:16px}@media screen and (min-width:768px){.sidebar>ul>li{padding:0}}.sidebar>ul>li>ul>li{padding:6px 0;font-size:19px}.sidebar>ul>li>ul>li:first-child{padding-top:0}.sidebar>ul>li>ul>li:last-child{padding-bottom:0}@media screen and (min-width:768px){.sidebar>ul>li>ul>li{padding:0;font-size:16px}}.nav-tiny>ul{padding:0;width:90%;display:table;table-layout:fixed}.nav-tiny>ul>li{display:table-cell}.toggle-closed,.toggle-open{display:none}.follow-header{top:0;display:block;z-index:1030;background-color:rgba(0,0,0,.4)}.follow-header.affix{position:fixed}.follow-header.affix-bottom{position:absolute}@media screen and (min-width:992px){.follow-header{display:none}.container{max-width:970px}}.jumbotron{padding:0;margin:0;line-height:1.64285714;color:inherit;background-color:transparent}.jumbotron .h1,.jumbotron h1{font-size:39px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron .h3,.jumbotron h3{font-size:23px}.jumbotron .h4,.jumbotron h4{font-size:21px}.jumbotron .h5,.jumbotron h5{font-size:20px}.jumbotron .h6,.jumbotron h6{font-size:18px}.jumbotron .h2,.jumbotron .h3,.jumbotron .h4,.jumbotron .h5,.jumbotron .h6,.jumbotron h2,.jumbotron h3,.jumbotron h4,.jumbotron h5,.jumbotron h6{font-weight:300}@media screen and (min-width:768px){.jumbotron{padding:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.jumbotron .h1,.jumbotron h1{font-size:45px}.jumbotron .h2,.jumbotron h2{font-size:26px}.jumbotron .h3,.jumbotron h3{font-size:24px}.jumbotron .h4,.jumbotron h4{font-size:23px}.jumbotron .h5,.jumbotron h5{font-size:21px}.jumbotron .h6,.jumbotron h6{font-size:20px}.dropdown-menu.dropdown-main-nav{padding:15px 0}}.jumbotron .navbar-brand{font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.switcher-controls,.table-pricing-total>tbody>tr:last-child>td,.table>thead>tr>th{font-family:Lato,sans-serif}.dropdown-menu{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.125);box-shadow:0 6px 12px rgba(0,0,0,.125)}.dropdown-menu>li>a{-webkit-transition:none;transition:none}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#2d8ec6}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#d9d9d9}.dropdown-menu.dropdown-main-nav{background-color:#4c4c4c;border:0}.dropdown-menu.dropdown-main-nav li a{display:block;padding:6px 20px}.dropdown-menu.dropdown-main-nav li a:active,.dropdown-menu.dropdown-main-nav li a:link,.dropdown-menu.dropdown-main-nav li a:visited{color:#999}.dropdown-menu.dropdown-main-nav li a:hover{color:#fff;background-color:#6f6f6f}.dropdown-menu.dropdown-main-nav .divider{background-color:#555}.navbar-nav .open .dropdown-menu.dropdown-mega{margin-left:-15px;margin-right:0;z-index:9001}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega{padding:15px 0;margin-right:-150px;width:600px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{position:relative;min-height:1px;padding:0}@media (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third{float:left;width:33.33333333%}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul{padding:0;list-style:none}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li{margin:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:8px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{-webkit-transition:none;transition:none;line-height:22px;padding:8px 35px 8px 40px;display:block;color:#999;font-size:19px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a:hover{color:#fff;background-color:#6f6f6f}@media screen and (min-width:768px){.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:first-child{margin-top:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li:last-child{margin-bottom:0}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third ul li a{padding:6px 20px;font-size:16px}}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third.middle{border-color:#555;border-style:solid;border-width:0 1px}.navbar-nav .open .dropdown-menu.dropdown-mega .dropdown-third .divider{margin:10px 20px}.pagination,.pagination>li:first-child>a,.pagination>li:first-child>span,.pagination>li:last-child>a,.pagination>li:last-child>span{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.pagination>li.active a{color:#fff!important}.pagination>li a:link{text-decoration:none}.pager>li>a{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.modal-open .navbar-fixed-bottom,.modal-open .navbar-fixed-top,body.modal-open{margin-right:0}.modal-footer{margin-top:0}.switcher-content{display:none;margin-top:0!important}.switcher-content.active{display:block}.switcher-controls{width:100%;display:table;table-layout:fixed}.switcher-controls a{-webkit-transition:none;transition:none;display:table-cell;width:100%;padding:10px;background-color:#fff;border:2px solid #00aeef;border-right-width:0;text-align:center;cursor:pointer;color:#00aeef}.switcher-controls a:active,.switcher-controls a:link,.switcher-controls a:visited{color:#00aeef}.switcher-controls a:hover{color:#0089bc}.switcher-controls a:last-child{border-right-width:2px}.switcher-controls a.active{background-color:#00aeef;border-color:#00aeef;color:#fff}.switcher-arrow{-webkit-transition:bottom .2s;transition:bottom .2s;display:block;position:relative;width:2px;border:0 solid transparent;border-width:15px 15px 0;margin:0 auto;bottom:15px}.switcher-arrow.active{border-color:#00aeef transparent;bottom:0}.label{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;padding:5px}.table>tbody>tr>td,.table>thead>tr>th{padding:17px 10px;text-align:left;vertical-align:middle}.alert{color:#fff;border:0}.panel,.well{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.table>thead>tr>th{color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}.table>tbody>tr:first-child{border-top:none}.table>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}.table>tbody>tr>td{width:0;color:#747474}.table>tbody>tr>td:last-child{border-right:none}.table>tbody>tr>td.large{font-size:20px;color:#000}.table>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}table.lntable tbody{display:table;width:inherit}table.lntable tbody>tr>td.lntd:first-child{width:25px}.table-responsive>.table>tbody>tr:last-child{border-bottom-width:0}@media screen and (min-width:768px){.table-responsive>.table>tbody>tr:last-child{border-bottom-width:1px}}.table-pricing,.table-pricing-green{border:none}.table-shadow{-webkit-box-shadow:0 1px 1px 1px rgba(174,174,174,.2);box-shadow:0 1px 1px 1px rgba(174,174,174,.2)}.table-pricing>thead>tr>th{border-top:none;text-align:center;margin-right:12px}.table-pricing>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-green>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f6fcf9;border-bottom:2px solid #3BB878}.table-pricing-green>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-neutral{border:none}.table-pricing-neutral>thead>tr>th{border-top:none;text-align:center;margin-right:12px;background-color:#f3f7f8;border-bottom:2px solid #8ab}.table-pricing-neutral>tbody>tr>td{text-align:center;font-weight:300}.table-pricing-total>tbody>tr:last-child{font-size:18px;font-weight:300;border-bottom:none}.table-pricing-total>tbody>tr:last-child>td{color:#000}.table-pricing-total>tbody>tr:last-child>td .small{font-weight:100}@media screen and (min-width:768px){.table-pricing-total>tbody>tr:last-child{font-size:22px;font-weight:300;border-bottom:none}}.center-first-column>table tbody>tr:first-child{text-align:center!important}.fixed-layout>table{table-layout:fixed}.form-control{padding-top:8px;border:1px solid #e7e6e6;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;color:#343434;font-size:16px;font-weight:400;-webkit-transition:none;transition:none;-webkit-box-shadow:none;box-shadow:none}.form-control:focus{-webkit-box-shadow:none;box-shadow:none;border-color:#cecccc}.input-lg{font-size:18px}.form-control-lg,.form-control-sm{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-box-shadow:none;box-shadow:none}.input-group-addon{-moz-border-radius:0;-webkit-border-radius:0;background-color:#f9f9ef;color:#6f6f6f}.input-group-addon .lead a{font-weight:300}.input-group-addon .span>a,.input-group-addon address>a,.input-group-addon em>a,.input-group-addon h1>a,.input-group-addon h2>a,.input-group-addon h3>a,.input-group-addon h4>a,.input-group-addon h5>a,.input-group-addon h6>a,.input-group-addon li>a,.input-group-addon p>a,.input-group-addon td>a{-webkit-transition:.2s color;transition:.2s color}.input-group-addon .nav li>a,.input-group-addon .span>a:active,.input-group-addon .span>a:hover,.input-group-addon address>a:active,.input-group-addon address>a:hover,.input-group-addon em>a:active,.input-group-addon em>a:hover,.input-group-addon h1>a:active,.input-group-addon h1>a:hover,.input-group-addon h2>a:active,.input-group-addon h2>a:hover,.input-group-addon h3>a:active,.input-group-addon h3>a:hover,.input-group-addon h4>a:active,.input-group-addon h4>a:hover,.input-group-addon h5>a:active,.input-group-addon h5>a:hover,.input-group-addon h6>a:active,.input-group-addon h6>a:hover,.input-group-addon li>a:active,.input-group-addon li>a:hover,.input-group-addon p>a:active,.input-group-addon p>a:hover,.input-group-addon td>a:active,.input-group-addon td>a:hover{text-decoration:none}.input-group-addon.separated{border-bottom-color:#e4e4b7}.input-group-addon .h1,.input-group-addon .h2,.input-group-addon .h3,.input-group-addon .h4,.input-group-addon .h5,.input-group-addon .h6,.input-group-addon h1,.input-group-addon h2,.input-group-addon h3,.input-group-addon h4,.input-group-addon h5,.input-group-addon h6{color:#000}.input-group-addon.jumbotron .h1,.input-group-addon.jumbotron h1{color:#2f2f2f}.input-group-addon.jumbotron .h2,.input-group-addon.jumbotron .h3,.input-group-addon.jumbotron .h4,.input-group-addon.jumbotron .h5,.input-group-addon.jumbotron .h6,.input-group-addon.jumbotron h2,.input-group-addon.jumbotron h3,.input-group-addon.jumbotron h4,.input-group-addon.jumbotron h5,.input-group-addon.jumbotron h6{color:#6f6f6f}.input-group-addon .span>a:active,.input-group-addon .span>a:link,.input-group-addon .span>a:visited,.input-group-addon address>a:active,.input-group-addon address>a:link,.input-group-addon address>a:visited,.input-group-addon em>a:active,.input-group-addon em>a:link,.input-group-addon em>a:visited,.input-group-addon h1>a:active,.input-group-addon h1>a:link,.input-group-addon h1>a:visited,.input-group-addon h2>a:active,.input-group-addon h2>a:link,.input-group-addon h2>a:visited,.input-group-addon h3>a:active,.input-group-addon h3>a:link,.input-group-addon h3>a:visited,.input-group-addon h4>a:active,.input-group-addon h4>a:link,.input-group-addon h4>a:visited,.input-group-addon h5>a:active,.input-group-addon h5>a:link,.input-group-addon h5>a:visited,.input-group-addon h6>a:active,.input-group-addon h6>a:link,.input-group-addon h6>a:visited,.input-group-addon li>a:active,.input-group-addon li>a:link,.input-group-addon li>a:visited,.input-group-addon p>a:active,.input-group-addon p>a:link,.input-group-addon p>a:visited,.input-group-addon td>a:active,.input-group-addon td>a:link,.input-group-addon td>a:visited{color:#0089bc}.input-group-addon .span>a:hover,.input-group-addon address>a:hover,.input-group-addon em>a:hover,.input-group-addon h1>a:hover,.input-group-addon h2>a:hover,.input-group-addon h3>a:hover,.input-group-addon h4>a:hover,.input-group-addon h5>a:hover,.input-group-addon h6>a:hover,.input-group-addon li>a:hover,.input-group-addon p>a:hover,.input-group-addon td>a:hover{color:#005170}.input-group-addon .span>a .glyphicon.tile,.input-group-addon address>a .glyphicon.tile,.input-group-addon em>a .glyphicon.tile,.input-group-addon h1>a .glyphicon.tile,.input-group-addon h2>a .glyphicon.tile,.input-group-addon h3>a .glyphicon.tile,.input-group-addon h4>a .glyphicon.tile,.input-group-addon h5>a .glyphicon.tile,.input-group-addon h6>a .glyphicon.tile,.input-group-addon li>a .glyphicon.tile,.input-group-addon p>a .glyphicon.tile,.input-group-addon td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.input-group-addon .span>a .glyphicon.tile:active,.input-group-addon .span>a .glyphicon.tile:hover,.input-group-addon address>a .glyphicon.tile:active,.input-group-addon address>a .glyphicon.tile:hover,.input-group-addon em>a .glyphicon.tile:active,.input-group-addon em>a .glyphicon.tile:hover,.input-group-addon h1>a .glyphicon.tile:active,.input-group-addon h1>a .glyphicon.tile:hover,.input-group-addon h2>a .glyphicon.tile:active,.input-group-addon h2>a .glyphicon.tile:hover,.input-group-addon h3>a .glyphicon.tile:active,.input-group-addon h3>a .glyphicon.tile:hover,.input-group-addon h4>a .glyphicon.tile:active,.input-group-addon h4>a .glyphicon.tile:hover,.input-group-addon h5>a .glyphicon.tile:active,.input-group-addon h5>a .glyphicon.tile:hover,.input-group-addon h6>a .glyphicon.tile:active,.input-group-addon h6>a .glyphicon.tile:hover,.input-group-addon li>a .glyphicon.tile:active,.input-group-addon li>a .glyphicon.tile:hover,.input-group-addon p>a .glyphicon.tile:active,.input-group-addon p>a .glyphicon.tile:hover,.input-group-addon td>a .glyphicon.tile:active,.input-group-addon td>a .glyphicon.tile:hover{color:#494949}.input-group-addon ul.nav-sidebar>li.active>a{color:#000}.input-group-addon ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.input-group-addon ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.input-group-addon ul.nav-sidebar>li>a:hover{color:#000}.input-group-addon ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.input-group-addon ul.dropdown-menu>li>a:hover{color:#fff}.input-group-addon.subnav .navbar-brand{color:#000}.input-group-addon.subnav .navbar-brand a{text-decoration:none;color:#000}.input-group-addon.subnav li>a{color:#aaa}.input-group-addon.subnav li>a.active{color:#000}.input-group-addon.subnav li>a:hover{color:#555}.input-group-addon .sidebar strong,.input-group-addon.subnav .navbar-toggle{color:#000}.input-group-addon.subnav .navbar-toggle:hover{background-color:transparent}.input-group-addon.subnav .navbar-collapse{border-top-color:#e7e6e6}.input-group-addon.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.input-group-addon .sidebar a strong,.input-group-addon .sidebar a strong:active,.input-group-addon .sidebar a strong:link,.input-group-addon .sidebar a strong:visited{color:#0089bc}.input-group-addon .sidebar a strong:hover{color:#005170}.input-group-addon cite.bubble strong{color:#414141}.input-group-addon cite.bubble a:active,.input-group-addon cite.bubble a:link,.input-group-addon cite.bubble a:visited{color:#0089bc}.input-group-addon cite.bubble a:hover{color:#005170}.input-group-addon blockquote,.input-group-addon blockquote p,.input-group-addon blockquote ul>li{color:#747474}.has-error .form-control,.has-error .form-control:focus,.has-success .form-control,.has-success .form-control:focus,.has-warning .form-control,.has-warning .form-control:focus{-webkit-box-shadow:none;box-shadow:none}html{-webkit-tap-highlight-color:transparent;color:#444;background-color:#0a0a0a;font-size:16px}html a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}html a:active,html a:hover{color:#f2f2f2;text-decoration:none}@media (min-width:768px){html{font-size:18px}.belt-outer .belt .belt-inner{float:left;width:83.33333333%}}nav,section{background-color:inherit}header,nav,section{margin:0}.belt-outer .belt,.row-content,.row-tiles{margin-left:-15px;margin-right:-15px}header .row-content:first-child,header .row:first-child,nav .row-content:first-child,nav .row:first-child,section .row-content:first-child,section .row:first-child{margin-top:30px}header .row-content:last-child,header .row:last-child,nav .row-content:last-child,nav .row:last-child,section .row-content:last-child,section .row:last-child{margin-bottom:30px}header .row :first-child,header .row-content :first-child,nav .row :first-child,nav .row-content :first-child,section .row :first-child,section .row-content :first-child{margin-top:0}header .row :last-child,header .row-content :last-child,nav .row :last-child,nav .row-content :last-child,section .row :last-child,section .row-content :last-child{margin-bottom:0}header.small,nav.small,section.small{font-size:14px}header.small .row:first-child,nav.small .row:first-child,section.small .row:first-child{margin-top:5px}header.small .row:last-child,nav.small .row:last-child,section.small .row:last-child{margin-bottom:5px}header.flush-bottom .row-content:last-child,header.flush-bottom .row:last-child,header.small .row :last-child,nav.flush-bottom .row-content:last-child,nav.flush-bottom .row:last-child,nav.small .row :last-child,section.flush-bottom .row-content:last-child,section.flush-bottom .row:last-child,section.small .row :last-child{margin-bottom:0}header.small .row :first-child,nav.small .row :first-child,section.small .row :first-child{margin-top:0}@media screen and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:60px;padding-bottom:60px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space,nav.extra-space,section.extra-space{padding-top:30px;padding-bottom:30px}header.extra-space.bottom,nav.extra-space.bottom,section.extra-space.bottom{padding-top:0}header.extra-space.top,nav.extra-space.top,section.extra-space.top{padding-bottom:0}}@media screen and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:60px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:60px}}@media screen and (max-height:900px) and (min-width:768px){header.extra-space-top,nav.extra-space-top,section.extra-space-top{padding-top:30px}header.extra-space-bottom,nav.extra-space-bottom,section.extra-space-bottom{padding-bottom:30px}}@media screen and (min-width:768px){header.some-space,nav.some-space,section.some-space{padding-top:30px;padding-bottom:30px}header.some-space.bottom,nav.some-space.bottom,section.some-space.bottom{padding-top:0}header.some-space.top,nav.some-space.top,section.some-space.top{padding-bottom:0}header.some-space-top,nav.some-space-top,section.some-space-top{padding-top:30px}header.some-space-bottom,nav.some-space-bottom,section.some-space-bottom{padding-bottom:30px}header.super-space,nav.super-space,section.super-space{padding-top:90px;padding-bottom:90px}header.super-space.bottom,nav.super-space.bottom,section.super-space.bottom{padding-top:0}header.super-space.top,nav.super-space.top,section.super-space.top{padding-bottom:0}header.super-space-top,nav.super-space-top,section.super-space-top{padding-top:90px}header.super-space-bottom,nav.super-space-bottom,section.super-space-bottom{padding-bottom:90px}}header.flush-bottom,nav.flush-bottom,section.flush-bottom{margin-bottom:0;padding-bottom:0}.row-content.extra-bottom{margin-bottom:90px}.row-content.super-bottom{margin-bottom:120px}@media screen and (max-width:768px){.row-content.shrink{margin-bottom:30px}}div.no-padding{padding:0}.pad-xs{margin-top:30px}.separated{border-bottom-width:1px;border-bottom-style:solid}@media screen and (min-width:768px){.pad-xs{margin-top:0}.belt-outer{height:100px}.belt-outer .belt .belt-inner{top:-50px}}.belt-outer .belt .belt-inner{min-height:1px;background-color:#f9f9ef;color:#6f6f6f;padding:20px;border:1px solid #ebebca;margin-bottom:0;position:relative}@media (min-width:768px){.belt-outer .belt .belt-inner{margin-left:8.33333333%}}.belt-outer .belt .belt-inner .lead a{font-weight:300}.belt-outer .belt .belt-inner .span>a,.belt-outer .belt .belt-inner address>a,.belt-outer .belt .belt-inner em>a,.belt-outer .belt .belt-inner h1>a,.belt-outer .belt .belt-inner h2>a,.belt-outer .belt .belt-inner h3>a,.belt-outer .belt .belt-inner h4>a,.belt-outer .belt .belt-inner h5>a,.belt-outer .belt .belt-inner h6>a,.belt-outer .belt .belt-inner li>a,.belt-outer .belt .belt-inner p>a,.belt-outer .belt .belt-inner td>a{-webkit-transition:.2s color;transition:.2s color}.belt-outer .belt .belt-inner .nav li>a,.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:hover{text-decoration:none}.belt-outer .belt .belt-inner.separated{border-bottom-color:#e4e4b7}.belt-outer .belt .belt-inner .h1,.belt-outer .belt .belt-inner .h2,.belt-outer .belt .belt-inner .h3,.belt-outer .belt .belt-inner .h4,.belt-outer .belt .belt-inner .h5,.belt-outer .belt .belt-inner .h6,.belt-outer .belt .belt-inner h1,.belt-outer .belt .belt-inner h2,.belt-outer .belt .belt-inner h3,.belt-outer .belt .belt-inner h4,.belt-outer .belt .belt-inner h5,.belt-outer .belt .belt-inner h6{color:#000}.belt-outer .belt .belt-inner.jumbotron .h1,.belt-outer .belt .belt-inner.jumbotron h1{color:#2f2f2f}.belt-outer .belt .belt-inner.jumbotron .h2,.belt-outer .belt .belt-inner.jumbotron .h3,.belt-outer .belt .belt-inner.jumbotron .h4,.belt-outer .belt .belt-inner.jumbotron .h5,.belt-outer .belt .belt-inner.jumbotron .h6,.belt-outer .belt .belt-inner.jumbotron h2,.belt-outer .belt .belt-inner.jumbotron h3,.belt-outer .belt .belt-inner.jumbotron h4,.belt-outer .belt .belt-inner.jumbotron h5,.belt-outer .belt .belt-inner.jumbotron h6{color:#6f6f6f}.belt-outer .belt .belt-inner .span>a:active,.belt-outer .belt .belt-inner .span>a:link,.belt-outer .belt .belt-inner .span>a:visited,.belt-outer .belt .belt-inner address>a:active,.belt-outer .belt .belt-inner address>a:link,.belt-outer .belt .belt-inner address>a:visited,.belt-outer .belt .belt-inner em>a:active,.belt-outer .belt .belt-inner em>a:link,.belt-outer .belt .belt-inner em>a:visited,.belt-outer .belt .belt-inner h1>a:active,.belt-outer .belt .belt-inner h1>a:link,.belt-outer .belt .belt-inner h1>a:visited,.belt-outer .belt .belt-inner h2>a:active,.belt-outer .belt .belt-inner h2>a:link,.belt-outer .belt .belt-inner h2>a:visited,.belt-outer .belt .belt-inner h3>a:active,.belt-outer .belt .belt-inner h3>a:link,.belt-outer .belt .belt-inner h3>a:visited,.belt-outer .belt .belt-inner h4>a:active,.belt-outer .belt .belt-inner h4>a:link,.belt-outer .belt .belt-inner h4>a:visited,.belt-outer .belt .belt-inner h5>a:active,.belt-outer .belt .belt-inner h5>a:link,.belt-outer .belt .belt-inner h5>a:visited,.belt-outer .belt .belt-inner h6>a:active,.belt-outer .belt .belt-inner h6>a:link,.belt-outer .belt .belt-inner h6>a:visited,.belt-outer .belt .belt-inner li>a:active,.belt-outer .belt .belt-inner li>a:link,.belt-outer .belt .belt-inner li>a:visited,.belt-outer .belt .belt-inner p>a:active,.belt-outer .belt .belt-inner p>a:link,.belt-outer .belt .belt-inner p>a:visited,.belt-outer .belt .belt-inner td>a:active,.belt-outer .belt .belt-inner td>a:link,.belt-outer .belt .belt-inner td>a:visited{color:#0089bc}.belt-outer .belt .belt-inner .span>a:hover,.belt-outer .belt .belt-inner address>a:hover,.belt-outer .belt .belt-inner em>a:hover,.belt-outer .belt .belt-inner h1>a:hover,.belt-outer .belt .belt-inner h2>a:hover,.belt-outer .belt .belt-inner h3>a:hover,.belt-outer .belt .belt-inner h4>a:hover,.belt-outer .belt .belt-inner h5>a:hover,.belt-outer .belt .belt-inner h6>a:hover,.belt-outer .belt .belt-inner li>a:hover,.belt-outer .belt .belt-inner p>a:hover,.belt-outer .belt .belt-inner td>a:hover{color:#005170}.belt-outer .belt .belt-inner .span>a .glyphicon.tile,.belt-outer .belt .belt-inner address>a .glyphicon.tile,.belt-outer .belt .belt-inner em>a .glyphicon.tile,.belt-outer .belt .belt-inner h1>a .glyphicon.tile,.belt-outer .belt .belt-inner h2>a .glyphicon.tile,.belt-outer .belt .belt-inner h3>a .glyphicon.tile,.belt-outer .belt .belt-inner h4>a .glyphicon.tile,.belt-outer .belt .belt-inner h5>a .glyphicon.tile,.belt-outer .belt .belt-inner h6>a .glyphicon.tile,.belt-outer .belt .belt-inner li>a .glyphicon.tile,.belt-outer .belt .belt-inner p>a .glyphicon.tile,.belt-outer .belt .belt-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.belt-outer .belt .belt-inner .span>a .glyphicon.tile:active,.belt-outer .belt .belt-inner .span>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner address>a .glyphicon.tile:active,.belt-outer .belt .belt-inner address>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner em>a .glyphicon.tile:active,.belt-outer .belt .belt-inner em>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h1>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h2>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h3>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h4>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h5>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:active,.belt-outer .belt .belt-inner h6>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner li>a .glyphicon.tile:active,.belt-outer .belt .belt-inner li>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner p>a .glyphicon.tile:active,.belt-outer .belt .belt-inner p>a .glyphicon.tile:hover,.belt-outer .belt .belt-inner td>a .glyphicon.tile:active,.belt-outer .belt .belt-inner td>a .glyphicon.tile:hover{color:#494949}.belt-outer .belt .belt-inner ul.nav-sidebar>li.active>a{color:#000}.belt-outer .belt .belt-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,li,p{font-weight:400}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.belt-outer .belt .belt-inner ul.nav-sidebar>li>a:hover{color:#000}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.belt-outer .belt .belt-inner ul.dropdown-menu>li>a:hover{color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-brand{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.belt-outer .belt .belt-inner.subnav li>a{color:#aaa}.belt-outer .belt .belt-inner.subnav li>a.active{color:#000}.belt-outer .belt .belt-inner.subnav li>a:hover{color:#555}.belt-outer .belt .belt-inner .sidebar strong,.belt-outer .belt .belt-inner.subnav .navbar-toggle{color:#000}.belt-outer .belt .belt-inner.subnav .navbar-toggle:hover{background-color:transparent}.white,q.bubble{background-color:#fff}.belt-outer .belt .belt-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.belt-outer .belt .belt-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.belt-outer .belt .belt-inner .sidebar a strong,.belt-outer .belt .belt-inner .sidebar a strong:active,.belt-outer .belt .belt-inner .sidebar a strong:link,.belt-outer .belt .belt-inner .sidebar a strong:visited{color:#0089bc}.belt-outer .belt .belt-inner .sidebar a strong:hover{color:#005170}.belt-outer .belt .belt-inner cite.bubble strong{color:#414141}.belt-outer .belt .belt-inner cite.bubble a:active,.belt-outer .belt .belt-inner cite.bubble a:link,.belt-outer .belt .belt-inner cite.bubble a:visited{color:#0089bc}.belt-outer .belt .belt-inner cite.bubble a:hover{color:#005170}.belt-outer .belt .belt-inner blockquote,.belt-outer .belt .belt-inner blockquote p,.belt-outer .belt .belt-inner blockquote ul>li{color:#747474}.belt-outer .belt .belt-inner .belt-content{margin:0}.vertical-center{display:table-cell;vertical-align:middle}@media screen and (min-width:768px){.reduce-gutter{padding:0 2px}q.bubble{min-height:152px}}img.full-width{display:block;width:100%}img.centered-icon{margin:0 auto;display:block}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')}.large{font-size:18px}.small{font-size:14px}.h1,h1{font-size:48px}.h2,h2{font-size:44px}.h3,h3{font-size:32px}.h4,h4{font-size:25px}.h5,h5{font-size:21px}.h6,h6{font-size:19px}p{font-size:17px;font-size:1.08rem;line-height:1.5;margin:0 0 20px}.lead{padding-top:22px;margin-bottom:22px;font-size:19.8px;font-weight:300;line-height:1.4;font-family:Helvetica,Arial,sans-serif}.h1+.lead,.h2+.lead,.h3+.lead,.h4+.lead,.h5+.lead,.h6+.lead,h1+.lead,h2+.lead,h3+.lead,h4+.lead,h5+.lead,h6+.lead{padding-top:10px}pre{overflow-x:auto;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;font-size:14px}code{-moz-border-radius:0;-webkit-border-radius:0;word-wrap:break-word}.amp{font-family:Helvetica,sans-serif;font-weight:400;line-height:0}.footnote{font-size:10px;margin-top:20px}.doc li,blockquote{font-size:17px}q.bubble{position:relative;display:block;width:100%;padding:10px}@media screen and (min-width:992px){.belt-outer{height:50px}q.bubble{min-height:108px}}q.bubble:after{content:"";display:block;width:0;border:0 solid;border-right-width:20px;border-bottom-width:20px;border-color:transparent #fff;position:absolute;bottom:-20px;left:15px}cite.bubble{display:block;margin-left:50px;margin-top:5px;padding-bottom:20px}blockquote *,blockquote p,blockquote ul>li{font-size:17px;font-weight:300}blockquote strong{font-weight:800}.doc li{font-size:1.08rem}.doc .h1,.doc .h2,.doc .h3,.doc .h4,.doc .h5,.doc .h6,.doc h1,.doc h2,.doc h3,.doc h4,.doc h5,.doc h6{word-wrap:break-word;margin-top:3.125rem}.doc .h1+.h1,.doc .h1+.h2,.doc .h1+.h3,.doc .h1+.h4,.doc .h1+.h5,.doc .h1+.h6,.doc .h1+h1,.doc .h1+h2,.doc .h1+h3,.doc .h1+h4,.doc .h1+h5,.doc .h1+h6,.doc .h2+.h1,.doc .h2+.h2,.doc .h2+.h3,.doc .h2+.h4,.doc .h2+.h5,.doc .h2+.h6,.doc .h2+h1,.doc .h2+h2,.doc .h2+h3,.doc .h2+h4,.doc .h2+h5,.doc .h2+h6,.doc .h3+.h1,.doc .h3+.h2,.doc .h3+.h3,.doc .h3+.h4,.doc .h3+.h5,.doc .h3+.h6,.doc .h3+h1,.doc .h3+h2,.doc .h3+h3,.doc .h3+h4,.doc .h3+h5,.doc .h3+h6,.doc .h4+.h1,.doc .h4+.h2,.doc .h4+.h3,.doc .h4+.h4,.doc .h4+.h5,.doc .h4+.h6,.doc .h4+h1,.doc .h4+h2,.doc .h4+h3,.doc .h4+h4,.doc .h4+h5,.doc .h4+h6,.doc .h5+.h1,.doc .h5+.h2,.doc .h5+.h3,.doc .h5+.h4,.doc .h5+.h5,.doc .h5+.h6,.doc .h5+h1,.doc .h5+h2,.doc .h5+h3,.doc .h5+h4,.doc .h5+h5,.doc .h5+h6,.doc .h6+.h1,.doc .h6+.h2,.doc .h6+.h3,.doc .h6+.h4,.doc .h6+.h5,.doc .h6+.h6,.doc .h6+h1,.doc .h6+h2,.doc .h6+h3,.doc .h6+h4,.doc .h6+h5,.doc .h6+h6,.doc h1+.h1,.doc h1+.h2,.doc h1+.h3,.doc h1+.h4,.doc h1+.h5,.doc h1+.h6,.doc h1+h1,.doc h1+h2,.doc h1+h3,.doc h1+h4,.doc h1+h5,.doc h1+h6,.doc h2+.h1,.doc h2+.h2,.doc h2+.h3,.doc h2+.h4,.doc h2+.h5,.doc h2+.h6,.doc h2+h1,.doc h2+h2,.doc h2+h3,.doc h2+h4,.doc h2+h5,.doc h2+h6,.doc h3+.h1,.doc h3+.h2,.doc h3+.h3,.doc h3+.h4,.doc h3+.h5,.doc h3+.h6,.doc h3+h1,.doc h3+h2,.doc h3+h3,.doc h3+h4,.doc h3+h5,.doc h3+h6,.doc h4+.h1,.doc h4+.h2,.doc h4+.h3,.doc h4+.h4,.doc h4+.h5,.doc h4+.h6,.doc h4+h1,.doc h4+h2,.doc h4+h3,.doc h4+h4,.doc h4+h5,.doc h4+h6,.doc h5+.h1,.doc h5+.h2,.doc h5+.h3,.doc h5+.h4,.doc h5+.h5,.doc h5+.h6,.doc h5+h1,.doc h5+h2,.doc h5+h3,.doc h5+h4,.doc h5+h5,.doc h5+h6,.doc h6+.h1,.doc h6+.h2,.doc h6+.h3,.doc h6+.h4,.doc h6+.h5,.doc h6+.h6,.doc h6+h1,.doc h6+h2,.doc h6+h3,.doc h6+h4,.doc h6+h5,.doc h6+h6{margin-top:0}.doc .h1 a,.doc .h2 a,.doc .h3 a,.doc .h4 a,.doc .h5 a,.doc .h6 a,.doc h1 a,.doc h2 a,.doc h3 a,.doc h4 a,.doc h5 a,.doc h6 a{padding-left:10px;opacity:0}.doc .h1:hover a,.doc .h2:hover a,.doc .h3:hover a,.doc .h4:hover a,.doc .h5:hover a,.doc .h6:hover a,.doc h1:hover a,.doc h2:hover a,.doc h3:hover a,.doc h4:hover a,.doc h5:hover a,.doc h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.alt.subnav,.light-blue.subnav,.light-gray.subnav,.neutral.subnav,.primary.subnav,.sand.subnav,.striped.subnav,.white.subnav,div.logo-tile.subnav{opacity:.96}.doc .h1,.doc h1{font-size:38px;font-size:2.375rem}.doc .h2,.doc h2{font-size:33px;font-size:2.0625rem}.doc .h3,.doc h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}.doc .h4,.doc h4{font-size:23px;font-size:1.4375rem}.doc .h5,.doc h5{font-size:20px;font-size:1.25rem}.doc .h6,.doc h6{font-size:18px;font-size:1.125rem}.doc li ol,.doc li ul{margin-top:10px}.doc li ol li,.doc li ul li{margin-top:5px}.doc li blockquote,.doc li img{margin:20px 0}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.doc li ol+p,.doc li ul+p{margin-top:20px}.doc li+li{margin-top:10px}.doc code{font-size:14px}.glyphicon.tile{font-size:150px;margin-bottom:20px!important}.glyphicon.tile-small{font-size:100px;margin-bottom:35px!important}.glyphicon.glyphicon-heart{color:#e74c3c}.caret-right{display:none}@media screen and (min-width:768px){cite.bubble{padding-bottom:0}.doc{padding-bottom:60px}.glyphicon.tile-small{margin-bottom:0!important}.caret-right{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent}}.login-caret{display:none}.fa,.fa-stack{display:inline-block}.tile-list{text-align:center}@media screen and (min-width:768px){.login-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-left:4px solid #e74c3c;border-bottom:4px solid transparent;border-top:4px solid transparent;border-left-color:#3BB878}.tile-list{text-align:right}}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.fa-lg{font-size:1.33333333em;line-height:.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.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-stack,.footer-col,.library-spinner,.search-form{position:relative}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-right{float:right}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.cubes.subnav .navbar-collapse,.light-blue.subnav .navbar-collapse,.light-gray.subnav .navbar-collapse,.sand.subnav .navbar-collapse,.striped.subnav .navbar-collapse,.white.subnav .navbar-collapse{border-top-color:#e7e6e6}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.white{color:#747474}.white .lead a{font-weight:300}.white .span>a,.white address>a,.white em>a,.white h1>a,.white h2>a,.white h3>a,.white h4>a,.white h5>a,.white h6>a,.white li>a,.white p>a,.white td>a{-webkit-transition:.2s color;transition:.2s color}.white .nav li>a,.white .span>a:active,.white .span>a:hover,.white address>a:active,.white address>a:hover,.white em>a:active,.white em>a:hover,.white h1>a:active,.white h1>a:hover,.white h2>a:active,.white h2>a:hover,.white h3>a:active,.white h3>a:hover,.white h4>a:active,.white h4>a:hover,.white h5>a:active,.white h5>a:hover,.white h6>a:active,.white h6>a:hover,.white li>a:active,.white li>a:hover,.white p>a:active,.white p>a:hover,.white td>a:active,.white td>a:hover{text-decoration:none}.white.separated{border-bottom-color:#d9d9d9}.white .h1,.white .h2,.white .h3,.white .h4,.white .h5,.white .h6,.white h1,.white h2,.white h3,.white h4,.white h5,.white h6{color:#000}.white.jumbotron .h1,.white.jumbotron h1{color:#343434}.white.jumbotron .h2,.white.jumbotron .h3,.white.jumbotron .h4,.white.jumbotron .h5,.white.jumbotron .h6,.white.jumbotron h2,.white.jumbotron h3,.white.jumbotron h4,.white.jumbotron h5,.white.jumbotron h6{color:#747474}.white .span>a:active,.white .span>a:link,.white .span>a:visited,.white address>a:active,.white address>a:link,.white address>a:visited,.white em>a:active,.white em>a:link,.white em>a:visited,.white h1>a:active,.white h1>a:link,.white h1>a:visited,.white h2>a:active,.white h2>a:link,.white h2>a:visited,.white h3>a:active,.white h3>a:link,.white h3>a:visited,.white h4>a:active,.white h4>a:link,.white h4>a:visited,.white h5>a:active,.white h5>a:link,.white h5>a:visited,.white h6>a:active,.white h6>a:link,.white h6>a:visited,.white li>a:active,.white li>a:link,.white li>a:visited,.white p>a:active,.white p>a:link,.white p>a:visited,.white td>a:active,.white td>a:link,.white td>a:visited{color:#0089bc}.white .span>a:hover,.white address>a:hover,.white em>a:hover,.white h1>a:hover,.white h2>a:hover,.white h3>a:hover,.white h4>a:hover,.white h5>a:hover,.white h6>a:hover,.white li>a:hover,.white p>a:hover,.white td>a:hover{color:#005170}.white .span>a .glyphicon.tile,.white address>a .glyphicon.tile,.white em>a .glyphicon.tile,.white h1>a .glyphicon.tile,.white h2>a .glyphicon.tile,.white h3>a .glyphicon.tile,.white h4>a .glyphicon.tile,.white h5>a .glyphicon.tile,.white h6>a .glyphicon.tile,.white li>a .glyphicon.tile,.white p>a .glyphicon.tile,.white td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.white .span>a .glyphicon.tile:active,.white .span>a .glyphicon.tile:hover,.white address>a .glyphicon.tile:active,.white address>a .glyphicon.tile:hover,.white em>a .glyphicon.tile:active,.white em>a .glyphicon.tile:hover,.white h1>a .glyphicon.tile:active,.white h1>a .glyphicon.tile:hover,.white h2>a .glyphicon.tile:active,.white h2>a .glyphicon.tile:hover,.white h3>a .glyphicon.tile:active,.white h3>a .glyphicon.tile:hover,.white h4>a .glyphicon.tile:active,.white h4>a .glyphicon.tile:hover,.white h5>a .glyphicon.tile:active,.white h5>a .glyphicon.tile:hover,.white h6>a .glyphicon.tile:active,.white h6>a .glyphicon.tile:hover,.white li>a .glyphicon.tile:active,.white li>a .glyphicon.tile:hover,.white p>a .glyphicon.tile:active,.white p>a .glyphicon.tile:hover,.white td>a .glyphicon.tile:active,.white td>a .glyphicon.tile:hover{color:#4e4e4e}.white ul.nav-sidebar>li.active>a{color:#000}.white ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.white ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.white ul.nav-sidebar>li>a:hover{color:#000}.white ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.white ul.dropdown-menu>li>a:hover{color:#fff}.white.subnav{opacity:.96}.white.subnav .navbar-brand{color:#000}.white.subnav .navbar-brand a{text-decoration:none;color:#000}.white.subnav li>a{color:#aaa}.white.subnav li>a.active{color:#000}.white.subnav li>a:hover{color:#5b5b5b}.white .sidebar strong,.white.subnav .navbar-toggle{color:#000}.white.subnav .navbar-toggle:hover{background-color:transparent}.white.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.white .sidebar a strong,.white .sidebar a strong:active,.white .sidebar a strong:link,.white .sidebar a strong:visited{color:#0089bc}.white .sidebar a strong:hover{color:#005170}.white cite.bubble strong{color:#414141}.white cite.bubble a:active,.white cite.bubble a:link,.white cite.bubble a:visited{color:#0089bc}.white cite.bubble a:hover{color:#005170}.white blockquote,.white blockquote p,.white blockquote ul>li{color:#747474}.sand{background-color:#f9f9ef;color:#6f6f6f}.sand .lead a{font-weight:300}.sand .span>a,.sand address>a,.sand em>a,.sand h1>a,.sand h2>a,.sand h3>a,.sand h4>a,.sand h5>a,.sand h6>a,.sand li>a,.sand p>a,.sand td>a{-webkit-transition:.2s color;transition:.2s color}.sand .nav li>a,.sand .span>a:active,.sand .span>a:hover,.sand address>a:active,.sand address>a:hover,.sand em>a:active,.sand em>a:hover,.sand h1>a:active,.sand h1>a:hover,.sand h2>a:active,.sand h2>a:hover,.sand h3>a:active,.sand h3>a:hover,.sand h4>a:active,.sand h4>a:hover,.sand h5>a:active,.sand h5>a:hover,.sand h6>a:active,.sand h6>a:hover,.sand li>a:active,.sand li>a:hover,.sand p>a:active,.sand p>a:hover,.sand td>a:active,.sand td>a:hover{text-decoration:none}.sand.separated{border-bottom-color:#e4e4b7}.sand .h1,.sand .h2,.sand .h3,.sand .h4,.sand .h5,.sand .h6,.sand h1,.sand h2,.sand h3,.sand h4,.sand h5,.sand h6{color:#000}.sand.jumbotron .h1,.sand.jumbotron h1{color:#2f2f2f}.sand.jumbotron .h2,.sand.jumbotron .h3,.sand.jumbotron .h4,.sand.jumbotron .h5,.sand.jumbotron .h6,.sand.jumbotron h2,.sand.jumbotron h3,.sand.jumbotron h4,.sand.jumbotron h5,.sand.jumbotron h6{color:#6f6f6f}.sand .span>a:active,.sand .span>a:link,.sand .span>a:visited,.sand address>a:active,.sand address>a:link,.sand address>a:visited,.sand em>a:active,.sand em>a:link,.sand em>a:visited,.sand h1>a:active,.sand h1>a:link,.sand h1>a:visited,.sand h2>a:active,.sand h2>a:link,.sand h2>a:visited,.sand h3>a:active,.sand h3>a:link,.sand h3>a:visited,.sand h4>a:active,.sand h4>a:link,.sand h4>a:visited,.sand h5>a:active,.sand h5>a:link,.sand h5>a:visited,.sand h6>a:active,.sand h6>a:link,.sand h6>a:visited,.sand li>a:active,.sand li>a:link,.sand li>a:visited,.sand p>a:active,.sand p>a:link,.sand p>a:visited,.sand td>a:active,.sand td>a:link,.sand td>a:visited{color:#0089bc}.sand .span>a:hover,.sand address>a:hover,.sand em>a:hover,.sand h1>a:hover,.sand h2>a:hover,.sand h3>a:hover,.sand h4>a:hover,.sand h5>a:hover,.sand h6>a:hover,.sand li>a:hover,.sand p>a:hover,.sand td>a:hover{color:#005170}.sand .span>a .glyphicon.tile,.sand address>a .glyphicon.tile,.sand em>a .glyphicon.tile,.sand h1>a .glyphicon.tile,.sand h2>a .glyphicon.tile,.sand h3>a .glyphicon.tile,.sand h4>a .glyphicon.tile,.sand h5>a .glyphicon.tile,.sand h6>a .glyphicon.tile,.sand li>a .glyphicon.tile,.sand p>a .glyphicon.tile,.sand td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.sand .span>a .glyphicon.tile:active,.sand .span>a .glyphicon.tile:hover,.sand address>a .glyphicon.tile:active,.sand address>a .glyphicon.tile:hover,.sand em>a .glyphicon.tile:active,.sand em>a .glyphicon.tile:hover,.sand h1>a .glyphicon.tile:active,.sand h1>a .glyphicon.tile:hover,.sand h2>a .glyphicon.tile:active,.sand h2>a .glyphicon.tile:hover,.sand h3>a .glyphicon.tile:active,.sand h3>a .glyphicon.tile:hover,.sand h4>a .glyphicon.tile:active,.sand h4>a .glyphicon.tile:hover,.sand h5>a .glyphicon.tile:active,.sand h5>a .glyphicon.tile:hover,.sand h6>a .glyphicon.tile:active,.sand h6>a .glyphicon.tile:hover,.sand li>a .glyphicon.tile:active,.sand li>a .glyphicon.tile:hover,.sand p>a .glyphicon.tile:active,.sand p>a .glyphicon.tile:hover,.sand td>a .glyphicon.tile:active,.sand td>a .glyphicon.tile:hover{color:#494949}.sand ul.nav-sidebar>li.active>a{color:#000}.sand ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.sand ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.sand ul.nav-sidebar>li>a:hover{color:#000}.sand ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.sand ul.dropdown-menu>li>a:hover{color:#fff}.sand.subnav{opacity:.96}.sand.subnav .navbar-brand{color:#000}.sand.subnav .navbar-brand a{text-decoration:none;color:#000}.sand.subnav li>a{color:#aaa}.sand.subnav li>a.active{color:#000}.sand.subnav li>a:hover{color:#555}.sand .sidebar strong,.sand.subnav .navbar-toggle{color:#000}.sand.subnav .navbar-toggle:hover{background-color:transparent}.sand.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.sand .sidebar a strong,.sand .sidebar a strong:active,.sand .sidebar a strong:link,.sand .sidebar a strong:visited{color:#0089bc}.sand .sidebar a strong:hover{color:#005170}.sand cite.bubble strong{color:#414141}.sand cite.bubble a:active,.sand cite.bubble a:link,.sand cite.bubble a:visited{color:#0089bc}.sand cite.bubble a:hover{color:#005170}.sand blockquote,.sand blockquote p,.sand blockquote ul>li{color:#747474}.light-gray{background-color:#f4f4f4;color:#6f6f6f}.light-gray .lead a{font-weight:300}.light-gray .span>a,.light-gray address>a,.light-gray em>a,.light-gray h1>a,.light-gray h2>a,.light-gray h3>a,.light-gray h4>a,.light-gray h5>a,.light-gray h6>a,.light-gray li>a,.light-gray p>a,.light-gray td>a{-webkit-transition:.2s color;transition:.2s color}.light-gray .nav li>a,.light-gray .span>a:active,.light-gray .span>a:hover,.light-gray address>a:active,.light-gray address>a:hover,.light-gray em>a:active,.light-gray em>a:hover,.light-gray h1>a:active,.light-gray h1>a:hover,.light-gray h2>a:active,.light-gray h2>a:hover,.light-gray h3>a:active,.light-gray h3>a:hover,.light-gray h4>a:active,.light-gray h4>a:hover,.light-gray h5>a:active,.light-gray h5>a:hover,.light-gray h6>a:active,.light-gray h6>a:hover,.light-gray li>a:active,.light-gray li>a:hover,.light-gray p>a:active,.light-gray p>a:hover,.light-gray td>a:active,.light-gray td>a:hover{text-decoration:none}.light-gray.separated{border-bottom-color:#cdcdcd}.light-gray .h1,.light-gray .h2,.light-gray .h3,.light-gray .h4,.light-gray .h5,.light-gray .h6,.light-gray h1,.light-gray h2,.light-gray h3,.light-gray h4,.light-gray h5,.light-gray h6{color:#000}.light-gray.jumbotron .h1,.light-gray.jumbotron h1{color:#2f2f2f}.light-gray.jumbotron .h2,.light-gray.jumbotron .h3,.light-gray.jumbotron .h4,.light-gray.jumbotron .h5,.light-gray.jumbotron .h6,.light-gray.jumbotron h2,.light-gray.jumbotron h3,.light-gray.jumbotron h4,.light-gray.jumbotron h5,.light-gray.jumbotron h6{color:#6f6f6f}.light-gray .span>a:active,.light-gray .span>a:link,.light-gray .span>a:visited,.light-gray address>a:active,.light-gray address>a:link,.light-gray address>a:visited,.light-gray em>a:active,.light-gray em>a:link,.light-gray em>a:visited,.light-gray h1>a:active,.light-gray h1>a:link,.light-gray h1>a:visited,.light-gray h2>a:active,.light-gray h2>a:link,.light-gray h2>a:visited,.light-gray h3>a:active,.light-gray h3>a:link,.light-gray h3>a:visited,.light-gray h4>a:active,.light-gray h4>a:link,.light-gray h4>a:visited,.light-gray h5>a:active,.light-gray h5>a:link,.light-gray h5>a:visited,.light-gray h6>a:active,.light-gray h6>a:link,.light-gray h6>a:visited,.light-gray li>a:active,.light-gray li>a:link,.light-gray li>a:visited,.light-gray p>a:active,.light-gray p>a:link,.light-gray p>a:visited,.light-gray td>a:active,.light-gray td>a:link,.light-gray td>a:visited{color:#0089bc}.light-gray .span>a:hover,.light-gray address>a:hover,.light-gray em>a:hover,.light-gray h1>a:hover,.light-gray h2>a:hover,.light-gray h3>a:hover,.light-gray h4>a:hover,.light-gray h5>a:hover,.light-gray h6>a:hover,.light-gray li>a:hover,.light-gray p>a:hover,.light-gray td>a:hover{color:#005170}.light-gray .span>a .glyphicon.tile,.light-gray address>a .glyphicon.tile,.light-gray em>a .glyphicon.tile,.light-gray h1>a .glyphicon.tile,.light-gray h2>a .glyphicon.tile,.light-gray h3>a .glyphicon.tile,.light-gray h4>a .glyphicon.tile,.light-gray h5>a .glyphicon.tile,.light-gray h6>a .glyphicon.tile,.light-gray li>a .glyphicon.tile,.light-gray p>a .glyphicon.tile,.light-gray td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-gray .span>a .glyphicon.tile:active,.light-gray .span>a .glyphicon.tile:hover,.light-gray address>a .glyphicon.tile:active,.light-gray address>a .glyphicon.tile:hover,.light-gray em>a .glyphicon.tile:active,.light-gray em>a .glyphicon.tile:hover,.light-gray h1>a .glyphicon.tile:active,.light-gray h1>a .glyphicon.tile:hover,.light-gray h2>a .glyphicon.tile:active,.light-gray h2>a .glyphicon.tile:hover,.light-gray h3>a .glyphicon.tile:active,.light-gray h3>a .glyphicon.tile:hover,.light-gray h4>a .glyphicon.tile:active,.light-gray h4>a .glyphicon.tile:hover,.light-gray h5>a .glyphicon.tile:active,.light-gray h5>a .glyphicon.tile:hover,.light-gray h6>a .glyphicon.tile:active,.light-gray h6>a .glyphicon.tile:hover,.light-gray li>a .glyphicon.tile:active,.light-gray li>a .glyphicon.tile:hover,.light-gray p>a .glyphicon.tile:active,.light-gray p>a .glyphicon.tile:hover,.light-gray td>a .glyphicon.tile:active,.light-gray td>a .glyphicon.tile:hover{color:#494949}.light-gray ul.nav-sidebar>li.active>a{color:#000}.light-gray ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.light-gray ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.light-gray ul.nav-sidebar>li>a:hover{color:#000}.light-gray ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-gray ul.dropdown-menu>li>a:hover{color:#fff}.light-gray.subnav{opacity:.96}.light-gray.subnav .navbar-brand{color:#000}.light-gray.subnav .navbar-brand a{text-decoration:none;color:#000}.light-gray.subnav li>a{color:#aaa}.light-gray.subnav li>a.active{color:#000}.light-gray.subnav li>a:hover{color:#555}.light-gray .sidebar strong,.light-gray.subnav .navbar-toggle{color:#000}.light-gray.subnav .navbar-toggle:hover{background-color:transparent}.light-gray.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-gray .sidebar a strong,.light-gray .sidebar a strong:active,.light-gray .sidebar a strong:link,.light-gray .sidebar a strong:visited{color:#0089bc}.light-gray .sidebar a strong:hover{color:#005170}.light-gray cite.bubble strong{color:#414141}.light-gray cite.bubble a:active,.light-gray cite.bubble a:link,.light-gray cite.bubble a:visited{color:#0089bc}.light-gray cite.bubble a:hover{color:#005170}.light-gray blockquote,.light-gray blockquote p,.light-gray blockquote ul>li,.striped{color:#747474}.striped{background:url(/media/images/common/stripes.png)}.striped .lead a{font-weight:300}.striped .span>a,.striped address>a,.striped em>a,.striped h1>a,.striped h2>a,.striped h3>a,.striped h4>a,.striped h5>a,.striped h6>a,.striped li>a,.striped p>a,.striped td>a{-webkit-transition:.2s color;transition:.2s color}.striped .nav li>a,.striped .span>a:active,.striped .span>a:hover,.striped address>a:active,.striped address>a:hover,.striped em>a:active,.striped em>a:hover,.striped h1>a:active,.striped h1>a:hover,.striped h2>a:active,.striped h2>a:hover,.striped h3>a:active,.striped h3>a:hover,.striped h4>a:active,.striped h4>a:hover,.striped h5>a:active,.striped h5>a:hover,.striped h6>a:active,.striped h6>a:hover,.striped li>a:active,.striped li>a:hover,.striped p>a:active,.striped p>a:hover,.striped td>a:active,.striped td>a:hover{text-decoration:none}.striped.separated{border-bottom-color:#d2d2d2}.striped.jumbotron .h1,.striped.jumbotron h1{color:#343434}.striped.jumbotron .h2,.striped.jumbotron .h3,.striped.jumbotron .h4,.striped.jumbotron .h5,.striped.jumbotron .h6,.striped.jumbotron h2,.striped.jumbotron h3,.striped.jumbotron h4,.striped.jumbotron h5,.striped.jumbotron h6{color:#747474}.striped .span>a:active,.striped .span>a:link,.striped .span>a:visited,.striped address>a:active,.striped address>a:link,.striped address>a:visited,.striped em>a:active,.striped em>a:link,.striped em>a:visited,.striped h1>a:active,.striped h1>a:link,.striped h1>a:visited,.striped h2>a:active,.striped h2>a:link,.striped h2>a:visited,.striped h3>a:active,.striped h3>a:link,.striped h3>a:visited,.striped h4>a:active,.striped h4>a:link,.striped h4>a:visited,.striped h5>a:active,.striped h5>a:link,.striped h5>a:visited,.striped h6>a:active,.striped h6>a:link,.striped h6>a:visited,.striped li>a:active,.striped li>a:link,.striped li>a:visited,.striped p>a:active,.striped p>a:link,.striped p>a:visited,.striped td>a:active,.striped td>a:link,.striped td>a:visited{color:#0089bc}.striped .span>a:hover,.striped address>a:hover,.striped em>a:hover,.striped h1>a:hover,.striped h2>a:hover,.striped h3>a:hover,.striped h4>a:hover,.striped h5>a:hover,.striped h6>a:hover,.striped li>a:hover,.striped p>a:hover,.striped td>a:hover{color:#005170}.striped .span>a .glyphicon.tile,.striped address>a .glyphicon.tile,.striped em>a .glyphicon.tile,.striped h1>a .glyphicon.tile,.striped h2>a .glyphicon.tile,.striped h3>a .glyphicon.tile,.striped h4>a .glyphicon.tile,.striped h5>a .glyphicon.tile,.striped h6>a .glyphicon.tile,.striped li>a .glyphicon.tile,.striped p>a .glyphicon.tile,.striped td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.striped .span>a .glyphicon.tile:active,.striped .span>a .glyphicon.tile:hover,.striped address>a .glyphicon.tile:active,.striped address>a .glyphicon.tile:hover,.striped em>a .glyphicon.tile:active,.striped em>a .glyphicon.tile:hover,.striped h1>a .glyphicon.tile:active,.striped h1>a .glyphicon.tile:hover,.striped h2>a .glyphicon.tile:active,.striped h2>a .glyphicon.tile:hover,.striped h3>a .glyphicon.tile:active,.striped h3>a .glyphicon.tile:hover,.striped h4>a .glyphicon.tile:active,.striped h4>a .glyphicon.tile:hover,.striped h5>a .glyphicon.tile:active,.striped h5>a .glyphicon.tile:hover,.striped h6>a .glyphicon.tile:active,.striped h6>a .glyphicon.tile:hover,.striped li>a .glyphicon.tile:active,.striped li>a .glyphicon.tile:hover,.striped p>a .glyphicon.tile:active,.striped p>a .glyphicon.tile:hover,.striped td>a .glyphicon.tile:active,.striped td>a .glyphicon.tile:hover{color:#4e4e4e}.striped ul.nav-sidebar>li.active>a{color:#000}.striped ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.striped ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.striped ul.nav-sidebar>li>a:hover{color:#000}.striped ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.striped ul.dropdown-menu>li>a:hover{color:#fff}.striped.subnav{opacity:.96}.striped.subnav .navbar-brand{color:#000}.striped.subnav .navbar-brand a{text-decoration:none;color:#000}.striped.subnav li>a{color:#aaa}.striped.subnav li>a.active{color:#000}.striped.subnav li>a:hover{color:#5b5b5b}.striped .sidebar strong,.striped.subnav .navbar-toggle{color:#000}.striped.subnav .navbar-toggle:hover{background-color:transparent}.striped.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.striped .sidebar a strong,.striped .sidebar a strong:active,.striped .sidebar a strong:link,.striped .sidebar a strong:visited{color:#0089bc}.striped .sidebar a strong:hover{color:#005170}.striped cite.bubble strong{color:#414141}.striped cite.bubble a:active,.striped cite.bubble a:link,.striped cite.bubble a:visited{color:#0089bc}.striped cite.bubble a:hover{color:#005170}.striped blockquote,.striped blockquote p,.striped blockquote ul>li{color:#747474}.striped .h1,.striped .h2,.striped .h3,.striped .h4,.striped .h5,.striped .h6,.striped h1,.striped h2,.striped h3,.striped h4,.striped h5,.striped h6{color:#4e4e4e}.cubes{color:#747474;background:url(/media/images/common/cube_tile_lt_gray.png)}.cubes .lead a{font-weight:300}.cubes .span>a,.cubes address>a,.cubes em>a,.cubes h1>a,.cubes h2>a,.cubes h3>a,.cubes h4>a,.cubes h5>a,.cubes h6>a,.cubes li>a,.cubes p>a,.cubes td>a{-webkit-transition:.2s color;transition:.2s color}.cubes .nav li>a,.cubes .span>a:active,.cubes .span>a:hover,.cubes address>a:active,.cubes address>a:hover,.cubes em>a:active,.cubes em>a:hover,.cubes h1>a:active,.cubes h1>a:hover,.cubes h2>a:active,.cubes h2>a:hover,.cubes h3>a:active,.cubes h3>a:hover,.cubes h4>a:active,.cubes h4>a:hover,.cubes h5>a:active,.cubes h5>a:hover,.cubes h6>a:active,.cubes h6>a:hover,.cubes li>a:active,.cubes li>a:hover,.cubes p>a:active,.cubes p>a:hover,.cubes td>a:active,.cubes td>a:hover{text-decoration:none}.cubes.separated{border-bottom-color:#d2d2d2}.cubes.jumbotron .h1,.cubes.jumbotron h1{color:#343434}.cubes.jumbotron .h2,.cubes.jumbotron .h3,.cubes.jumbotron .h4,.cubes.jumbotron .h5,.cubes.jumbotron .h6,.cubes.jumbotron h2,.cubes.jumbotron h3,.cubes.jumbotron h4,.cubes.jumbotron h5,.cubes.jumbotron h6{color:#747474}.cubes .span>a:active,.cubes .span>a:link,.cubes .span>a:visited,.cubes address>a:active,.cubes address>a:link,.cubes address>a:visited,.cubes em>a:active,.cubes em>a:link,.cubes em>a:visited,.cubes h1>a:active,.cubes h1>a:link,.cubes h1>a:visited,.cubes h2>a:active,.cubes h2>a:link,.cubes h2>a:visited,.cubes h3>a:active,.cubes h3>a:link,.cubes h3>a:visited,.cubes h4>a:active,.cubes h4>a:link,.cubes h4>a:visited,.cubes h5>a:active,.cubes h5>a:link,.cubes h5>a:visited,.cubes h6>a:active,.cubes h6>a:link,.cubes h6>a:visited,.cubes li>a:active,.cubes li>a:link,.cubes li>a:visited,.cubes p>a:active,.cubes p>a:link,.cubes p>a:visited,.cubes td>a:active,.cubes td>a:link,.cubes td>a:visited{color:#0089bc}.cubes .span>a:hover,.cubes address>a:hover,.cubes em>a:hover,.cubes h1>a:hover,.cubes h2>a:hover,.cubes h3>a:hover,.cubes h4>a:hover,.cubes h5>a:hover,.cubes h6>a:hover,.cubes li>a:hover,.cubes p>a:hover,.cubes td>a:hover{color:#005170}.cubes .span>a .glyphicon.tile,.cubes address>a .glyphicon.tile,.cubes em>a .glyphicon.tile,.cubes h1>a .glyphicon.tile,.cubes h2>a .glyphicon.tile,.cubes h3>a .glyphicon.tile,.cubes h4>a .glyphicon.tile,.cubes h5>a .glyphicon.tile,.cubes h6>a .glyphicon.tile,.cubes li>a .glyphicon.tile,.cubes p>a .glyphicon.tile,.cubes td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.cubes .span>a .glyphicon.tile:active,.cubes .span>a .glyphicon.tile:hover,.cubes address>a .glyphicon.tile:active,.cubes address>a .glyphicon.tile:hover,.cubes em>a .glyphicon.tile:active,.cubes em>a .glyphicon.tile:hover,.cubes h1>a .glyphicon.tile:active,.cubes h1>a .glyphicon.tile:hover,.cubes h2>a .glyphicon.tile:active,.cubes h2>a .glyphicon.tile:hover,.cubes h3>a .glyphicon.tile:active,.cubes h3>a .glyphicon.tile:hover,.cubes h4>a .glyphicon.tile:active,.cubes h4>a .glyphicon.tile:hover,.cubes h5>a .glyphicon.tile:active,.cubes h5>a .glyphicon.tile:hover,.cubes h6>a .glyphicon.tile:active,.cubes h6>a .glyphicon.tile:hover,.cubes li>a .glyphicon.tile:active,.cubes li>a .glyphicon.tile:hover,.cubes p>a .glyphicon.tile:active,.cubes p>a .glyphicon.tile:hover,.cubes td>a .glyphicon.tile:active,.cubes td>a .glyphicon.tile:hover{color:#4e4e4e}.cubes ul.nav-sidebar>li.active>a{color:#000}.cubes ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.blue .lead a,.dark-blue .lead a,.dark-green .lead a,.green .lead a,.light-blue .lead a{font-weight:300}.cubes ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.cubes ul.nav-sidebar>li>a:hover{color:#000}.cubes ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.cubes ul.dropdown-menu>li>a:hover{color:#fff}.cubes.subnav{opacity:.96}.cubes.subnav .navbar-brand{color:#000}.cubes.subnav .navbar-brand a{text-decoration:none;color:#000}.cubes.subnav li>a{color:#aaa}.cubes.subnav li>a.active{color:#000}.cubes.subnav li>a:hover{color:#5b5b5b}.cubes .sidebar strong,.cubes.subnav .navbar-toggle{color:#000}.cubes.subnav .navbar-toggle:hover{background-color:transparent}.cubes.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.cubes .sidebar a strong,.cubes .sidebar a strong:active,.cubes .sidebar a strong:link,.cubes .sidebar a strong:visited{color:#0089bc}.cubes .sidebar a strong:hover{color:#005170}.cubes cite.bubble strong{color:#414141}.cubes cite.bubble a:active,.cubes cite.bubble a:link,.cubes cite.bubble a:visited{color:#0089bc}.cubes cite.bubble a:hover{color:#005170}.cubes blockquote,.cubes blockquote p,.cubes blockquote ul>li{color:#747474}.cubes .h1,.cubes .h2,.cubes .h3,.cubes .h4,.cubes .h5,.cubes .h6,.cubes h1,.cubes h2,.cubes h3,.cubes h4,.cubes h5,.cubes h6{color:#4e4e4e}.green{background-color:#3BB878;color:#fff}.green .span>a,.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{-webkit-transition:.2s color;transition:.2s color}.green .nav li>a,.green .span>a:active,.green .span>a:hover,.green address>a:active,.green address>a:hover,.green em>a:active,.green em>a:hover,.green h1>a:active,.green h1>a:hover,.green h2>a:active,.green h2>a:hover,.green h3>a:active,.green h3>a:hover,.green h4>a:active,.green h4>a:hover,.green h5>a:active,.green h5>a:hover,.green h6>a:active,.green h6>a:hover,.green li>a:active,.green li>a:hover,.green p>a:active,.green p>a:hover,.green td>a:active,.green td>a:hover{text-decoration:none}.green.separated{border-bottom-color:#287e52}.green .h1,.green .h2,.green .h3,.green .h4,.green .h5,.green .h6,.green h1,.green h2,.green h3,.green h4,.green h5,.green h6{color:#fff}.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{color:#fff;text-decoration:underline}.dark-green .nav li>a,.dark-green .span>a:active,.dark-green .span>a:hover,.dark-green address>a:active,.dark-green address>a:hover,.dark-green em>a:active,.dark-green em>a:hover,.dark-green h1>a:active,.dark-green h1>a:hover,.dark-green h2>a:active,.dark-green h2>a:hover,.dark-green h3>a:active,.dark-green h3>a:hover,.dark-green h4>a:active,.dark-green h4>a:hover,.dark-green h5>a:active,.dark-green h5>a:hover,.dark-green h6>a:active,.dark-green h6>a:hover,.dark-green li>a:active,.dark-green li>a:hover,.dark-green p>a:active,.dark-green p>a:hover,.dark-green td>a:active,.dark-green td>a:hover,.green address>a:hover,.green em>a:hover,.green h1>a:hover,.green h2>a:hover,.green h3>a:hover,.green h4>a:hover,.green h5>a:hover,.green h6>a:hover,.green li>a:hover,.green p>a:hover,.green td>a:hover,.green.subnav .navbar-brand a{text-decoration:none}.green.subnav .navbar-brand{color:#fff}.green.subnav li>a{color:#a1e1c0}.green.subnav li>a.active,.green.subnav li>a:hover{color:#fff}.green.subnav .navbar-toggle{color:#226b46}.green.subnav .navbar-toggle:hover{background-color:transparent}.green.subnav .navbar-collapse{border-top-color:#226b46}.green.subnav .subnav-divider{border-bottom:1px solid #3BB878}.green .form-control{border:0!important}.dark-green{background-color:#35a56b;color:#fff}.dark-green .span>a,.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{-webkit-transition:.2s color;transition:.2s color}.dark-green.separated{border-bottom-color:#226b46}.dark-green .h1,.dark-green .h2,.dark-green .h3,.dark-green .h4,.dark-green .h5,.dark-green .h6,.dark-green h1,.dark-green h2,.dark-green h3,.dark-green h4,.dark-green h5,.dark-green h6{color:#fff}.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{color:#fff;text-decoration:underline}.blue .nav li>a,.blue .span>a:active,.blue .span>a:hover,.blue address>a:active,.blue address>a:hover,.blue em>a:active,.blue em>a:hover,.blue h1>a:active,.blue h1>a:hover,.blue h2>a:active,.blue h2>a:hover,.blue h3>a:active,.blue h3>a:hover,.blue h4>a:active,.blue h4>a:hover,.blue h5>a:active,.blue h5>a:hover,.blue h6>a:active,.blue h6>a:hover,.blue li>a:active,.blue li>a:hover,.blue p>a:active,.blue p>a:hover,.blue td>a:active,.blue td>a:hover,.dark-green address>a:hover,.dark-green em>a:hover,.dark-green h1>a:hover,.dark-green h2>a:hover,.dark-green h3>a:hover,.dark-green h4>a:hover,.dark-green h5>a:hover,.dark-green h6>a:hover,.dark-green li>a:hover,.dark-green p>a:hover,.dark-green td>a:hover,.dark-green.subnav .navbar-brand a{text-decoration:none}.dark-green.subnav .navbar-brand{color:#fff}.dark-green.subnav li>a{color:#8edbb3}.dark-green.subnav li>a.active,.dark-green.subnav li>a:hover{color:#fff}.dark-green.subnav .navbar-toggle{color:#1c5739}.dark-green.subnav .navbar-toggle:hover{background-color:transparent}.dark-green.subnav .navbar-collapse{border-top-color:#1c5739}.dark-green.subnav .subnav-divider{border-bottom:1px solid #35a56b}.dark-green .form-control{border:0!important}.blue{background-color:#00aeef;color:#fff}.blue .span>a,.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{-webkit-transition:.2s color;transition:.2s color}.blue.separated{border-bottom-color:#0076a3}.blue .h1,.blue .h2,.blue .h3,.blue .h4,.blue .h5,.blue .h6,.blue h1,.blue h2,.blue h3,.blue h4,.blue h5,.blue h6{color:#fff}.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{color:#fff;text-decoration:underline}.blue address>a:hover,.blue em>a:hover,.blue h1>a:hover,.blue h2>a:hover,.blue h3>a:hover,.blue h4>a:hover,.blue h5>a:hover,.blue h6>a:hover,.blue li>a:hover,.blue p>a:hover,.blue td>a:hover,.blue.subnav .navbar-brand a,.dark-blue .nav li>a,.dark-blue .span>a:active,.dark-blue .span>a:hover,.dark-blue address>a:active,.dark-blue address>a:hover,.dark-blue em>a:active,.dark-blue em>a:hover,.dark-blue h1>a:active,.dark-blue h1>a:hover,.dark-blue h2>a:active,.dark-blue h2>a:hover,.dark-blue h3>a:active,.dark-blue h3>a:hover,.dark-blue h4>a:active,.dark-blue h4>a:hover,.dark-blue h5>a:active,.dark-blue h5>a:hover,.dark-blue h6>a:active,.dark-blue h6>a:hover,.dark-blue li>a:active,.dark-blue li>a:hover,.dark-blue p>a:active,.dark-blue p>a:hover,.dark-blue td>a:active,.dark-blue td>a:hover{text-decoration:none}.blue.subnav .navbar-brand{color:#fff}.blue.subnav li>a{color:#7fdcff}.blue.subnav li>a.active,.blue.subnav li>a:hover{color:#fff}.blue.subnav .navbar-toggle{color:#006489}.blue.subnav .navbar-toggle:hover{background-color:transparent}.blue.subnav .navbar-collapse{border-top-color:#006489}.blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.blue .form-control{border:0!important}.dark-blue{background-color:#00aeef;color:#fff}.dark-blue .span>a,.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{-webkit-transition:.2s color;transition:.2s color}.dark-blue.separated{border-bottom-color:#0076a3}.dark-blue .h1,.dark-blue .h2,.dark-blue .h3,.dark-blue .h4,.dark-blue .h5,.dark-blue .h6,.dark-blue h1,.dark-blue h2,.dark-blue h3,.dark-blue h4,.dark-blue h5,.dark-blue h6{color:#fff}.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{color:#fff;text-decoration:underline}.dark-blue address>a:hover,.dark-blue em>a:hover,.dark-blue h1>a:hover,.dark-blue h2>a:hover,.dark-blue h3>a:hover,.dark-blue h4>a:hover,.dark-blue h5>a:hover,.dark-blue h6>a:hover,.dark-blue li>a:hover,.dark-blue p>a:hover,.dark-blue td>a:hover,.dark-blue.subnav .navbar-brand a,.light-blue .nav li>a,.light-blue .span>a:active,.light-blue .span>a:hover,.light-blue address>a:active,.light-blue address>a:hover,.light-blue em>a:active,.light-blue em>a:hover,.light-blue h1>a:active,.light-blue h1>a:hover,.light-blue h2>a:active,.light-blue h2>a:hover,.light-blue h3>a:active,.light-blue h3>a:hover,.light-blue h4>a:active,.light-blue h4>a:hover,.light-blue h5>a:active,.light-blue h5>a:hover,.light-blue h6>a:active,.light-blue h6>a:hover,.light-blue li>a:active,.light-blue li>a:hover,.light-blue p>a:active,.light-blue p>a:hover,.light-blue td>a:active,.light-blue td>a:hover,.light-blue ul.dropdown-menu>li>a:link,.light-blue.subnav .navbar-brand a,.red .nav li>a,.red .span>a:active,.red .span>a:hover,.red address>a:active,.red address>a:hover,.red em>a:active,.red em>a:hover,.red h1>a:active,.red h1>a:hover,.red h2>a:active,.red h2>a:hover,.red h3>a:active,.red h3>a:hover,.red h4>a:active,.red h4>a:hover,.red h5>a:active,.red h5>a:hover,.red h6>a:active,.red h6>a:hover,.red li>a:active,.red li>a:hover,.red p>a:active,.red p>a:hover,.red td>a:active,.red td>a:hover{text-decoration:none}.dark-blue.subnav .navbar-brand{color:#fff}.dark-blue.subnav li>a{color:#7fdcff}.dark-blue.subnav li>a.active,.dark-blue.subnav li>a:hover{color:#fff}.dark-blue.subnav .navbar-toggle{color:#006489}.dark-blue.subnav .navbar-toggle:hover{background-color:transparent}.dark-blue.subnav .navbar-collapse{border-top-color:#006489}.dark-blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.dark-blue .form-control{border:0!important}.light-blue{background-color:#edf7fe;color:#747474}.light-blue .span>a,.light-blue address>a,.light-blue em>a,.light-blue h1>a,.light-blue h2>a,.light-blue h3>a,.light-blue h4>a,.light-blue h5>a,.light-blue h6>a,.light-blue li>a,.light-blue p>a,.light-blue td>a{-webkit-transition:.2s color;transition:.2s color}.light-blue.separated{border-bottom-color:#a5d7fa}.light-blue .h1,.light-blue .h2,.light-blue .h3,.light-blue .h4,.light-blue .h5,.light-blue .h6,.light-blue h1,.light-blue h2,.light-blue h3,.light-blue h4,.light-blue h5,.light-blue h6{color:#000}.light-blue.jumbotron .h1,.light-blue.jumbotron h1{color:#343434}.light-blue.jumbotron .h2,.light-blue.jumbotron .h3,.light-blue.jumbotron .h4,.light-blue.jumbotron .h5,.light-blue.jumbotron .h6,.light-blue.jumbotron h2,.light-blue.jumbotron h3,.light-blue.jumbotron h4,.light-blue.jumbotron h5,.light-blue.jumbotron h6{color:#747474}.light-blue .span>a:active,.light-blue .span>a:link,.light-blue .span>a:visited,.light-blue address>a:active,.light-blue address>a:link,.light-blue address>a:visited,.light-blue em>a:active,.light-blue em>a:link,.light-blue em>a:visited,.light-blue h1>a:active,.light-blue h1>a:link,.light-blue h1>a:visited,.light-blue h2>a:active,.light-blue h2>a:link,.light-blue h2>a:visited,.light-blue h3>a:active,.light-blue h3>a:link,.light-blue h3>a:visited,.light-blue h4>a:active,.light-blue h4>a:link,.light-blue h4>a:visited,.light-blue h5>a:active,.light-blue h5>a:link,.light-blue h5>a:visited,.light-blue h6>a:active,.light-blue h6>a:link,.light-blue h6>a:visited,.light-blue li>a:active,.light-blue li>a:link,.light-blue li>a:visited,.light-blue p>a:active,.light-blue p>a:link,.light-blue p>a:visited,.light-blue td>a:active,.light-blue td>a:link,.light-blue td>a:visited{color:#0089bc}.light-blue .span>a:hover,.light-blue address>a:hover,.light-blue em>a:hover,.light-blue h1>a:hover,.light-blue h2>a:hover,.light-blue h3>a:hover,.light-blue h4>a:hover,.light-blue h5>a:hover,.light-blue h6>a:hover,.light-blue li>a:hover,.light-blue p>a:hover,.light-blue td>a:hover{color:#005170}.light-blue .span>a .glyphicon.tile,.light-blue address>a .glyphicon.tile,.light-blue em>a .glyphicon.tile,.light-blue h1>a .glyphicon.tile,.light-blue h2>a .glyphicon.tile,.light-blue h3>a .glyphicon.tile,.light-blue h4>a .glyphicon.tile,.light-blue h5>a .glyphicon.tile,.light-blue h6>a .glyphicon.tile,.light-blue li>a .glyphicon.tile,.light-blue p>a .glyphicon.tile,.light-blue td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-blue .span>a .glyphicon.tile:active,.light-blue .span>a .glyphicon.tile:hover,.light-blue address>a .glyphicon.tile:active,.light-blue address>a .glyphicon.tile:hover,.light-blue em>a .glyphicon.tile:active,.light-blue em>a .glyphicon.tile:hover,.light-blue h1>a .glyphicon.tile:active,.light-blue h1>a .glyphicon.tile:hover,.light-blue h2>a .glyphicon.tile:active,.light-blue h2>a .glyphicon.tile:hover,.light-blue h3>a .glyphicon.tile:active,.light-blue h3>a .glyphicon.tile:hover,.light-blue h4>a .glyphicon.tile:active,.light-blue h4>a .glyphicon.tile:hover,.light-blue h5>a .glyphicon.tile:active,.light-blue h5>a .glyphicon.tile:hover,.light-blue h6>a .glyphicon.tile:active,.light-blue h6>a .glyphicon.tile:hover,.light-blue li>a .glyphicon.tile:active,.light-blue li>a .glyphicon.tile:hover,.light-blue p>a .glyphicon.tile:active,.light-blue p>a .glyphicon.tile:hover,.light-blue td>a .glyphicon.tile:active,.light-blue td>a .glyphicon.tile:hover{color:#4e4e4e}.light-blue ul.nav-sidebar>li.active>a{color:#000}.light-blue ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.dark-purple .lead a,.hero .lead a,.hero-accent .lead a,.light-purple .lead a,.logo-bg-dark .lead a,.primary .lead a,.purple .lead a,.red .lead a{font-weight:300}.light-blue ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.light-blue ul.nav-sidebar>li>a:hover{color:#000}.light-blue ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.light-blue ul.dropdown-menu>li>a:hover{color:#fff}.light-blue.subnav{opacity:.96}.light-blue.subnav .navbar-brand,.light-blue.subnav .navbar-brand a{color:#000}.light-blue.subnav li>a{color:#aaa}.light-blue.subnav li>a.active{color:#000}.light-blue.subnav li>a:hover{color:#5b5b5b}.light-blue .sidebar strong,.light-blue.subnav .navbar-toggle{color:#000}.light-blue.subnav .navbar-toggle:hover{background-color:transparent}.light-blue.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-blue .sidebar a strong,.light-blue .sidebar a strong:active,.light-blue .sidebar a strong:link,.light-blue .sidebar a strong:visited{color:#0089bc}.light-blue .sidebar a strong:hover{color:#005170}.light-blue cite.bubble strong{color:#414141}.light-blue cite.bubble a:active,.light-blue cite.bubble a:link,.light-blue cite.bubble a:visited{color:#0089bc}.light-blue cite.bubble a:hover{color:#005170}.light-blue blockquote,.light-blue blockquote p,.light-blue blockquote ul>li{color:#747474}.red{background-color:#d7594c;color:#fff}.red .span>a,.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{-webkit-transition:.2s color;transition:.2s color}.red.separated{border-bottom-color:#af3428}.red .h1,.red .h2,.red .h3,.red .h4,.red .h5,.red .h6,.red h1,.red h2,.red h3,.red h4,.red h5,.red h6{color:#fff}.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{color:#fff;text-decoration:underline}.purple .nav li>a,.purple .span>a:active,.purple .span>a:hover,.purple address>a:active,.purple address>a:hover,.purple em>a:active,.purple em>a:hover,.purple h1>a:active,.purple h1>a:hover,.purple h2>a:active,.purple h2>a:hover,.purple h3>a:active,.purple h3>a:hover,.purple h4>a:active,.purple h4>a:hover,.purple h5>a:active,.purple h5>a:hover,.purple h6>a:active,.purple h6>a:hover,.purple li>a:active,.purple li>a:hover,.purple p>a:active,.purple p>a:hover,.purple td>a:active,.purple td>a:hover,.red address>a:hover,.red em>a:hover,.red h1>a:hover,.red h2>a:hover,.red h3>a:hover,.red h4>a:hover,.red h5>a:hover,.red h6>a:hover,.red li>a:hover,.red p>a:hover,.red td>a:hover,.red.subnav .navbar-brand a{text-decoration:none}.red.subnav .navbar-brand{color:#fff}.red.subnav li>a{color:#f1c5c1}.red.subnav li>a.active,.red.subnav li>a:hover{color:#fff}.red.subnav .navbar-toggle{color:#9a2e23}.red.subnav .navbar-toggle:hover{background-color:transparent}.red.subnav .navbar-collapse{border-top-color:#9a2e23}.red.subnav .subnav-divider{border-bottom:1px solid #d7594c}.red .form-control{border:0!important}.purple{background-color:#c67fcf;color:#fff}.purple .span>a,.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{-webkit-transition:.2s color;transition:.2s color}.purple.separated{border-bottom-color:#ad47ba}.purple .h1,.purple .h2,.purple .h3,.purple .h4,.purple .h5,.purple .h6,.purple h1,.purple h2,.purple h3,.purple h4,.purple h5,.purple h6{color:#fff}.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{color:#fff;text-decoration:underline}.dark-purple .nav li>a,.dark-purple .span>a:active,.dark-purple .span>a:hover,.dark-purple address>a:active,.dark-purple address>a:hover,.dark-purple em>a:active,.dark-purple em>a:hover,.dark-purple h1>a:active,.dark-purple h1>a:hover,.dark-purple h2>a:active,.dark-purple h2>a:hover,.dark-purple h3>a:active,.dark-purple h3>a:hover,.dark-purple h4>a:active,.dark-purple h4>a:hover,.dark-purple h5>a:active,.dark-purple h5>a:hover,.dark-purple h6>a:active,.dark-purple h6>a:hover,.dark-purple li>a:active,.dark-purple li>a:hover,.dark-purple p>a:active,.dark-purple p>a:hover,.dark-purple td>a:active,.dark-purple td>a:hover,.purple address>a:hover,.purple em>a:hover,.purple h1>a:hover,.purple h2>a:hover,.purple h3>a:hover,.purple h4>a:hover,.purple h5>a:hover,.purple h6>a:hover,.purple li>a:hover,.purple p>a:hover,.purple td>a:hover,.purple.subnav .navbar-brand a{text-decoration:none}.purple.subnav .navbar-brand{color:#fff}.purple.subnav li>a{color:#f4e7f6}.purple.subnav li>a.active,.purple.subnav li>a:hover{color:#fff}.purple.subnav .navbar-toggle{color:#9d3fa9}.purple.subnav .navbar-toggle:hover{background-color:transparent}.purple.subnav .navbar-collapse{border-top-color:#9d3fa9}.purple.subnav .subnav-divider{border-bottom:1px solid #c67fcf}.purple .form-control{border:0!important}.dark-purple{background-color:#be6cc8;color:#fff}.dark-purple .span>a,.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{-webkit-transition:.2s color;transition:.2s color}.dark-purple.separated{border-bottom-color:#9d3fa9}.dark-purple .h1,.dark-purple .h2,.dark-purple .h3,.dark-purple .h4,.dark-purple .h5,.dark-purple .h6,.dark-purple h1,.dark-purple h2,.dark-purple h3,.dark-purple h4,.dark-purple h5,.dark-purple h6{color:#fff}.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{color:#fff;text-decoration:underline}.dark-purple address>a:hover,.dark-purple em>a:hover,.dark-purple h1>a:hover,.dark-purple h2>a:hover,.dark-purple h3>a:hover,.dark-purple h4>a:hover,.dark-purple h5>a:hover,.dark-purple h6>a:hover,.dark-purple li>a:hover,.dark-purple p>a:hover,.dark-purple td>a:hover,.dark-purple.subnav .navbar-brand a,.light-purple .nav li>a,.light-purple .span>a:active,.light-purple .span>a:hover,.light-purple address>a:active,.light-purple address>a:hover,.light-purple em>a:active,.light-purple em>a:hover,.light-purple h1>a:active,.light-purple h1>a:hover,.light-purple h2>a:active,.light-purple h2>a:hover,.light-purple h3>a:active,.light-purple h3>a:hover,.light-purple h4>a:active,.light-purple h4>a:hover,.light-purple h5>a:active,.light-purple h5>a:hover,.light-purple h6>a:active,.light-purple h6>a:hover,.light-purple li>a:active,.light-purple li>a:hover,.light-purple p>a:active,.light-purple p>a:hover,.light-purple td>a:active,.light-purple td>a:hover{text-decoration:none}.dark-purple.subnav .navbar-brand{color:#fff}.dark-purple.subnav li>a{color:#ecd4ef}.dark-purple.subnav li>a.active,.dark-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle{color:#8c3896}.dark-purple.subnav .navbar-toggle:hover{background-color:transparent}.dark-purple.subnav .navbar-collapse{border-top-color:#8c3896}.dark-purple.subnav .subnav-divider{border-bottom:1px solid #be6cc8}.dark-purple .form-control{border:0!important}.light-purple{background-color:#eed8f0;color:#fff}.light-purple .span>a,.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{-webkit-transition:.2s color;transition:.2s color}.light-purple.separated{border-bottom-color:#d5a0dc}.light-purple .h1,.light-purple .h2,.light-purple .h3,.light-purple .h4,.light-purple .h5,.light-purple .h6,.light-purple h1,.light-purple h2,.light-purple h3,.light-purple h4,.light-purple h5,.light-purple h6{color:#fff}.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{color:#fff;text-decoration:underline}.light-purple address>a:hover,.light-purple em>a:hover,.light-purple h1>a:hover,.light-purple h2>a:hover,.light-purple h3>a:hover,.light-purple h4>a:hover,.light-purple h5>a:hover,.light-purple h6>a:hover,.light-purple li>a:hover,.light-purple p>a:hover,.light-purple td>a:hover{text-decoration:none}.light-purple.subnav .navbar-brand{color:#fff}.light-purple.subnav .navbar-brand a{text-decoration:none}.light-purple.subnav li>a,.light-purple.subnav li>a.active,.light-purple.subnav li>a:hover{color:#fff}.light-purple.subnav .navbar-toggle{color:#cd8ed5}.light-purple.subnav .navbar-toggle:hover{background-color:transparent}.light-purple.subnav .navbar-collapse{border-top-color:#cd8ed5}.light-purple.subnav .subnav-divider{border-bottom:1px solid #eed8f0}.light-purple .form-control{border:0!important}.dark{background-color:#161616;color:#444}.dark a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.dark-less a,.dark-moar a{-webkit-transition:.2s all}.dark a:active,.dark a:hover{color:#f2f2f2;text-decoration:none}.dark-moar{color:#444;background-color:#0a0a0a}.dark-moar a{transition:.2s all;color:#a6a6a6}.dark-moar a:active,.dark-moar a:hover{color:#f2f2f2;text-decoration:none}.dark-less{background-color:#222;color:#fff}.dark-less a{transition:.2s all;color:#a6a6a6}.dark-less a:active,.dark-less a:hover{color:#f2f2f2;text-decoration:none}.charcoal{color:#444;background-color:#353535}.charcoal a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.charcoal a:active,.charcoal a:hover{color:#f2f2f2;text-decoration:none}.logo-bg-dark{background-color:#2d3339;color:#fff}.logo-bg-dark .span>a,.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{-webkit-transition:.2s color;transition:.2s color}.logo-bg-dark .nav li>a,.logo-bg-dark .span>a:active,.logo-bg-dark .span>a:hover,.logo-bg-dark address>a:active,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:active,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:active,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:active,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:active,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:active,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:active,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:active,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:active,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:active,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:active,.logo-bg-dark td>a:hover{text-decoration:none}.logo-bg-dark.separated{border-bottom-color:#0b0d0e}.logo-bg-dark .h1,.logo-bg-dark .h2,.logo-bg-dark .h3,.logo-bg-dark .h4,.logo-bg-dark .h5,.logo-bg-dark .h6,.logo-bg-dark h1,.logo-bg-dark h2,.logo-bg-dark h3,.logo-bg-dark h4,.logo-bg-dark h5,.logo-bg-dark h6{color:#fff}.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{color:#fff;text-decoration:underline}.hero .nav li>a,.hero .span>a:active,.hero .span>a:hover,.hero address>a:active,.hero address>a:hover,.hero em>a:active,.hero em>a:hover,.hero h1>a:active,.hero h1>a:hover,.hero h2>a:active,.hero h2>a:hover,.hero h3>a:active,.hero h3>a:hover,.hero h4>a:active,.hero h4>a:hover,.hero h5>a:active,.hero h5>a:hover,.hero h6>a:active,.hero h6>a:hover,.hero li>a:active,.hero li>a:hover,.hero p>a:active,.hero p>a:hover,.hero td>a:active,.hero td>a:hover,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:hover,.logo-bg-dark.subnav .navbar-brand a{text-decoration:none}.logo-bg-dark.subnav .navbar-brand{color:#fff}.logo-bg-dark.subnav li>a{color:#6c7a89}.logo-bg-dark.subnav li>a.active,.logo-bg-dark.subnav li>a:hover{color:#fff}.logo-bg-dark.subnav .navbar-toggle{color:#000}.logo-bg-dark.subnav .navbar-toggle:hover{background-color:transparent}.logo-bg-dark.subnav .navbar-collapse{border-top-color:#000}.logo-bg-dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}.logo-bg-dark .form-control{border:0!important}.hero{background-color:#3BB878;color:#fff}.hero .span>a,.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{-webkit-transition:.2s color;transition:.2s color}.hero.separated{border-bottom-color:#287e52}.hero .h1,.hero .h2,.hero .h3,.hero .h4,.hero .h5,.hero .h6,.hero h1,.hero h2,.hero h3,.hero h4,.hero h5,.hero h6{color:#fff}.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{color:#fff;text-decoration:underline}.hero address>a:hover,.hero em>a:hover,.hero h1>a:hover,.hero h2>a:hover,.hero h3>a:hover,.hero h4>a:hover,.hero h5>a:hover,.hero h6>a:hover,.hero li>a:hover,.hero p>a:hover,.hero td>a:hover,.hero-accent .nav li>a,.hero-accent .span>a:active,.hero-accent .span>a:hover,.hero-accent address>a:active,.hero-accent address>a:hover,.hero-accent em>a:active,.hero-accent em>a:hover,.hero-accent h1>a:active,.hero-accent h1>a:hover,.hero-accent h2>a:active,.hero-accent h2>a:hover,.hero-accent h3>a:active,.hero-accent h3>a:hover,.hero-accent h4>a:active,.hero-accent h4>a:hover,.hero-accent h5>a:active,.hero-accent h5>a:hover,.hero-accent h6>a:active,.hero-accent h6>a:hover,.hero-accent li>a:active,.hero-accent li>a:hover,.hero-accent p>a:active,.hero-accent p>a:hover,.hero-accent td>a:active,.hero-accent td>a:hover,.hero.subnav .navbar-brand a{text-decoration:none}.hero.subnav .navbar-brand{color:#fff}.hero.subnav li>a{color:#a1e1c0}.hero.subnav li>a.active,.hero.subnav li>a:hover{color:#fff}.hero.subnav .navbar-toggle{color:#226b46}.hero.subnav .navbar-toggle:hover{background-color:transparent}.hero.subnav .navbar-collapse{border-top-color:#226b46}.hero.subnav .subnav-divider{border-bottom:1px solid #3BB878}.hero .form-control{border:0!important}.hero-accent{background-color:#35a56b;color:#fff}.hero-accent .span>a,.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{-webkit-transition:.2s color;transition:.2s color}.hero-accent.separated{border-bottom-color:#226b46}.hero-accent .h1,.hero-accent .h2,.hero-accent .h3,.hero-accent .h4,.hero-accent .h5,.hero-accent .h6,.hero-accent h1,.hero-accent h2,.hero-accent h3,.hero-accent h4,.hero-accent h5,.hero-accent h6{color:#fff}.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{color:#fff;text-decoration:underline}.alt .nav li>a,.alt .span>a:active,.alt .span>a:hover,.alt address>a:active,.alt address>a:hover,.alt em>a:active,.alt em>a:hover,.alt h1>a:active,.alt h1>a:hover,.alt h2>a:active,.alt h2>a:hover,.alt h3>a:active,.alt h3>a:hover,.alt h4>a:active,.alt h4>a:hover,.alt h5>a:active,.alt h5>a:hover,.alt h6>a:active,.alt h6>a:hover,.alt li>a:active,.alt li>a:hover,.alt p>a:active,.alt p>a:hover,.alt td>a:active,.alt td>a:hover,.alt ul.dropdown-menu>li>a:link,.alt.subnav .navbar-brand a,.bold .nav li>a,.bold .span>a:active,.bold .span>a:hover,.bold address>a:active,.bold address>a:hover,.bold em>a:active,.bold em>a:hover,.bold h1>a:active,.bold h1>a:hover,.bold h2>a:active,.bold h2>a:hover,.bold h3>a:active,.bold h3>a:hover,.bold h4>a:active,.bold h4>a:hover,.bold h5>a:active,.bold h5>a:hover,.bold h6>a:active,.bold h6>a:hover,.bold li>a:active,.bold li>a:hover,.bold p>a:active,.bold p>a:hover,.bold td>a:active,.bold td>a:hover,.hero-accent address>a:hover,.hero-accent em>a:hover,.hero-accent h1>a:hover,.hero-accent h2>a:hover,.hero-accent h3>a:hover,.hero-accent h4>a:hover,.hero-accent h5>a:hover,.hero-accent h6>a:hover,.hero-accent li>a:hover,.hero-accent p>a:hover,.hero-accent td>a:hover,.hero-accent.subnav .navbar-brand a,.primary .nav li>a,.primary .span>a:active,.primary .span>a:hover,.primary address>a:active,.primary address>a:hover,.primary em>a:active,.primary em>a:hover,.primary h1>a:active,.primary h1>a:hover,.primary h2>a:active,.primary h2>a:hover,.primary h3>a:active,.primary h3>a:hover,.primary h4>a:active,.primary h4>a:hover,.primary h5>a:active,.primary h5>a:hover,.primary h6>a:active,.primary h6>a:hover,.primary li>a:active,.primary li>a:hover,.primary p>a:active,.primary p>a:hover,.primary td>a:active,.primary td>a:hover,.primary ul.dropdown-menu>li>a:link,.primary.subnav .navbar-brand a{text-decoration:none}.hero-accent.subnav .navbar-brand{color:#fff}.hero-accent.subnav li>a{color:#8edbb3}.hero-accent.subnav li>a.active,.hero-accent.subnav li>a:hover{color:#fff}.hero-accent.subnav .navbar-toggle{color:#1c5739}.hero-accent.subnav .navbar-toggle:hover{background-color:transparent}.hero-accent.subnav .navbar-collapse{border-top-color:#1c5739}.hero-accent.subnav .subnav-divider{border-bottom:1px solid #35a56b}.hero-accent .form-control{border:0!important}.alt.subnav .navbar-collapse,.doc-sidebar-inner.subnav .navbar-collapse,.neutral.subnav .navbar-collapse,.primary.subnav .navbar-collapse,.resumator-basic-widget .resumator-job-title,div.logo-tile.subnav .navbar-collapse{border-top-color:#e7e6e6}.primary{background-color:#fff;color:#747474}.primary .span>a,.primary address>a,.primary em>a,.primary h1>a,.primary h2>a,.primary h3>a,.primary h4>a,.primary h5>a,.primary h6>a,.primary li>a,.primary p>a,.primary td>a{-webkit-transition:.2s color;transition:.2s color}.primary.separated{border-bottom-color:#d9d9d9}.primary .h1,.primary .h2,.primary .h3,.primary .h4,.primary .h5,.primary .h6,.primary h1,.primary h2,.primary h3,.primary h4,.primary h5,.primary h6{color:#000}.primary.jumbotron .h1,.primary.jumbotron h1{color:#343434}.primary.jumbotron .h2,.primary.jumbotron .h3,.primary.jumbotron .h4,.primary.jumbotron .h5,.primary.jumbotron .h6,.primary.jumbotron h2,.primary.jumbotron h3,.primary.jumbotron h4,.primary.jumbotron h5,.primary.jumbotron h6{color:#747474}.primary .span>a:active,.primary .span>a:link,.primary .span>a:visited,.primary address>a:active,.primary address>a:link,.primary address>a:visited,.primary em>a:active,.primary em>a:link,.primary em>a:visited,.primary h1>a:active,.primary h1>a:link,.primary h1>a:visited,.primary h2>a:active,.primary h2>a:link,.primary h2>a:visited,.primary h3>a:active,.primary h3>a:link,.primary h3>a:visited,.primary h4>a:active,.primary h4>a:link,.primary h4>a:visited,.primary h5>a:active,.primary h5>a:link,.primary h5>a:visited,.primary h6>a:active,.primary h6>a:link,.primary h6>a:visited,.primary li>a:active,.primary li>a:link,.primary li>a:visited,.primary p>a:active,.primary p>a:link,.primary p>a:visited,.primary td>a:active,.primary td>a:link,.primary td>a:visited{color:#0089bc}.primary .span>a:hover,.primary address>a:hover,.primary em>a:hover,.primary h1>a:hover,.primary h2>a:hover,.primary h3>a:hover,.primary h4>a:hover,.primary h5>a:hover,.primary h6>a:hover,.primary li>a:hover,.primary p>a:hover,.primary td>a:hover{color:#005170}.primary .span>a .glyphicon.tile,.primary address>a .glyphicon.tile,.primary em>a .glyphicon.tile,.primary h1>a .glyphicon.tile,.primary h2>a .glyphicon.tile,.primary h3>a .glyphicon.tile,.primary h4>a .glyphicon.tile,.primary h5>a .glyphicon.tile,.primary h6>a .glyphicon.tile,.primary li>a .glyphicon.tile,.primary p>a .glyphicon.tile,.primary td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.primary .span>a .glyphicon.tile:active,.primary .span>a .glyphicon.tile:hover,.primary address>a .glyphicon.tile:active,.primary address>a .glyphicon.tile:hover,.primary em>a .glyphicon.tile:active,.primary em>a .glyphicon.tile:hover,.primary h1>a .glyphicon.tile:active,.primary h1>a .glyphicon.tile:hover,.primary h2>a .glyphicon.tile:active,.primary h2>a .glyphicon.tile:hover,.primary h3>a .glyphicon.tile:active,.primary h3>a .glyphicon.tile:hover,.primary h4>a .glyphicon.tile:active,.primary h4>a .glyphicon.tile:hover,.primary h5>a .glyphicon.tile:active,.primary h5>a .glyphicon.tile:hover,.primary h6>a .glyphicon.tile:active,.primary h6>a .glyphicon.tile:hover,.primary li>a .glyphicon.tile:active,.primary li>a .glyphicon.tile:hover,.primary p>a .glyphicon.tile:active,.primary p>a .glyphicon.tile:hover,.primary td>a .glyphicon.tile:active,.primary td>a .glyphicon.tile:hover{color:#4e4e4e}.primary ul.nav-sidebar>li.active>a{color:#000}.primary ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.primary ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.primary ul.nav-sidebar>li>a:hover{color:#000}.primary ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.primary ul.dropdown-menu>li>a:hover{color:#fff}.primary.subnav{opacity:.96}.primary.subnav .navbar-brand,.primary.subnav .navbar-brand a{color:#000}.primary.subnav li>a{color:#aaa}.primary.subnav li>a.active{color:#000}.primary.subnav li>a:hover{color:#5b5b5b}.primary .sidebar strong,.primary.subnav .navbar-toggle{color:#000}.primary.subnav .navbar-toggle:hover{background-color:transparent}.primary.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.primary .sidebar a strong,.primary .sidebar a strong:active,.primary .sidebar a strong:link,.primary .sidebar a strong:visited{color:#0089bc}.primary .sidebar a strong:hover{color:#005170}.primary cite.bubble strong{color:#414141}.primary cite.bubble a:active,.primary cite.bubble a:link,.primary cite.bubble a:visited{color:#0089bc}.primary cite.bubble a:hover{color:#005170}.alt,.primary blockquote,.primary blockquote p,.primary blockquote ul>li{color:#747474}.alt{background-color:#edf7fe}.alt .lead a{font-weight:300}.alt .span>a,.alt address>a,.alt em>a,.alt h1>a,.alt h2>a,.alt h3>a,.alt h4>a,.alt h5>a,.alt h6>a,.alt li>a,.alt p>a,.alt td>a{-webkit-transition:.2s color;transition:.2s color}.alt.separated{border-bottom-color:#a5d7fa}.alt .h1,.alt .h2,.alt .h3,.alt .h4,.alt .h5,.alt .h6,.alt h1,.alt h2,.alt h3,.alt h4,.alt h5,.alt h6{color:#000}.alt.jumbotron .h1,.alt.jumbotron h1{color:#343434}.alt.jumbotron .h2,.alt.jumbotron .h3,.alt.jumbotron .h4,.alt.jumbotron .h5,.alt.jumbotron .h6,.alt.jumbotron h2,.alt.jumbotron h3,.alt.jumbotron h4,.alt.jumbotron h5,.alt.jumbotron h6{color:#747474}.alt .span>a:active,.alt .span>a:link,.alt .span>a:visited,.alt address>a:active,.alt address>a:link,.alt address>a:visited,.alt em>a:active,.alt em>a:link,.alt em>a:visited,.alt h1>a:active,.alt h1>a:link,.alt h1>a:visited,.alt h2>a:active,.alt h2>a:link,.alt h2>a:visited,.alt h3>a:active,.alt h3>a:link,.alt h3>a:visited,.alt h4>a:active,.alt h4>a:link,.alt h4>a:visited,.alt h5>a:active,.alt h5>a:link,.alt h5>a:visited,.alt h6>a:active,.alt h6>a:link,.alt h6>a:visited,.alt li>a:active,.alt li>a:link,.alt li>a:visited,.alt p>a:active,.alt p>a:link,.alt p>a:visited,.alt td>a:active,.alt td>a:link,.alt td>a:visited{color:#0089bc}.alt .span>a:hover,.alt address>a:hover,.alt em>a:hover,.alt h1>a:hover,.alt h2>a:hover,.alt h3>a:hover,.alt h4>a:hover,.alt h5>a:hover,.alt h6>a:hover,.alt li>a:hover,.alt p>a:hover,.alt td>a:hover{color:#005170}.alt .span>a .glyphicon.tile,.alt address>a .glyphicon.tile,.alt em>a .glyphicon.tile,.alt h1>a .glyphicon.tile,.alt h2>a .glyphicon.tile,.alt h3>a .glyphicon.tile,.alt h4>a .glyphicon.tile,.alt h5>a .glyphicon.tile,.alt h6>a .glyphicon.tile,.alt li>a .glyphicon.tile,.alt p>a .glyphicon.tile,.alt td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.alt .span>a .glyphicon.tile:active,.alt .span>a .glyphicon.tile:hover,.alt address>a .glyphicon.tile:active,.alt address>a .glyphicon.tile:hover,.alt em>a .glyphicon.tile:active,.alt em>a .glyphicon.tile:hover,.alt h1>a .glyphicon.tile:active,.alt h1>a .glyphicon.tile:hover,.alt h2>a .glyphicon.tile:active,.alt h2>a .glyphicon.tile:hover,.alt h3>a .glyphicon.tile:active,.alt h3>a .glyphicon.tile:hover,.alt h4>a .glyphicon.tile:active,.alt h4>a .glyphicon.tile:hover,.alt h5>a .glyphicon.tile:active,.alt h5>a .glyphicon.tile:hover,.alt h6>a .glyphicon.tile:active,.alt h6>a .glyphicon.tile:hover,.alt li>a .glyphicon.tile:active,.alt li>a .glyphicon.tile:hover,.alt p>a .glyphicon.tile:active,.alt p>a .glyphicon.tile:hover,.alt td>a .glyphicon.tile:active,.alt td>a .glyphicon.tile:hover{color:#4e4e4e}.alt ul.nav-sidebar>li.active>a{color:#000}.alt ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.accent .lead a,.bold .lead a,.neutral .lead a{font-weight:300}.alt ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.alt ul.nav-sidebar>li>a:hover{color:#000}.alt ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.alt ul.dropdown-menu>li>a:hover{color:#fff}.alt.subnav{opacity:.96}.alt.subnav .navbar-brand,.alt.subnav .navbar-brand a{color:#000}.alt.subnav li>a{color:#aaa}.alt.subnav li>a.active{color:#000}.alt.subnav li>a:hover{color:#5b5b5b}.alt .sidebar strong,.alt.subnav .navbar-toggle{color:#000}.alt.subnav .navbar-toggle:hover{background-color:transparent}.alt.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.alt .sidebar a strong,.alt .sidebar a strong:active,.alt .sidebar a strong:link,.alt .sidebar a strong:visited{color:#0089bc}.alt .sidebar a strong:hover{color:#005170}.alt cite.bubble strong{color:#414141}.alt cite.bubble a:active,.alt cite.bubble a:link,.alt cite.bubble a:visited{color:#0089bc}.alt cite.bubble a:hover{color:#005170}.alt blockquote,.alt blockquote p,.alt blockquote ul>li{color:#747474}.bold{background-color:#2d3339;color:#fff}.bold .span>a,.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{-webkit-transition:.2s color;transition:.2s color}.bold.separated{border-bottom-color:#0b0d0e}.bold .h1,.bold .h2,.bold .h3,.bold .h4,.bold .h5,.bold .h6,.bold h1,.bold h2,.bold h3,.bold h4,.bold h5,.bold h6{color:#fff}.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{color:#fff;text-decoration:underline}.accent .nav li>a,.accent .span>a:active,.accent .span>a:hover,.accent address>a:active,.accent address>a:hover,.accent em>a:active,.accent em>a:hover,.accent h1>a:active,.accent h1>a:hover,.accent h2>a:active,.accent h2>a:hover,.accent h3>a:active,.accent h3>a:hover,.accent h4>a:active,.accent h4>a:hover,.accent h5>a:active,.accent h5>a:hover,.accent h6>a:active,.accent h6>a:hover,.accent li>a:active,.accent li>a:hover,.accent p>a:active,.accent p>a:hover,.accent td>a:active,.accent td>a:hover,.bold address>a:hover,.bold em>a:hover,.bold h1>a:hover,.bold h2>a:hover,.bold h3>a:hover,.bold h4>a:hover,.bold h5>a:hover,.bold h6>a:hover,.bold li>a:hover,.bold p>a:hover,.bold td>a:hover,.bold.subnav .navbar-brand a{text-decoration:none}.bold.subnav .navbar-brand{color:#fff}.bold.subnav li>a{color:#6c7a89}.bold.subnav li>a.active,.bold.subnav li>a:hover{color:#fff}.bold.subnav .navbar-toggle{color:#000}.bold.subnav .navbar-toggle:hover{background-color:transparent}.bold.subnav .navbar-collapse{border-top-color:#000}.bold.subnav .subnav-divider{border-bottom:1px solid #2d3339}.bold .form-control{border:0!important}.accent{background-color:#00aeef;color:#fff}.accent .span>a,.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{-webkit-transition:.2s color;transition:.2s color}.accent.separated{border-bottom-color:#0076a3}.accent .h1,.accent .h2,.accent .h3,.accent .h4,.accent .h5,.accent .h6,.accent h1,.accent h2,.accent h3,.accent h4,.accent h5,.accent h6{color:#fff}.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{color:#fff;text-decoration:underline}.accent address>a:hover,.accent em>a:hover,.accent h1>a:hover,.accent h2>a:hover,.accent h3>a:hover,.accent h4>a:hover,.accent h5>a:hover,.accent h6>a:hover,.accent li>a:hover,.accent p>a:hover,.accent td>a:hover,.accent.subnav .navbar-brand a,.neutral .nav li>a,.neutral .span>a:active,.neutral .span>a:hover,.neutral address>a:active,.neutral address>a:hover,.neutral em>a:active,.neutral em>a:hover,.neutral h1>a:active,.neutral h1>a:hover,.neutral h2>a:active,.neutral h2>a:hover,.neutral h3>a:active,.neutral h3>a:hover,.neutral h4>a:active,.neutral h4>a:hover,.neutral h5>a:active,.neutral h5>a:hover,.neutral h6>a:active,.neutral h6>a:hover,.neutral li>a:active,.neutral li>a:hover,.neutral p>a:active,.neutral p>a:hover,.neutral td>a:active,.neutral td>a:hover,.neutral ul.dropdown-menu>li>a:link,.neutral.subnav .navbar-brand a,.smart .nav li>a,.smart .span>a:active,.smart .span>a:hover,.smart address>a:active,.smart address>a:hover,.smart em>a:active,.smart em>a:hover,.smart h1>a:active,.smart h1>a:hover,.smart h2>a:active,.smart h2>a:hover,.smart h3>a:active,.smart h3>a:hover,.smart h4>a:active,.smart h4>a:hover,.smart h5>a:active,.smart h5>a:hover,.smart h6>a:active,.smart h6>a:hover,.smart li>a:active,.smart li>a:hover,.smart p>a:active,.smart p>a:hover,.smart td>a:active,.smart td>a:hover{text-decoration:none}.accent.subnav .navbar-brand{color:#fff}.accent.subnav li>a{color:#7fdcff}.accent.subnav li>a.active,.accent.subnav li>a:hover{color:#fff}.accent.subnav .navbar-toggle{color:#006489}.accent.subnav .navbar-toggle:hover{background-color:transparent}.accent.subnav .navbar-collapse{border-top-color:#006489}.accent.subnav .subnav-divider{border-bottom:1px solid #00aeef}.accent .form-control{border:0!important}.neutral{background-color:#ebeff0;color:#747474}.neutral .span>a,.neutral address>a,.neutral em>a,.neutral h1>a,.neutral h2>a,.neutral h3>a,.neutral h4>a,.neutral h5>a,.neutral h6>a,.neutral li>a,.neutral p>a,.neutral td>a{-webkit-transition:.2s color;transition:.2s color}.neutral.separated{border-bottom-color:#bfcccf}.neutral .h1,.neutral .h2,.neutral .h3,.neutral .h4,.neutral .h5,.neutral .h6,.neutral h1,.neutral h2,.neutral h3,.neutral h4,.neutral h5,.neutral h6{color:#000}.neutral.jumbotron .h1,.neutral.jumbotron h1{color:#343434}.neutral.jumbotron .h2,.neutral.jumbotron .h3,.neutral.jumbotron .h4,.neutral.jumbotron .h5,.neutral.jumbotron .h6,.neutral.jumbotron h2,.neutral.jumbotron h3,.neutral.jumbotron h4,.neutral.jumbotron h5,.neutral.jumbotron h6{color:#747474}.neutral .span>a:active,.neutral .span>a:link,.neutral .span>a:visited,.neutral address>a:active,.neutral address>a:link,.neutral address>a:visited,.neutral em>a:active,.neutral em>a:link,.neutral em>a:visited,.neutral h1>a:active,.neutral h1>a:link,.neutral h1>a:visited,.neutral h2>a:active,.neutral h2>a:link,.neutral h2>a:visited,.neutral h3>a:active,.neutral h3>a:link,.neutral h3>a:visited,.neutral h4>a:active,.neutral h4>a:link,.neutral h4>a:visited,.neutral h5>a:active,.neutral h5>a:link,.neutral h5>a:visited,.neutral h6>a:active,.neutral h6>a:link,.neutral h6>a:visited,.neutral li>a:active,.neutral li>a:link,.neutral li>a:visited,.neutral p>a:active,.neutral p>a:link,.neutral p>a:visited,.neutral td>a:active,.neutral td>a:link,.neutral td>a:visited{color:#0089bc}.neutral .span>a:hover,.neutral address>a:hover,.neutral em>a:hover,.neutral h1>a:hover,.neutral h2>a:hover,.neutral h3>a:hover,.neutral h4>a:hover,.neutral h5>a:hover,.neutral h6>a:hover,.neutral li>a:hover,.neutral p>a:hover,.neutral td>a:hover{color:#005170}.neutral .span>a .glyphicon.tile,.neutral address>a .glyphicon.tile,.neutral em>a .glyphicon.tile,.neutral h1>a .glyphicon.tile,.neutral h2>a .glyphicon.tile,.neutral h3>a .glyphicon.tile,.neutral h4>a .glyphicon.tile,.neutral h5>a .glyphicon.tile,.neutral h6>a .glyphicon.tile,.neutral li>a .glyphicon.tile,.neutral p>a .glyphicon.tile,.neutral td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.neutral .span>a .glyphicon.tile:active,.neutral .span>a .glyphicon.tile:hover,.neutral address>a .glyphicon.tile:active,.neutral address>a .glyphicon.tile:hover,.neutral em>a .glyphicon.tile:active,.neutral em>a .glyphicon.tile:hover,.neutral h1>a .glyphicon.tile:active,.neutral h1>a .glyphicon.tile:hover,.neutral h2>a .glyphicon.tile:active,.neutral h2>a .glyphicon.tile:hover,.neutral h3>a .glyphicon.tile:active,.neutral h3>a .glyphicon.tile:hover,.neutral h4>a .glyphicon.tile:active,.neutral h4>a .glyphicon.tile:hover,.neutral h5>a .glyphicon.tile:active,.neutral h5>a .glyphicon.tile:hover,.neutral h6>a .glyphicon.tile:active,.neutral h6>a .glyphicon.tile:hover,.neutral li>a .glyphicon.tile:active,.neutral li>a .glyphicon.tile:hover,.neutral p>a .glyphicon.tile:active,.neutral p>a .glyphicon.tile:hover,.neutral td>a .glyphicon.tile:active,.neutral td>a .glyphicon.tile:hover{color:#4e4e4e}.neutral ul.nav-sidebar>li.active>a{color:#000}.neutral ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.neutral ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.neutral ul.nav-sidebar>li>a:hover{color:#000}.neutral ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.neutral ul.dropdown-menu>li>a:hover{color:#fff}.neutral.subnav{opacity:.96}.neutral.subnav .navbar-brand,.neutral.subnav .navbar-brand a{color:#000}.neutral.subnav li>a{color:#aaa}.neutral.subnav li>a.active{color:#000}.neutral.subnav li>a:hover{color:#5b5b5b}.neutral .sidebar strong,.neutral.subnav .navbar-toggle{color:#000}.neutral.subnav .navbar-toggle:hover{background-color:transparent}.neutral.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.neutral .sidebar a strong,.neutral .sidebar a strong:active,.neutral .sidebar a strong:link,.neutral .sidebar a strong:visited{color:#0089bc}.neutral .sidebar a strong:hover{color:#005170}.neutral cite.bubble strong{color:#414141}.neutral cite.bubble a:active,.neutral cite.bubble a:link,.neutral cite.bubble a:visited{color:#0089bc}.neutral cite.bubble a:hover{color:#005170}.neutral blockquote,.neutral blockquote p,.neutral blockquote ul>li{color:#747474}.smart{background-color:#2d8ec6;color:#fff}.smart .lead a{font-weight:300}.smart .span>a,.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{-webkit-transition:.2s color;transition:.2s color}.smart.separated{border-bottom-color:#1f6188}.smart .h1,.smart .h2,.smart .h3,.smart .h4,.smart .h5,.smart .h6,.smart h1,.smart h2,.smart h3,.smart h4,.smart h5,.smart h6{color:#fff}.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{color:#fff;text-decoration:underline}.smart address>a:hover,.smart em>a:hover,.smart h1>a:hover,.smart h2>a:hover,.smart h3>a:hover,.smart h4>a:hover,.smart h5>a:hover,.smart h6>a:hover,.smart li>a:hover,.smart p>a:hover,.smart td>a:hover,.smart.subnav .navbar-brand a,div.logo-tile .nav li>a,div.logo-tile .span>a:active,div.logo-tile .span>a:hover,div.logo-tile address>a:active,div.logo-tile address>a:hover,div.logo-tile em>a:active,div.logo-tile em>a:hover,div.logo-tile h1>a:active,div.logo-tile h1>a:hover,div.logo-tile h2>a:active,div.logo-tile h2>a:hover,div.logo-tile h3>a:active,div.logo-tile h3>a:hover,div.logo-tile h4>a:active,div.logo-tile h4>a:hover,div.logo-tile h5>a:active,div.logo-tile h5>a:hover,div.logo-tile h6>a:active,div.logo-tile h6>a:hover,div.logo-tile li>a:active,div.logo-tile li>a:hover,div.logo-tile p>a:active,div.logo-tile p>a:hover,div.logo-tile td>a:active,div.logo-tile td>a:hover,div.logo-tile ul.dropdown-menu>li>a:link,div.logo-tile.dark .nav li>a,div.logo-tile.dark .span>a:active,div.logo-tile.dark .span>a:hover,div.logo-tile.dark address>a:active,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:active,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:active,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:active,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:active,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:active,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:active,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:active,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:active,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:active,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:active,div.logo-tile.dark td>a:hover,div.logo-tile.subnav .navbar-brand a{text-decoration:none}.smart.subnav .navbar-brand{color:#fff}.smart.subnav li>a{color:#9acbe8}.smart.subnav li>a.active,.smart.subnav li>a:hover{color:#fff}.smart.subnav .navbar-toggle{color:#1a5273}.smart.subnav .navbar-toggle:hover{background-color:transparent}.smart.subnav .navbar-collapse{border-top-color:#1a5273}.smart.subnav .subnav-divider{border-bottom:1px solid #2d8ec6}.smart .form-control{border:0!important}.add-ons-log-in{margin-top:16px}.docs-list{list-style:none;padding-left:20px}.docs-list>li{line-height:30px}.docs-list>li .glyphicon{font-size:18px}#footer-copyright{font-size:19px;line-height:39px}@media screen and (min-width:768px){#footer-copyright{padding:0 50px;font-size:14px;line-height:14px}#footer-copyright .col{width:19.5%;display:inline-block;vertical-align:middle}#footer-copyright .col:first-child{margin-left:20%}}@media screen and (min-width:992px){#footer-copyright{padding:0}}.footer-col{min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:768px){.footer-col{float:left;width:16.66666667%}}.footer-col:not(:first-child){margin-left:4.166666667%}.footer-col>h5,.footer-col>h5>a{line-height:25px;color:#fff}@media screen and (min-width:768px){.footer-col>h5,.footer-col>h5>a{width:130px;margin:0 auto;font-size:16px}}.footer-col ul{margin-bottom:30px!important;padding-left:0;line-height:25px;list-style:none}@media screen and (min-width:768px){.footer-col ul{width:130px;margin:0 auto}}.footer-col ul>li{padding:7px 0;font-size:19px;white-space:nowrap}.footer-col ul>li:first-child{padding-top:0}.footer-col ul>li:last-child{padding-bottom:0}.footer-col ul>li>ul{margin-top:15px!important}.footer-col ul>li>ul>li{padding:7px 0}.footer-col ul>li .fa{font-size:17px}@media screen and (min-width:768px){.footer-col ul>li>ul>li{padding:1px 0}.footer-col ul>li{font-size:14px;padding:0}}div.landing-tile{padding:30px;margin:15px 0;background-color:#ebeff0}div.landing-tile img{width:100%;max-width:300px}div.landing-tile p.description{margin-bottom:30px}@media screen and (min-width:768px){div.landing-tile img{width:300px}div.landing-tile p.description{margin-bottom:0;min-height:150px}}@media screen and (min-width:992px){div.landing-tile p.description{min-height:120px}}div.landing-tile p.cta{text-align:center;margin-bottom:0}div.landing-tile .btn{-webkit-transition:.2s all;transition:.2s all}.legal{font-weight:800}.legal address,.legal>li>ol>li,.legal>li>p{font-weight:400}.legal>li{padding:10px 0}.legal>li>ol>li{padding:5px 0}img.logo-img{max-height:200px}div.logo-tile{min-height:360px;padding:30px;margin:15px 0;background-color:#ebeff0;color:#747474}div.logo-tile.standard{padding:61px 30px}div.logo-tile .lead a{font-weight:300}div.logo-tile .span>a,div.logo-tile address>a,div.logo-tile em>a,div.logo-tile h1>a,div.logo-tile h2>a,div.logo-tile h3>a,div.logo-tile h4>a,div.logo-tile h5>a,div.logo-tile h6>a,div.logo-tile li>a,div.logo-tile p>a,div.logo-tile td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.separated{border-bottom-color:#bfcccf}.library-category-title,div.logo-tile.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}div.logo-tile .h1,div.logo-tile .h2,div.logo-tile .h3,div.logo-tile .h4,div.logo-tile .h5,div.logo-tile .h6,div.logo-tile h1,div.logo-tile h2,div.logo-tile h3,div.logo-tile h4,div.logo-tile h5,div.logo-tile h6{color:#000}div.logo-tile.jumbotron .h1,div.logo-tile.jumbotron h1{color:#343434}div.logo-tile.jumbotron .h2,div.logo-tile.jumbotron .h3,div.logo-tile.jumbotron .h4,div.logo-tile.jumbotron .h5,div.logo-tile.jumbotron .h6,div.logo-tile.jumbotron h2,div.logo-tile.jumbotron h3,div.logo-tile.jumbotron h4,div.logo-tile.jumbotron h5,div.logo-tile.jumbotron h6{color:#747474}div.logo-tile .span>a:active,div.logo-tile .span>a:link,div.logo-tile .span>a:visited,div.logo-tile address>a:active,div.logo-tile address>a:link,div.logo-tile address>a:visited,div.logo-tile em>a:active,div.logo-tile em>a:link,div.logo-tile em>a:visited,div.logo-tile h1>a:active,div.logo-tile h1>a:link,div.logo-tile h1>a:visited,div.logo-tile h2>a:active,div.logo-tile h2>a:link,div.logo-tile h2>a:visited,div.logo-tile h3>a:active,div.logo-tile h3>a:link,div.logo-tile h3>a:visited,div.logo-tile h4>a:active,div.logo-tile h4>a:link,div.logo-tile h4>a:visited,div.logo-tile h5>a:active,div.logo-tile h5>a:link,div.logo-tile h5>a:visited,div.logo-tile h6>a:active,div.logo-tile h6>a:link,div.logo-tile h6>a:visited,div.logo-tile li>a:active,div.logo-tile li>a:link,div.logo-tile li>a:visited,div.logo-tile p>a:active,div.logo-tile p>a:link,div.logo-tile p>a:visited,div.logo-tile td>a:active,div.logo-tile td>a:link,div.logo-tile td>a:visited{color:#0089bc}div.logo-tile .span>a:hover,div.logo-tile address>a:hover,div.logo-tile em>a:hover,div.logo-tile h1>a:hover,div.logo-tile h2>a:hover,div.logo-tile h3>a:hover,div.logo-tile h4>a:hover,div.logo-tile h5>a:hover,div.logo-tile h6>a:hover,div.logo-tile li>a:hover,div.logo-tile p>a:hover,div.logo-tile td>a:hover{color:#005170}div.logo-tile .span>a .glyphicon.tile,div.logo-tile address>a .glyphicon.tile,div.logo-tile em>a .glyphicon.tile,div.logo-tile h1>a .glyphicon.tile,div.logo-tile h2>a .glyphicon.tile,div.logo-tile h3>a .glyphicon.tile,div.logo-tile h4>a .glyphicon.tile,div.logo-tile h5>a .glyphicon.tile,div.logo-tile h6>a .glyphicon.tile,div.logo-tile li>a .glyphicon.tile,div.logo-tile p>a .glyphicon.tile,div.logo-tile td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}div.logo-tile .span>a .glyphicon.tile:active,div.logo-tile .span>a .glyphicon.tile:hover,div.logo-tile address>a .glyphicon.tile:active,div.logo-tile address>a .glyphicon.tile:hover,div.logo-tile em>a .glyphicon.tile:active,div.logo-tile em>a .glyphicon.tile:hover,div.logo-tile h1>a .glyphicon.tile:active,div.logo-tile h1>a .glyphicon.tile:hover,div.logo-tile h2>a .glyphicon.tile:active,div.logo-tile h2>a .glyphicon.tile:hover,div.logo-tile h3>a .glyphicon.tile:active,div.logo-tile h3>a .glyphicon.tile:hover,div.logo-tile h4>a .glyphicon.tile:active,div.logo-tile h4>a .glyphicon.tile:hover,div.logo-tile h5>a .glyphicon.tile:active,div.logo-tile h5>a .glyphicon.tile:hover,div.logo-tile h6>a .glyphicon.tile:active,div.logo-tile h6>a .glyphicon.tile:hover,div.logo-tile li>a .glyphicon.tile:active,div.logo-tile li>a .glyphicon.tile:hover,div.logo-tile p>a .glyphicon.tile:active,div.logo-tile p>a .glyphicon.tile:hover,div.logo-tile td>a .glyphicon.tile:active,div.logo-tile td>a .glyphicon.tile:hover{color:#4e4e4e}div.logo-tile ul.nav-sidebar>li.active>a{color:#000}div.logo-tile ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}#pre-footer,.doc-sidebar-inner .lead a,div.logo-tile.dark .lead a{font-weight:300}div.logo-tile ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}div.logo-tile ul.nav-sidebar>li>a:hover{color:#000}div.logo-tile ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}div.logo-tile ul.dropdown-menu>li>a:hover{color:#fff}div.logo-tile.subnav{opacity:.96}div.logo-tile.subnav .navbar-brand,div.logo-tile.subnav .navbar-brand a{color:#000}div.logo-tile.subnav li>a{color:#aaa}div.logo-tile.subnav li>a.active{color:#000}div.logo-tile.subnav li>a:hover{color:#5b5b5b}div.logo-tile .sidebar strong,div.logo-tile.subnav .navbar-toggle{color:#000}div.logo-tile.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile .sidebar a strong,div.logo-tile .sidebar a strong:active,div.logo-tile .sidebar a strong:link,div.logo-tile .sidebar a strong:visited{color:#0089bc}div.logo-tile .sidebar a strong:hover{color:#005170}div.logo-tile cite.bubble strong{color:#414141}div.logo-tile cite.bubble a:active,div.logo-tile cite.bubble a:link,div.logo-tile cite.bubble a:visited{color:#0089bc}div.logo-tile cite.bubble a:hover{color:#005170}div.logo-tile blockquote,div.logo-tile blockquote p,div.logo-tile blockquote ul>li{color:#747474}div.logo-tile.dark{background-color:#2d3339;color:#fff}div.logo-tile.dark .span>a,div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.dark.separated{border-bottom-color:#0b0d0e}div.logo-tile.dark .h1,div.logo-tile.dark .h2,div.logo-tile.dark .h3,div.logo-tile.dark .h4,div.logo-tile.dark .h5,div.logo-tile.dark .h6,div.logo-tile.dark h1,div.logo-tile.dark h2,div.logo-tile.dark h3,div.logo-tile.dark h4,div.logo-tile.dark h5,div.logo-tile.dark h6{color:#fff}div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{color:#fff;text-decoration:underline}#pre-footer a:active,#pre-footer a:hover,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:hover,div.logo-tile.dark.subnav .navbar-brand a{text-decoration:none}div.logo-tile.dark.subnav .navbar-brand{color:#fff}div.logo-tile.dark.subnav li>a{color:#6c7a89}div.logo-tile.dark.subnav li>a.active,div.logo-tile.dark.subnav li>a:hover{color:#fff}div.logo-tile.dark.subnav .navbar-toggle{color:#000}div.logo-tile.dark.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.dark.subnav .navbar-collapse{border-top-color:#000}div.logo-tile.dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}div.logo-tile.dark .form-control{border:0!important}div.logo-tile img{display:block;margin:0 auto}div.logo-tile p{margin-top:30px;margin-bottom:0;text-align:center}#main-nav{z-index:9002}#main-nav span{color:#e6e6e6}#navbar-logo{padding:6px 0 6px 15px}.mobile-badge{display:block}.mobile-badge-apple{margin-left:auto;margin-right:0}#pre-footer{padding:30px 0;background-color:#222;color:#fff;text-align:center;font-family:Lato,sans-serif;font-size:21px}#pre-footer a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}#pre-footer a:active,#pre-footer a:hover{color:#f2f2f2}@media screen and (min-width:768px){#navbar-logo{padding-left:0;padding-right:0}#pre-footer span{font-size:24px;line-height:38px}}@media screen and (min-width:992px){#pre-footer span{font-size:30px}}.resumator-basic-widget .resumator-jobs-text>p{margin-bottom:30px}.resumator-basic-widget .resumator-jobs-text li,.resumator-basic-widget .resumator-jobs-text>p{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6em;color:#747474}.btn,.resumator-basic-widget .resumator-job-title,.resumator-basic-widget input[type=button],div#os-tabs span{font-family:Lato,sans-serif}.resumator-basic-widget .resumator-jobs-text strong{color:#414141}.resumator-basic-widget .resumator-job-title{line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:16px;font-size:21px;color:#000;padding-top:30px!important;font-weight:400}.resumator-basic-widget .resumator-job-title .small,.resumator-basic-widget .resumator-job-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.resumator-basic-widget .resumator-job-title+.lead{padding-top:10px}.resumator-basic-widget .resumator-job-view-details{margin-bottom:30px}.resumator-basic-widget .resumator-job-link{margin-bottom:30px!important;font-size:16px}.resumator-basic-widget .resumator-job-link:active,.resumator-basic-widget .resumator-job-link:link,.resumator-basic-widget .resumator-job-link:visited{color:#0089bc}.resumator-basic-widget .resumator-job-link:hover{color:#005170}.btn-funky,.btn-green,.btn-white,.resumator-basic-widget input[type=button]{color:#fff!important;text-decoration:none!important}.resumator-basic-widget input[type=button]{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all;background-color:#3BB878}.resumator-basic-widget input[type=button].active.focus,.resumator-basic-widget input[type=button].active:focus,.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:active.focus,.resumator-basic-widget input[type=button]:active:focus,.resumator-basic-widget input[type=button]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{color:#333;text-decoration:none}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button][disabled],fieldset[disabled] .resumator-basic-widget input[type=button]{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.resumator-basic-widget input[type=button].disabled,fieldset[disabled] a.resumator-basic-widget input[type=button]{pointer-events:none}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{-webkit-box-shadow:none;box-shadow:none;text-decoration:none;color:#fff;background-color:#35a56b;outline:0}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active{background-image:none;background-color:#2f915f}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button].disabled.active,.resumator-basic-widget input[type=button].disabled:active,.resumator-basic-widget input[type=button].disabled:focus,.resumator-basic-widget input[type=button].disabled:hover,.resumator-basic-widget input[type=button][disabled],.resumator-basic-widget input[type=button][disabled].active,.resumator-basic-widget input[type=button][disabled]:active,.resumator-basic-widget input[type=button][disabled]:focus,.resumator-basic-widget input[type=button][disabled]:hover,fieldset[disabled] .resumator-basic-widget input[type=button],fieldset[disabled] .resumator-basic-widget input[type=button].active,fieldset[disabled] .resumator-basic-widget input[type=button]:active,fieldset[disabled] .resumator-basic-widget input[type=button]:focus,fieldset[disabled] .resumator-basic-widget input[type=button]:hover{color:#e6e6e6;background-color:#3BB878}.resumator-basic-widget input[type=button] .caret,.resumator-basic-widget input[type=button] caret-right{border-top-color:#fff}.resumator-basic-widget input[type=button].btn-border{border-style:solid;border-color:#2f915f;border-width:0 0 2px}.sidebar-modal-footer-close{text-align:center}.sidebar-modal-footer-close a{display:block}#sidebar-modal .modal-header *{line-height:20px}.t{display:none}.toc-bar{text-align:center}@media screen and (min-width:992px){.toc-bar{display:none}}#___gcse_0{margin-top:60px}.h3{padding-top:40px}.row-content:first-of-type .h3:nth-child(1){padding-top:0}#search-results{margin-top:40px}.btn{font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all}.btn.active,.btn:active,.btn:focus,.btn:hover{-webkit-box-shadow:none;box-shadow:none;outline:0;text-decoration:none}div#os-tabs .btn{border:1px solid #dadada;padding:10px;width:200px;background-color:#fff;color:#000}.btn-accent.btn-border,.btn-action-alt.btn-border,.btn-action.btn-border,.btn-blue.btn-border,.btn-brown.btn-border,.btn-funky.btn-border,.btn-green.btn-border,.btn-light-gray.btn-border,.btn-orange.btn-border,.btn-sand.btn-border,.btn-standard.btn-border,.btn-subdued.btn-border,.btn-white.btn-border{border-style:solid;border-width:0 0 2px}div#os-tabs .btn.current{outline:0;border-color:#9ecaed;-webkit-box-shadow:0 0 10px #9ecaed;box-shadow:0 0 10px #9ecaed;max-height:inherit}.linuxinstall,.macinstall,.windowsinstall{font-size:1.08rem}.btn-full{width:100%}.btn-half-circle{border-bottom-left-radius:30px;border-bottom-right-radius:30px;min-width:50px;max-width:50px}.btn-white{background-color:#3BB878}.btn-white.active,.btn-white:active,.btn-white:focus,.btn-white:hover{color:#fff;background-color:#35a56b;outline:0}.btn-white.active,.btn-white:active{background-color:#2f915f}.btn-white.disabled,.btn-white.disabled.active,.btn-white.disabled:active,.btn-white.disabled:focus,.btn-white.disabled:hover,.btn-white[disabled],.btn-white[disabled].active,.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,fieldset[disabled] .btn-white,fieldset[disabled] .btn-white.active,fieldset[disabled] .btn-white:active,fieldset[disabled] .btn-white:focus,fieldset[disabled] .btn-white:hover{color:#e6e6e6;background-color:#3BB878}.btn-white .caret,.btn-white caret-right{border-top-color:#fff}.btn-white.btn-border{border-color:#2f915f}.btn-green{background-color:#3BB878}.btn-green.active,.btn-green:active,.btn-green:focus,.btn-green:hover{color:#fff;background-color:#35a56b;outline:0}.btn-green.active,.btn-green:active{background-color:#2f915f}.btn-green.disabled,.btn-green.disabled.active,.btn-green.disabled:active,.btn-green.disabled:focus,.btn-green.disabled:hover,.btn-green[disabled],.btn-green[disabled].active,.btn-green[disabled]:active,.btn-green[disabled]:focus,.btn-green[disabled]:hover,fieldset[disabled] .btn-green,fieldset[disabled] .btn-green.active,fieldset[disabled] .btn-green:active,fieldset[disabled] .btn-green:focus,fieldset[disabled] .btn-green:hover{color:#e6e6e6;background-color:#3BB878}.btn-green .caret,.btn-green caret-right{border-top-color:#fff}.btn-green.btn-border{border-color:#2f915f}.btn-funky{background-color:#c67fcf}.btn-funky.active,.btn-funky:active,.btn-funky:focus,.btn-funky:hover{color:#fff;background-color:#be6cc8;outline:0}.btn-funky.active,.btn-funky:active{background-color:#b55ac1}.btn-funky.disabled,.btn-funky.disabled.active,.btn-funky.disabled:active,.btn-funky.disabled:focus,.btn-funky.disabled:hover,.btn-funky[disabled],.btn-funky[disabled].active,.btn-funky[disabled]:active,.btn-funky[disabled]:focus,.btn-funky[disabled]:hover,fieldset[disabled] .btn-funky,fieldset[disabled] .btn-funky.active,fieldset[disabled] .btn-funky:active,fieldset[disabled] .btn-funky:focus,fieldset[disabled] .btn-funky:hover{color:#e6e6e6;background-color:#c67fcf}.btn-funky .caret,.btn-funky caret-right{border-top-color:#fff}.btn-funky.btn-border{border-color:#b55ac1}.btn-blue .caret,.btn-blue caret-right,.btn-light-gray .caret,.btn-light-gray caret-right{border-top-color:#fff}.btn-blue{color:#fff!important;text-decoration:none!important;background-color:#2d8ec6}.btn-blue.active,.btn-blue:active,.btn-blue:focus,.btn-blue:hover{color:#fff;background-color:#287fb1;outline:0}.btn-blue.active,.btn-blue:active{background-color:#24709c}.btn-blue.disabled,.btn-blue.disabled.active,.btn-blue.disabled:active,.btn-blue.disabled:focus,.btn-blue.disabled:hover,.btn-blue[disabled],.btn-blue[disabled].active,.btn-blue[disabled]:active,.btn-blue[disabled]:focus,.btn-blue[disabled]:hover,fieldset[disabled] .btn-blue,fieldset[disabled] .btn-blue.active,fieldset[disabled] .btn-blue:active,fieldset[disabled] .btn-blue:focus,fieldset[disabled] .btn-blue:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-blue.btn-border{border-color:#24709c}.btn-light-gray{color:#fff!important;text-decoration:none!important;background-color:#3BB878}.btn-light-gray.active,.btn-light-gray:active,.btn-light-gray:focus,.btn-light-gray:hover{color:#fff;background-color:#35a56b;outline:0}.btn-light-gray.active,.btn-light-gray:active{background-color:#2f915f}.btn-light-gray.disabled,.btn-light-gray.disabled.active,.btn-light-gray.disabled:active,.btn-light-gray.disabled:focus,.btn-light-gray.disabled:hover,.btn-light-gray[disabled],.btn-light-gray[disabled].active,.btn-light-gray[disabled]:active,.btn-light-gray[disabled]:focus,.btn-light-gray[disabled]:hover,fieldset[disabled] .btn-light-gray,fieldset[disabled] .btn-light-gray.active,fieldset[disabled] .btn-light-gray:active,fieldset[disabled] .btn-light-gray:focus,fieldset[disabled] .btn-light-gray:hover{color:#e6e6e6;background-color:#3BB878}.btn-brown,.btn-sand{color:#fff!important;text-decoration:none!important}.btn-light-gray.btn-border{border-color:#2f915f}.btn-sand{background-color:#3BB878}.btn-sand.active,.btn-sand:active,.btn-sand:focus,.btn-sand:hover{color:#fff;background-color:#35a56b;outline:0}.btn-sand.active,.btn-sand:active{background-color:#2f915f}.btn-sand.disabled,.btn-sand.disabled.active,.btn-sand.disabled:active,.btn-sand.disabled:focus,.btn-sand.disabled:hover,.btn-sand[disabled],.btn-sand[disabled].active,.btn-sand[disabled]:active,.btn-sand[disabled]:focus,.btn-sand[disabled]:hover,fieldset[disabled] .btn-sand,fieldset[disabled] .btn-sand.active,fieldset[disabled] .btn-sand:active,fieldset[disabled] .btn-sand:focus,fieldset[disabled] .btn-sand:hover{color:#e6e6e6;background-color:#3BB878}.btn-sand .caret,.btn-sand caret-right{border-top-color:#fff}.btn-sand.btn-border{border-color:#2f915f}.btn-brown{background-color:#C2BA7A}.btn-brown.active,.btn-brown:active,.btn-brown:focus,.btn-brown:hover{color:#fff;background-color:#bab169;outline:0}.btn-brown.active,.btn-brown:active{background-color:#b2a857}.btn-brown.disabled,.btn-brown.disabled.active,.btn-brown.disabled:active,.btn-brown.disabled:focus,.btn-brown.disabled:hover,.btn-brown[disabled],.btn-brown[disabled].active,.btn-brown[disabled]:active,.btn-brown[disabled]:focus,.btn-brown[disabled]:hover,fieldset[disabled] .btn-brown,fieldset[disabled] .btn-brown.active,fieldset[disabled] .btn-brown:active,fieldset[disabled] .btn-brown:focus,fieldset[disabled] .btn-brown:hover{color:#e6e6e6;background-color:#C2BA7A}.btn-brown .caret,.btn-brown caret-right{border-top-color:#fff}.btn-brown.btn-border{border-color:#b2a857}.btn-action .caret,.btn-action caret-right,.btn-orange .caret,.btn-orange caret-right{border-top-color:#fff}.btn-orange{color:#fff!important;text-decoration:none!important;background-color:#FFAC5F}.btn-orange.active,.btn-orange:active,.btn-orange:focus,.btn-orange:hover{color:#fff;background-color:#ff9f45;outline:0}.btn-orange.active,.btn-orange:active{background-color:#ff922c}.btn-orange.disabled,.btn-orange.disabled.active,.btn-orange.disabled:active,.btn-orange.disabled:focus,.btn-orange.disabled:hover,.btn-orange[disabled],.btn-orange[disabled].active,.btn-orange[disabled]:active,.btn-orange[disabled]:focus,.btn-orange[disabled]:hover,fieldset[disabled] .btn-orange,fieldset[disabled] .btn-orange.active,fieldset[disabled] .btn-orange:active,fieldset[disabled] .btn-orange:focus,fieldset[disabled] .btn-orange:hover{color:#e6e6e6;background-color:#FFAC5F}.btn-orange.btn-border{border-color:#ff922c}.btn-action{color:#fff!important;text-decoration:none!important;background-color:#3BB878}.btn-action.active,.btn-action:active,.btn-action:focus,.btn-action:hover{color:#fff;background-color:#35a56b;outline:0}.btn-action.active,.btn-action:active{background-color:#2f915f}.btn-action.disabled,.btn-action.disabled.active,.btn-action.disabled:active,.btn-action.disabled:focus,.btn-action.disabled:hover,.btn-action[disabled],.btn-action[disabled].active,.btn-action[disabled]:active,.btn-action[disabled]:focus,.btn-action[disabled]:hover,fieldset[disabled] .btn-action,fieldset[disabled] .btn-action.active,fieldset[disabled] .btn-action:active,fieldset[disabled] .btn-action:focus,fieldset[disabled] .btn-action:hover{color:#e6e6e6;background-color:#3BB878}.btn-action.btn-border{border-color:#2f915f}.btn-action-alt .caret,.btn-action-alt caret-right,.btn-subdued .caret,.btn-subdued caret-right{border-top-color:#000}.btn-action-alt{color:#000!important;text-decoration:none!important;background-color:#fff}.btn-action-alt.active,.btn-action-alt:active,.btn-action-alt:focus,.btn-action-alt:hover{color:#000;background-color:#f2f2f2;outline:0}.btn-action-alt.active,.btn-action-alt:active{background-color:#e6e6e6}.btn-action-alt.disabled,.btn-action-alt.disabled.active,.btn-action-alt.disabled:active,.btn-action-alt.disabled:focus,.btn-action-alt.disabled:hover,.btn-action-alt[disabled],.btn-action-alt[disabled].active,.btn-action-alt[disabled]:active,.btn-action-alt[disabled]:focus,.btn-action-alt[disabled]:hover,fieldset[disabled] .btn-action-alt,fieldset[disabled] .btn-action-alt.active,fieldset[disabled] .btn-action-alt:active,fieldset[disabled] .btn-action-alt:focus,fieldset[disabled] .btn-action-alt:hover{color:#000;background-color:#fff}.btn-action-alt.btn-border{border-color:#e6e6e6}.btn-accent .caret,.btn-accent caret-right,.btn-standard .caret,.btn-standard caret-right{border-top-color:#fff}.btn-accent{color:#fff!important;text-decoration:none!important;background-color:#00aeef}.btn-accent.active,.btn-accent:active,.btn-accent:focus,.btn-accent:hover{color:#fff;background-color:#009bd6;outline:0}.btn-accent.active,.btn-accent:active{background-color:#0089bc}.btn-accent.disabled,.btn-accent.disabled.active,.btn-accent.disabled:active,.btn-accent.disabled:focus,.btn-accent.disabled:hover,.btn-accent[disabled],.btn-accent[disabled].active,.btn-accent[disabled]:active,.btn-accent[disabled]:focus,.btn-accent[disabled]:hover,fieldset[disabled] .btn-accent,fieldset[disabled] .btn-accent.active,fieldset[disabled] .btn-accent:active,fieldset[disabled] .btn-accent:focus,fieldset[disabled] .btn-accent:hover{color:#e6e6e6;background-color:#00aeef}.btn-accent.btn-border{border-color:#0089bc}.btn-standard{color:#fff!important;text-decoration:none!important;background-color:#2d8ec6}.btn-standard.active,.btn-standard:active,.btn-standard:focus,.btn-standard:hover{color:#fff;background-color:#287fb1;outline:0}.btn-standard.active,.btn-standard:active{background-color:#24709c}.btn-standard.disabled,.btn-standard.disabled.active,.btn-standard.disabled:active,.btn-standard.disabled:focus,.btn-standard.disabled:hover,.btn-standard[disabled],.btn-standard[disabled].active,.btn-standard[disabled]:active,.btn-standard[disabled]:focus,.btn-standard[disabled]:hover,fieldset[disabled] .btn-standard,fieldset[disabled] .btn-standard.active,fieldset[disabled] .btn-standard:active,fieldset[disabled] .btn-standard:focus,fieldset[disabled] .btn-standard:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-standard.btn-border{border-color:#24709c}.btn-subdued{color:#000!important;text-decoration:none!important;background-color:#eee}.btn-subdued.active,.btn-subdued:active,.btn-subdued:focus,.btn-subdued:hover{color:#000;background-color:#e2e2e2;outline:0}.btn-subdued.active,.btn-subdued:active{background-color:#d5d5d5}.btn-subdued.disabled,.btn-subdued.disabled.active,.btn-subdued.disabled:active,.btn-subdued.disabled:focus,.btn-subdued.disabled:hover,.btn-subdued[disabled],.btn-subdued[disabled].active,.btn-subdued[disabled]:active,.btn-subdued[disabled]:focus,.btn-subdued[disabled]:hover,fieldset[disabled] .btn-subdued,fieldset[disabled] .btn-subdued.active,fieldset[disabled] .btn-subdued:active,fieldset[disabled] .btn-subdued:focus,fieldset[disabled] .btn-subdued:hover{color:#000;background-color:#eee}.btn-subdued.btn-border{border-color:#d5d5d5}#ds-search-modal{margin-top:65px;z-index:9999}#ds-search-modal a{display:block;padding:10px 15px}#ds-search-modal a:active,#ds-search-modal a:link,#ds-search-modal a:visited{color:#0089bc}#ds-search-modal a:hover{color:#005170}#ds-search-input{padding:3px;border:1px solid #E4E4E4;border-radius:6px;background-color:#fff}#ds-search-input input{border:0;-webkit-box-shadow:none;box-shadow:none}#ds-search-input button{margin:2px 0 0;background:0 0;-webkit-box-shadow:none;box-shadow:none;border:0;color:#666;padding:0 8px 0 10px;border-left:solid 1px #ccc}#ds-search-input button:hover{border:0;-webkit-box-shadow:none;box-shadow:none;border-left:solid 1px #ccc}#ds-search-input .glyphicon-search{font-size:23px}#ds-search-input ul li:hover{background-color:#e6e6e6}.search-deprecated{font-size:9px;background-color:#FFAC5F;height:43px;color:#fff;border-radius:3px;padding:4px;margin-left:5px;vertical-align:middle}.search-form{width:100%}.hits,.search-icon{position:absolute;z-index:10}.search-box{padding-left:35px}.search-icon{top:.85em;left:.85em}.hits{top:50px;left:0}.hit-body{width:100%;background:#fff;color:#747474;border:.5px solid #e7e6e6;padding:1em}.hit-body:hover{background:#edf7fe;color:#fff}.hit-body a,.hit-body a:hover{color:#747474;text-decoration:none}.hit-body a{display:inline-block}.algolia-autocomplete,.algolia-autocomplete .aa-hint,.algolia-autocomplete .aa-input{width:100%}.algolia-autocomplete .aa-hint{color:#999}.algolia-autocomplete .aa-dropdown-menu{width:100%;background-color:#fff;border:1px solid #cecccc;border-top:none}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion{cursor:pointer;padding:10px 12px}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor{background-color:#edf7fe;color:#343434}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em{font-weight:700;font-style:normal}.library-article-blurb{padding-top:15px;padding-bottom:15px}.library-section-app{padding-top:30px}.library-breadcrumb-search{padding:20px 15px 55px}#library-main-search{margin-top:20px;height:45px}#library-main-search button,#library-main-search input{height:42px}.library-breadcrumb{background-color:#fff;padding:30px 0 0}div.library-tile,li.library-article-item:nth-child(odd){background-color:#ebeff0}@media screen and (min-width:768px){.library-breadcrumb{padding:30px 0 60px}}#library-page-num,#library-search-status+.lead,.library-search-result-title+.lead{padding-top:10px}.library-breadcrumb>li{display:block}@media screen and (min-width:768px){.library-breadcrumb>li{display:inline-block}div.library-tile{min-height:220px}}.library-breadcrumb>li+li:before{content:"\00BB\00a0";color:#9a9a9a}.library-breadcrumb>.active{color:#9a9a9a}.library-spinner{width:60px;height:60px;margin:0 auto;border-left:3px solid #eee;border-right:3px solid #eee;border-bottom:3px solid #eee;border-top:3px solid #555;border-radius:100%;-webkit-animation:rotation .4s infinite ease-in-out;animation:rotation .4s infinite ease-in-out}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.library-search-result{margin-bottom:60px}.library-search-result:last-child{margin-bottom:0}#library-search-status,.library-search-result-title{margin-top:11px;margin-bottom:11px;font-weight:400;font-family:Lato,sans-serif}.library-search-result small{display:block}#doc-sidebar-container #doc-sidebar-toc .toc-long ul>li>ul>li>ul,.library-pager li{display:none}.library-search-result-title{line-height:1.1;color:inherit;font-size:20px;font-size:25px}.library-search-result-title .small,.library-search-result-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.library-search-result-desc{color:#9a9a9a}#library-search-status{line-height:1.1;color:inherit;font-size:16px;font-size:21px;text-align:center}#library-search-status .small,#library-search-status small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile p,div.library-tile.active p,div.library-tile:active p,div.library-tile:focus p,div.library-tile:hover p{color:#747474}#library-page-num{display:block}.library-categories-row{margin-left:-15px;margin-right:-15px;margin-top:60px}.library-category-articles{padding-left:20px}.library-category-articles+.library-category-title{margin-top:60px}div.library-tile{padding:30px;margin-bottom:30px}div.library-tile.active,div.library-tile:active,div.library-tile:focus,div.library-tile:hover{background-color:#edf7fe}div.library-tile h2.tile-title{color:#000}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}@media screen and (min-width:992px){.library-category-title{width:80%}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:20px;font-size:25px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}}@media screen and (min-width:1200px){.first-section .container{max-width:1170px}}#article-body{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;color:#333}@media screen and (min-width:768px){#article-body{padding-bottom:60px}}#article-body li{font-size:17px;font-size:1.08rem}#article-body .h1,#article-body .h2,#article-body .h3,#article-body .h4,#article-body .h5,#article-body .h6,#article-body h1,#article-body h2,#article-body h3,#article-body h4,#article-body h5,#article-body h6{word-wrap:break-word;margin-top:3.125rem}#article-body .h1+.h1,#article-body .h1+.h2,#article-body .h1+.h3,#article-body .h1+.h4,#article-body .h1+.h5,#article-body .h1+.h6,#article-body .h1+h1,#article-body .h1+h2,#article-body .h1+h3,#article-body .h1+h4,#article-body .h1+h5,#article-body .h1+h6,#article-body .h2+.h1,#article-body .h2+.h2,#article-body .h2+.h3,#article-body .h2+.h4,#article-body .h2+.h5,#article-body .h2+.h6,#article-body .h2+h1,#article-body .h2+h2,#article-body .h2+h3,#article-body .h2+h4,#article-body .h2+h5,#article-body .h2+h6,#article-body .h3+.h1,#article-body .h3+.h2,#article-body .h3+.h3,#article-body .h3+.h4,#article-body .h3+.h5,#article-body .h3+.h6,#article-body .h3+h1,#article-body .h3+h2,#article-body .h3+h3,#article-body .h3+h4,#article-body .h3+h5,#article-body .h3+h6,#article-body .h4+.h1,#article-body .h4+.h2,#article-body .h4+.h3,#article-body .h4+.h4,#article-body .h4+.h5,#article-body .h4+.h6,#article-body .h4+h1,#article-body .h4+h2,#article-body .h4+h3,#article-body .h4+h4,#article-body .h4+h5,#article-body .h4+h6,#article-body .h5+.h1,#article-body .h5+.h2,#article-body .h5+.h3,#article-body .h5+.h4,#article-body .h5+.h5,#article-body .h5+.h6,#article-body .h5+h1,#article-body .h5+h2,#article-body .h5+h3,#article-body .h5+h4,#article-body .h5+h5,#article-body .h5+h6,#article-body .h6+.h1,#article-body .h6+.h2,#article-body .h6+.h3,#article-body .h6+.h4,#article-body .h6+.h5,#article-body .h6+.h6,#article-body .h6+h1,#article-body .h6+h2,#article-body .h6+h3,#article-body .h6+h4,#article-body .h6+h5,#article-body .h6+h6,#article-body h1+.h1,#article-body h1+.h2,#article-body h1+.h3,#article-body h1+.h4,#article-body h1+.h5,#article-body h1+.h6,#article-body h1+h1,#article-body h1+h2,#article-body h1+h3,#article-body h1+h4,#article-body h1+h5,#article-body h1+h6,#article-body h2+.h1,#article-body h2+.h2,#article-body h2+.h3,#article-body h2+.h4,#article-body h2+.h5,#article-body h2+.h6,#article-body h2+h1,#article-body h2+h2,#article-body h2+h3,#article-body h2+h4,#article-body h2+h5,#article-body h2+h6,#article-body h3+.h1,#article-body h3+.h2,#article-body h3+.h3,#article-body h3+.h4,#article-body h3+.h5,#article-body h3+.h6,#article-body h3+h1,#article-body h3+h2,#article-body h3+h3,#article-body h3+h4,#article-body h3+h5,#article-body h3+h6,#article-body h4+.h1,#article-body h4+.h2,#article-body h4+.h3,#article-body h4+.h4,#article-body h4+.h5,#article-body h4+.h6,#article-body h4+h1,#article-body h4+h2,#article-body h4+h3,#article-body h4+h4,#article-body h4+h5,#article-body h4+h6,#article-body h5+.h1,#article-body h5+.h2,#article-body h5+.h3,#article-body h5+.h4,#article-body h5+.h5,#article-body h5+.h6,#article-body h5+h1,#article-body h5+h2,#article-body h5+h3,#article-body h5+h4,#article-body h5+h5,#article-body h5+h6,#article-body h6+.h1,#article-body h6+.h2,#article-body h6+.h3,#article-body h6+.h4,#article-body h6+.h5,#article-body h6+.h6,#article-body h6+h1,#article-body h6+h2,#article-body h6+h3,#article-body h6+h4,#article-body h6+h5,#article-body h6+h6{margin-top:0}#article-body .h1:hover a,#article-body .h2:hover a,#article-body .h3:hover a,#article-body .h4:hover a,#article-body .h5:hover a,#article-body .h6:hover a,#article-body h1:hover a,#article-body h2:hover a,#article-body h3:hover a,#article-body h4:hover a,#article-body h5:hover a,#article-body h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}#article-body .h1,#article-body h1{font-size:38px;font-size:2.375rem}#article-body .h2,#article-body h2{font-size:33px;font-size:2.0625rem}#article-body .h3,#article-body h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}#article-body .h4,#article-body h4{font-size:23px;font-size:1.4375rem}#article-body .h5,#article-body h5{font-size:20px;font-size:1.25rem}#article-body .h6,#article-body h6{font-size:18px;font-size:1.125rem}#article-body li ol,#article-body li ul,#article-body li+li{margin-top:10px}#article-body li ol li,#article-body li ul li{margin-top:5px}#article-body li blockquote,#article-body li img{margin:20px 0}#article-body li ol+p,#article-body li ul+p{margin-top:20px}#article-body code{font-size:14px}#article-body img{display:block;max-width:100%;height:auto;margin:0 auto}#article-body table:not([class]){width:100%;max-width:100%;margin-bottom:22px}#article-body table:not([class])>tbody>tr>td,#article-body table:not([class])>tbody>tr>th,#article-body table:not([class])>tfoot>tr>td,#article-body table:not([class])>tfoot>tr>th,#article-body table:not([class])>thead>tr>td,#article-body table:not([class])>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}#article-body table:not([class])>caption+thead>tr:first-child>td,#article-body table:not([class])>caption+thead>tr:first-child>th,#article-body table:not([class])>colgroup+thead>tr:first-child>td,#article-body table:not([class])>colgroup+thead>tr:first-child>th,#article-body table:not([class])>thead:first-child>tr:first-child>td,#article-body table:not([class])>thead:first-child>tr:first-child>th{border-top:0}#article-body table:not([class])>tbody+tbody{border-top:2px solid #ddd}#article-body table:not([class]) .table{background-color:#fff}#article-body table:not([class])>thead>tr>th{font-family:Lato,sans-serif;padding:17px 10px;vertical-align:middle;text-align:left;color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}#article-body table:not([class])>tbody>tr:first-child{border-top:none}#article-body table:not([class])>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}#article-body table:not([class])>tbody>tr>td{padding:17px 10px;vertical-align:middle;text-align:left;width:0;color:#747474}.email-signup,.library-rss,.library-sidebar-extra,.library-signup{text-align:center}#article-body table:not([class])>tbody>tr>td:last-child{border-right:none}#article-body table:not([class])>tbody>tr>td.large{font-size:20px;color:#000}#article-body table:not([class])>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}#article-body table:not([class])>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.doc-time{color:#9a9a9a}.doc-time a:active,.doc-time a:link,.doc-time a:visited{color:#0089bc}.doc-time a:hover{color:#005170}.doc-title{margin-top:0!important;font-size:40px}.doc-license{font-size:87%;font-size:14px;padding-top:45px;color:#9a9a9a}.doc-sidebar-inner{background-color:#edf7fe;color:#747474;padding:15px;font-size:14px}.doc-sidebar-inner .span>a,.doc-sidebar-inner address>a,.doc-sidebar-inner em>a,.doc-sidebar-inner h1>a,.doc-sidebar-inner h2>a,.doc-sidebar-inner h3>a,.doc-sidebar-inner h4>a,.doc-sidebar-inner h5>a,.doc-sidebar-inner h6>a,.doc-sidebar-inner li>a,.doc-sidebar-inner p>a,.doc-sidebar-inner td>a{-webkit-transition:.2s color;transition:.2s color}.doc-sidebar-inner .nav li>a,.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:hover{text-decoration:none}.doc-sidebar-inner.separated{border-bottom-color:#a5d7fa}.doc-sidebar-inner .h1,.doc-sidebar-inner .h2,.doc-sidebar-inner .h3,.doc-sidebar-inner .h4,.doc-sidebar-inner .h5,.doc-sidebar-inner .h6,.doc-sidebar-inner h1,.doc-sidebar-inner h2,.doc-sidebar-inner h3,.doc-sidebar-inner h4,.doc-sidebar-inner h5,.doc-sidebar-inner h6{color:#000}.doc-sidebar-inner.jumbotron .h1,.doc-sidebar-inner.jumbotron h1{color:#343434}.doc-sidebar-inner.jumbotron .h2,.doc-sidebar-inner.jumbotron .h3,.doc-sidebar-inner.jumbotron .h4,.doc-sidebar-inner.jumbotron .h5,.doc-sidebar-inner.jumbotron .h6,.doc-sidebar-inner.jumbotron h2,.doc-sidebar-inner.jumbotron h3,.doc-sidebar-inner.jumbotron h4,.doc-sidebar-inner.jumbotron h5,.doc-sidebar-inner.jumbotron h6{color:#747474}.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:link,.doc-sidebar-inner .span>a:visited,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:link,.doc-sidebar-inner address>a:visited,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:link,.doc-sidebar-inner em>a:visited,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:link,.doc-sidebar-inner h1>a:visited,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:link,.doc-sidebar-inner h2>a:visited,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:link,.doc-sidebar-inner h3>a:visited,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:link,.doc-sidebar-inner h4>a:visited,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:link,.doc-sidebar-inner h5>a:visited,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:link,.doc-sidebar-inner h6>a:visited,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:link,.doc-sidebar-inner li>a:visited,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:link,.doc-sidebar-inner p>a:visited,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:link,.doc-sidebar-inner td>a:visited{color:#0089bc}.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:hover{color:#005170}.doc-sidebar-inner .span>a .glyphicon.tile,.doc-sidebar-inner address>a .glyphicon.tile,.doc-sidebar-inner em>a .glyphicon.tile,.doc-sidebar-inner h1>a .glyphicon.tile,.doc-sidebar-inner h2>a .glyphicon.tile,.doc-sidebar-inner h3>a .glyphicon.tile,.doc-sidebar-inner h4>a .glyphicon.tile,.doc-sidebar-inner h5>a .glyphicon.tile,.doc-sidebar-inner h6>a .glyphicon.tile,.doc-sidebar-inner li>a .glyphicon.tile,.doc-sidebar-inner p>a .glyphicon.tile,.doc-sidebar-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.doc-sidebar-inner .span>a .glyphicon.tile:active,.doc-sidebar-inner .span>a .glyphicon.tile:hover,.doc-sidebar-inner address>a .glyphicon.tile:active,.doc-sidebar-inner address>a .glyphicon.tile:hover,.doc-sidebar-inner em>a .glyphicon.tile:active,.doc-sidebar-inner em>a .glyphicon.tile:hover,.doc-sidebar-inner h1>a .glyphicon.tile:active,.doc-sidebar-inner h1>a .glyphicon.tile:hover,.doc-sidebar-inner h2>a .glyphicon.tile:active,.doc-sidebar-inner h2>a .glyphicon.tile:hover,.doc-sidebar-inner h3>a .glyphicon.tile:active,.doc-sidebar-inner h3>a .glyphicon.tile:hover,.doc-sidebar-inner h4>a .glyphicon.tile:active,.doc-sidebar-inner h4>a .glyphicon.tile:hover,.doc-sidebar-inner h5>a .glyphicon.tile:active,.doc-sidebar-inner h5>a .glyphicon.tile:hover,.doc-sidebar-inner h6>a .glyphicon.tile:active,.doc-sidebar-inner h6>a .glyphicon.tile:hover,.doc-sidebar-inner li>a .glyphicon.tile:active,.doc-sidebar-inner li>a .glyphicon.tile:hover,.doc-sidebar-inner p>a .glyphicon.tile:active,.doc-sidebar-inner p>a .glyphicon.tile:hover,.doc-sidebar-inner td>a .glyphicon.tile:active,.doc-sidebar-inner td>a .glyphicon.tile:hover{color:#4e4e4e}.doc-sidebar-inner ul.nav-sidebar>li.active>a{color:#000}.doc-sidebar-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.doc-sidebar-inner ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.doc-sidebar-inner ul.nav-sidebar>li>a:hover{color:#000}.doc-sidebar-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.doc-sidebar-inner ul.dropdown-menu>li>a:hover{color:#fff}.doc-sidebar-inner.subnav{opacity:.96}.doc-sidebar-inner.subnav .navbar-brand{color:#000}.doc-sidebar-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.doc-sidebar-inner.subnav li>a{color:#aaa}.doc-sidebar-inner.subnav li>a.active{color:#000}.doc-sidebar-inner.subnav li>a:hover{color:#5b5b5b}.doc-sidebar-inner .sidebar strong,.doc-sidebar-inner.subnav .navbar-toggle{color:#000}.doc-sidebar-inner.subnav .navbar-toggle:hover{background-color:transparent}.doc-sidebar-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.doc-sidebar-inner .sidebar a strong,.doc-sidebar-inner .sidebar a strong:active,.doc-sidebar-inner .sidebar a strong:link,.doc-sidebar-inner .sidebar a strong:visited{color:#0089bc}.doc-sidebar-inner .sidebar a strong:hover{color:#005170}.doc-sidebar-inner cite.bubble strong{color:#414141}.doc-sidebar-inner cite.bubble a:active,.doc-sidebar-inner cite.bubble a:link,.doc-sidebar-inner cite.bubble a:visited{color:#0089bc}.doc-sidebar-inner cite.bubble a:hover{color:#005170}.doc-sidebar-inner blockquote,.doc-sidebar-inner blockquote p,.doc-sidebar-inner blockquote ul>li{color:#747474}.doc-sidebar-inner+.doc-sidebar-inner{margin-top:20px}#doc-sidebar-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;font-size:14px;font-size:19px;font-weight:400;margin-bottom:30px}#doc-sidebar-title .small,#doc-sidebar-title small{font-weight:400;line-height:1;color:#777;font-size:75%}#doc-sidebar-title+.lead{padding-top:10px}.sidebar-library nav>ul{border:0;margin:0;padding:0}.sidebar-library nav>ul>li>ul{border:0;padding-left:0}.sidebar-library nav>ul>li>ul>li{padding-left:0;display:block;line-height:20px;margin-top:20px;margin-bottom:20px}.sidebar-library nav>ul>li>ul>li>a{font-weight:800}.alert-banner a,.sidebar-library nav>ul>li>ul>li ul>li>a{font-weight:400}.sidebar-library nav>ul>li>ul>li ul>li{margin-top:2px;margin-bottom:2px;padding-left:10px}.sidebar-library nav>ul>li ul>li>ul>li>a{font-size:14px}.library-sidebar-extra h6{margin:5px auto}.library-sidebar-extra p{font-size:12px;margin-bottom:0}.library-sidebar-extra .fa{font-size:40px;color:#000}.library-github{vertical-align:middle;margin-bottom:15px;margin-top:15px}.library-github strong{font-size:1.2em}.library-github i{font-size:1.35em}.library-github p{display:inline-block;font-size:.8em;margin-left:7px}.contributed-by{float:right;margin-top:3px}.updated{float:left}.doc-time:after{content:"";display:table;clear:both}.library-signup{margin-top:40px}.library-signup h6{margin:5px auto}.library-signup p{font-size:12px;margin-bottom:0}.library-signup .fa{font-size:40px;color:#000}.library-rss{margin-top:4px}.library-rss a{font-size:14px}.library-rss a:hover{color:#737373}#img-modal-image{max-width:1200px;max-height:700px;margin:auto}.modal-full{width:90%;padding-top:90px}.modal-body{overflow:scroll}div#search{height:57px}.gsc-input-box,td.gsc-input{height:45px!important}input.gsc-input{height:36px!important}.gsc-search-button{background-color:#2d8ec6;padding-top:2px}.gsc-modal-background-image{background-color:#333!important}table.gsc-table-result>tbody>tr>td{padding-left:8px;padding-right:8px}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}div.gsc-input-box,div.gsc-input-box-focus{border-color:#4fa5d7}div.gsc-input-box-focus,div.gsc-input-box-hover{-webkit-box-shadow:none;box-shadow:none}div.gsc-control-cse{font-family:Helvetica,Arial,sans-serif}input.gsc-search-button,input.gsc-search-button:focus,input.gsc-search-button:hover{background-color:#2d8ec6!important;background-image:url(https://www.google.com/uds/css/v2/search_box_icon.png)!important;background-position:50% 50%;background-repeat:no-repeat;height:36px!important;border-color:#2d8ec6!important;-webkit-filter:none;filter:none}span.gscb_a{margin-top:13px!important}li.library-article-item{border:none;padding:16px 24px}#signup-form{margin-top:16px}#frontpage_upcoming_webinar{background:#2d8ec6}#frontpage_upcoming_webinar_text a{color:#fff;height:50px;line-height:50px;vertical-align:middle}.email-signup{margin-top:30px}.create-account{margin-top:10px}.signup-top{background:#eee;padding:13px;display:inline-block;margin-bottom:8px;width:100%}.hs-richtext,.hubspot-form .input{padding-bottom:20px}@media only screen and (min-width:1200px){.signup-top>div.row>div:first-child{padding-top:4px}}@media only screen and (max-width:768px){.signup-top>div.row>div:last-child{text-align:left;margin-top:8px}}@media only screen and (min-width:768px){.signup-top>div.row>div:last-child{text-align:right;margin-top:0}}.alert-banner,.container .contribute,.container .contribute .money{text-align:center}.signup-top span{font-family:Lato,sans-serif;font-size:18px;vertical-align:middle}.signup-top form{display:inline}.clear{clear:both}.hs_recaptcha{float:right;margin:10px 0 10px 10px;padding-left:0}.hubspot-container{background-color:#ebeff0;width:80%}.hubspot-form input{display:block;height:40px;width:100%}.hubspot-form input[type=submit]{padding-bottom:0;display:block;float:left;height:40px;width:50%;margin:10px 10px 0 auto}.hubspot-form{width:100%;margin:0 auto;padding:40px 40px 25px}.hs-button{min-height:75px;font-size:1.5em;border:none;background-color:#3BB878;color:#fff}.hs-button:hover{background-color:#2f925f}.container .contribute img{padding-bottom:10px}h1.contribute{padding-bottom:40px}.contrib-header,.samples{padding-bottom:20px}.contribute{margin-left:0;padding-left:0}.compensation{text-align:left}.compensation-footer{text-align:left;padding-top:40px}.primary{margin-bottom:0;padding-bottom:0}.current{padding-bottom:20px;padding-top:20px}.sample-header{margin-left:0;margin-bottom:20px}.subtitle{padding-top:40px;margin:0}.row-content{margin-bottom:0}#doc-sidebar-container{position:webkit-sticky;position:-webkit-sticky;position:sticky;top:10px}#doc-sidebar-container #doc-sidebar{margin-top:10px;max-width:100%}#doc-sidebar-container #doc-sidebar-toc li.active>a{color:#005170}.social-share>a{padding:6px 10px}.social-share .btn-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.social-share .share-group{float:left;max-width:59px;margin-top:12.5px!important;min-width:200px}.social-share .share-group ul{float:right;list-style:none;margin:0;min-width:61px;padding:0}.social-share .share-group .share{min-width:17px}.social-share .share-group li{display:block;font-size:18px;list-style:none;margin-bottom:3px;margin-left:4px;margin-top:3px}.social-share .share-group .btn-common{width:51px;color:#FFF!important}.social-share .share-group .btn-twitter{background-color:#39C!important;width:51px;color:#FFF!important}.social-share .share-group .btn-facebook{background-color:#3D5B96!important;width:51px;color:#FFF!important}.social-share .share-group .btn-hacker-news{background-color:#f60!important;width:51px;color:#FFF!important}#disqus_thread{margin-top:40px}.copy-code{position:absolute;padding-top:.25rem;right:1.4rem;opacity:0}#article-body .disclosure-note div.btn-copy>.copy-code,blockquote div.btn-copy>.copy-code{padding-top:.01rem;right:2.2rem}#article-body .disclosure-note .glyphicon.glyphicon-copy{font-size:1.6rem;color:#a6a6a6}blockquote div.btn-copy .glyphicon.glyphicon-copy{color:#a6a6a6}.copy-code:hover{opacity:1}.glyphicon.glyphicon-copy{font-size:1.6rem}.btn-copy:hover .glyphicon{color:#B2D7FF}.form_elem_email{color:#000}.alert-banner{font-size:22px;background-color:#7c9fb3;margin-bottom:30px;padding:10px 0}.alert-banner a{font-family:Lato,sans-serif;color:rgba(255,255,255,.8);display:block}.alert-banner a:hover{text-decoration:none;color:#fff}.alert-banner i{padding:0 15px}.sub-menu-wrap{max-width:1170px;margin:0 auto;padding-left:15px;padding-right:15px}.sub-menu-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #e7e6e6;width:100%;-webkit-font-smoothing:initial}.with-subnavigation{margin-top:30px}.breadcrumb-row.with-subnavigation,.pad-xs.with-subnavigation{margin-top:0!important}#library-main-search{margin-bottom:0}.sub-menu-wrapper__title{padding:21px 0;margin:11px 0;-webkit-font-smoothing:antialiased;font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.sub-menu-wrapper__title a:link,.sub-menu-wrapper__title a:visited{color:#000;text-decoration:none}.sub-menu-wrapper__title a:hover{color:#000}.sub-menu{list-style-type:none;font-family:Lato,sans-serif;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;top:1px}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.sub-menu{top:-2px}}}.sub-menu li{display:inline-block}.sub-menu-wrapper .sub-menu li:first-child a{margin-left:0}.sub-menu li:last-child a{margin-right:0}.sub-menu a:link,.sub-menu a:visited{color:#aaa;padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px;margin:13px 12px 0}.sub-menu a.active,.sub-menu a:hover{color:#000}@media (max-width:768px){.sub-menu,.sub-menu li{display:block}.sub-menu{width:100%}.sub-menu-wrapper{padding-bottom:20px}.sub-menu-wrapper .sub-menu li a{margin:0}.some-space.first-section.with-subnavigation{padding-bottom:30px}}@media screen and (min-width:992px){.navbar .nav-home{top:1px}}@media screen and (min-width:768px){.navbar.navbar-default{height:auto}.navbar .navbar-nav>li>a{padding-bottom:20px}}.chroma{background-color:#eed}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;overflow:auto;display:block}.chroma .ln,.chroma .lnt{margin-right:.4em;padding:0 .4em}.chroma .hl{background-color:#ffc;display:block;width:100%}.chroma .lnt{display:block}.chroma .k,.chroma .kc,.chroma .kd,.chroma .kn,.chroma .kp,.chroma .kr{color:#8b008b;font-weight:700}.chroma .kt{color:#00688b;font-weight:700}.chroma .na,.chroma .nb{color:#658b00}.chroma .nc{color:#008b45;font-weight:700}.chroma .no{color:#00688b}.chroma .nd{color:#707a7c}.chroma .ne,.chroma .nf,.chroma .nn{color:#008b45}.chroma .ne{font-weight:700}.chroma .nt{color:#8b008b;font-weight:700}.chroma .nv{color:#00688b}.chroma .dl,.chroma .s,.chroma .s2,.chroma .sa,.chroma .sb,.chroma .sc,.chroma .sd,.chroma .se{color:#cd5555}.chroma .sh{color:#1c7e71}.chroma .si{color:#cd5555}.chroma .sx{color:#cb6c20}.chroma .sr{color:#1c7e71}.chroma .s1,.chroma .ss{color:#cd5555}.chroma .il,.chroma .m,.chroma .mb,.chroma .mf,.chroma .mh,.chroma .mi,.chroma .mo{color:#b452cd}.chroma .ow{color:#8b008b}.chroma .c,.chroma .c1,.chroma .ch,.chroma .cm{color:#228b22}.chroma .cs{color:#8b008b;font-weight:700}.chroma .cp,.chroma .cpf{color:#1e889b}.chroma .gd,.chroma .gr{color:#a00}.chroma .gh{color:navy;font-weight:700}.chroma .gi{color:#0a0}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gs{font-weight:700}.chroma .gu{color:purple;font-weight:700}.chroma .gt{color:#a00}.chroma .w{color:#bbb} \ No newline at end of file + */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.fa-lg{font-size:1.33333333em;line-height:.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.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.cubes.subnav .navbar-collapse,.light-gray.subnav .navbar-collapse,.sand.subnav .navbar-collapse,.striped.subnav .navbar-collapse,.white.subnav .navbar-collapse{border-top-color:#e7e6e6}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.footer-col,.search-form{position:relative}.white{color:#747474}.white .lead a{font-weight:300}.white .span>a,.white address>a,.white em>a,.white h1>a,.white h2>a,.white h3>a,.white h4>a,.white h5>a,.white h6>a,.white li>a,.white p>a,.white td>a{-webkit-transition:.2s color;transition:.2s color}.white .nav li>a,.white .span>a:active,.white .span>a:hover,.white address>a:active,.white address>a:hover,.white em>a:active,.white em>a:hover,.white h1>a:active,.white h1>a:hover,.white h2>a:active,.white h2>a:hover,.white h3>a:active,.white h3>a:hover,.white h4>a:active,.white h4>a:hover,.white h5>a:active,.white h5>a:hover,.white h6>a:active,.white h6>a:hover,.white li>a:active,.white li>a:hover,.white p>a:active,.white p>a:hover,.white td>a:active,.white td>a:hover{text-decoration:none}.white.separated{border-bottom-color:#d9d9d9}.white .h1,.white .h2,.white .h3,.white .h4,.white .h5,.white .h6,.white h1,.white h2,.white h3,.white h4,.white h5,.white h6{color:#000}.white.jumbotron .h1,.white.jumbotron h1{color:#343434}.white.jumbotron .h2,.white.jumbotron .h3,.white.jumbotron .h4,.white.jumbotron .h5,.white.jumbotron .h6,.white.jumbotron h2,.white.jumbotron h3,.white.jumbotron h4,.white.jumbotron h5,.white.jumbotron h6{color:#747474}.white .span>a:active,.white .span>a:link,.white .span>a:visited,.white address>a:active,.white address>a:link,.white address>a:visited,.white em>a:active,.white em>a:link,.white em>a:visited,.white h1>a:active,.white h1>a:link,.white h1>a:visited,.white h2>a:active,.white h2>a:link,.white h2>a:visited,.white h3>a:active,.white h3>a:link,.white h3>a:visited,.white h4>a:active,.white h4>a:link,.white h4>a:visited,.white h5>a:active,.white h5>a:link,.white h5>a:visited,.white h6>a:active,.white h6>a:link,.white h6>a:visited,.white li>a:active,.white li>a:link,.white li>a:visited,.white p>a:active,.white p>a:link,.white p>a:visited,.white td>a:active,.white td>a:link,.white td>a:visited{color:#0089bc}.white .span>a:hover,.white address>a:hover,.white em>a:hover,.white h1>a:hover,.white h2>a:hover,.white h3>a:hover,.white h4>a:hover,.white h5>a:hover,.white h6>a:hover,.white li>a:hover,.white p>a:hover,.white td>a:hover{color:#005170}.white .span>a .glyphicon.tile,.white address>a .glyphicon.tile,.white em>a .glyphicon.tile,.white h1>a .glyphicon.tile,.white h2>a .glyphicon.tile,.white h3>a .glyphicon.tile,.white h4>a .glyphicon.tile,.white h5>a .glyphicon.tile,.white h6>a .glyphicon.tile,.white li>a .glyphicon.tile,.white p>a .glyphicon.tile,.white td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.white .span>a .glyphicon.tile:active,.white .span>a .glyphicon.tile:hover,.white address>a .glyphicon.tile:active,.white address>a .glyphicon.tile:hover,.white em>a .glyphicon.tile:active,.white em>a .glyphicon.tile:hover,.white h1>a .glyphicon.tile:active,.white h1>a .glyphicon.tile:hover,.white h2>a .glyphicon.tile:active,.white h2>a .glyphicon.tile:hover,.white h3>a .glyphicon.tile:active,.white h3>a .glyphicon.tile:hover,.white h4>a .glyphicon.tile:active,.white h4>a .glyphicon.tile:hover,.white h5>a .glyphicon.tile:active,.white h5>a .glyphicon.tile:hover,.white h6>a .glyphicon.tile:active,.white h6>a .glyphicon.tile:hover,.white li>a .glyphicon.tile:active,.white li>a .glyphicon.tile:hover,.white p>a .glyphicon.tile:active,.white p>a .glyphicon.tile:hover,.white td>a .glyphicon.tile:active,.white td>a .glyphicon.tile:hover{color:#4e4e4e}.white ul.nav-sidebar>li.active>a{color:#000}.white ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.white ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.white ul.nav-sidebar>li>a:hover{color:#000}.white ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.white ul.dropdown-menu>li>a:hover{color:#fff}.white.subnav .navbar-brand{color:#000}.white.subnav .navbar-brand a{text-decoration:none;color:#000}.white.subnav li>a{color:#aaa}.white.subnav li>a.active{color:#000}.white.subnav li>a:hover{color:#5b5b5b}.white .sidebar strong,.white.subnav .navbar-toggle{color:#000}.white.subnav .navbar-toggle:hover{background-color:transparent}.white.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.white .sidebar a strong,.white .sidebar a strong:active,.white .sidebar a strong:link,.white .sidebar a strong:visited{color:#0089bc}.white .sidebar a strong:hover{color:#005170}.white cite.bubble strong{color:#414141}.white cite.bubble a:active,.white cite.bubble a:link,.white cite.bubble a:visited{color:#0089bc}.white cite.bubble a:hover{color:#005170}.white blockquote,.white blockquote p,.white blockquote ul>li{color:#747474}.sand{background-color:#f9f9ef;color:#6f6f6f}.sand .lead a{font-weight:300}.sand .span>a,.sand address>a,.sand em>a,.sand h1>a,.sand h2>a,.sand h3>a,.sand h4>a,.sand h5>a,.sand h6>a,.sand li>a,.sand p>a,.sand td>a{-webkit-transition:.2s color;transition:.2s color}.sand .nav li>a,.sand .span>a:active,.sand .span>a:hover,.sand address>a:active,.sand address>a:hover,.sand em>a:active,.sand em>a:hover,.sand h1>a:active,.sand h1>a:hover,.sand h2>a:active,.sand h2>a:hover,.sand h3>a:active,.sand h3>a:hover,.sand h4>a:active,.sand h4>a:hover,.sand h5>a:active,.sand h5>a:hover,.sand h6>a:active,.sand h6>a:hover,.sand li>a:active,.sand li>a:hover,.sand p>a:active,.sand p>a:hover,.sand td>a:active,.sand td>a:hover{text-decoration:none}.sand.separated{border-bottom-color:#e4e4b7}.sand .h1,.sand .h2,.sand .h3,.sand .h4,.sand .h5,.sand .h6,.sand h1,.sand h2,.sand h3,.sand h4,.sand h5,.sand h6{color:#000}.sand.jumbotron .h1,.sand.jumbotron h1{color:#2f2f2f}.sand.jumbotron .h2,.sand.jumbotron .h3,.sand.jumbotron .h4,.sand.jumbotron .h5,.sand.jumbotron .h6,.sand.jumbotron h2,.sand.jumbotron h3,.sand.jumbotron h4,.sand.jumbotron h5,.sand.jumbotron h6{color:#6f6f6f}.sand .span>a:active,.sand .span>a:link,.sand .span>a:visited,.sand address>a:active,.sand address>a:link,.sand address>a:visited,.sand em>a:active,.sand em>a:link,.sand em>a:visited,.sand h1>a:active,.sand h1>a:link,.sand h1>a:visited,.sand h2>a:active,.sand h2>a:link,.sand h2>a:visited,.sand h3>a:active,.sand h3>a:link,.sand h3>a:visited,.sand h4>a:active,.sand h4>a:link,.sand h4>a:visited,.sand h5>a:active,.sand h5>a:link,.sand h5>a:visited,.sand h6>a:active,.sand h6>a:link,.sand h6>a:visited,.sand li>a:active,.sand li>a:link,.sand li>a:visited,.sand p>a:active,.sand p>a:link,.sand p>a:visited,.sand td>a:active,.sand td>a:link,.sand td>a:visited{color:#0089bc}.sand .span>a:hover,.sand address>a:hover,.sand em>a:hover,.sand h1>a:hover,.sand h2>a:hover,.sand h3>a:hover,.sand h4>a:hover,.sand h5>a:hover,.sand h6>a:hover,.sand li>a:hover,.sand p>a:hover,.sand td>a:hover{color:#005170}.sand .span>a .glyphicon.tile,.sand address>a .glyphicon.tile,.sand em>a .glyphicon.tile,.sand h1>a .glyphicon.tile,.sand h2>a .glyphicon.tile,.sand h3>a .glyphicon.tile,.sand h4>a .glyphicon.tile,.sand h5>a .glyphicon.tile,.sand h6>a .glyphicon.tile,.sand li>a .glyphicon.tile,.sand p>a .glyphicon.tile,.sand td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.sand .span>a .glyphicon.tile:active,.sand .span>a .glyphicon.tile:hover,.sand address>a .glyphicon.tile:active,.sand address>a .glyphicon.tile:hover,.sand em>a .glyphicon.tile:active,.sand em>a .glyphicon.tile:hover,.sand h1>a .glyphicon.tile:active,.sand h1>a .glyphicon.tile:hover,.sand h2>a .glyphicon.tile:active,.sand h2>a .glyphicon.tile:hover,.sand h3>a .glyphicon.tile:active,.sand h3>a .glyphicon.tile:hover,.sand h4>a .glyphicon.tile:active,.sand h4>a .glyphicon.tile:hover,.sand h5>a .glyphicon.tile:active,.sand h5>a .glyphicon.tile:hover,.sand h6>a .glyphicon.tile:active,.sand h6>a .glyphicon.tile:hover,.sand li>a .glyphicon.tile:active,.sand li>a .glyphicon.tile:hover,.sand p>a .glyphicon.tile:active,.sand p>a .glyphicon.tile:hover,.sand td>a .glyphicon.tile:active,.sand td>a .glyphicon.tile:hover{color:#494949}.sand ul.nav-sidebar>li.active>a{color:#000}.sand ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.sand ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.sand ul.nav-sidebar>li>a:hover{color:#000}.sand ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.sand ul.dropdown-menu>li>a:hover{color:#fff}.sand.subnav .navbar-brand{color:#000}.sand.subnav .navbar-brand a{text-decoration:none;color:#000}.sand.subnav li>a{color:#aaa}.sand.subnav li>a.active{color:#000}.sand.subnav li>a:hover{color:#555}.sand .sidebar strong,.sand.subnav .navbar-toggle{color:#000}.sand.subnav .navbar-toggle:hover{background-color:transparent}.sand.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.sand .sidebar a strong,.sand .sidebar a strong:active,.sand .sidebar a strong:link,.sand .sidebar a strong:visited{color:#0089bc}.sand .sidebar a strong:hover{color:#005170}.sand cite.bubble strong{color:#414141}.sand cite.bubble a:active,.sand cite.bubble a:link,.sand cite.bubble a:visited{color:#0089bc}.sand cite.bubble a:hover{color:#005170}.sand blockquote,.sand blockquote p,.sand blockquote ul>li{color:#747474}.light-gray{background-color:#f4f4f4;color:#6f6f6f}.light-gray .lead a{font-weight:300}.light-gray .span>a,.light-gray address>a,.light-gray em>a,.light-gray h1>a,.light-gray h2>a,.light-gray h3>a,.light-gray h4>a,.light-gray h5>a,.light-gray h6>a,.light-gray li>a,.light-gray p>a,.light-gray td>a{-webkit-transition:.2s color;transition:.2s color}.light-gray .nav li>a,.light-gray .span>a:active,.light-gray .span>a:hover,.light-gray address>a:active,.light-gray address>a:hover,.light-gray em>a:active,.light-gray em>a:hover,.light-gray h1>a:active,.light-gray h1>a:hover,.light-gray h2>a:active,.light-gray h2>a:hover,.light-gray h3>a:active,.light-gray h3>a:hover,.light-gray h4>a:active,.light-gray h4>a:hover,.light-gray h5>a:active,.light-gray h5>a:hover,.light-gray h6>a:active,.light-gray h6>a:hover,.light-gray li>a:active,.light-gray li>a:hover,.light-gray p>a:active,.light-gray p>a:hover,.light-gray td>a:active,.light-gray td>a:hover{text-decoration:none}.light-gray.separated{border-bottom-color:#cdcdcd}.light-gray .h1,.light-gray .h2,.light-gray .h3,.light-gray .h4,.light-gray .h5,.light-gray .h6,.light-gray h1,.light-gray h2,.light-gray h3,.light-gray h4,.light-gray h5,.light-gray h6{color:#000}.light-gray.jumbotron .h1,.light-gray.jumbotron h1{color:#2f2f2f}.light-gray.jumbotron .h2,.light-gray.jumbotron .h3,.light-gray.jumbotron .h4,.light-gray.jumbotron .h5,.light-gray.jumbotron .h6,.light-gray.jumbotron h2,.light-gray.jumbotron h3,.light-gray.jumbotron h4,.light-gray.jumbotron h5,.light-gray.jumbotron h6{color:#6f6f6f}.light-gray .span>a:active,.light-gray .span>a:link,.light-gray .span>a:visited,.light-gray address>a:active,.light-gray address>a:link,.light-gray address>a:visited,.light-gray em>a:active,.light-gray em>a:link,.light-gray em>a:visited,.light-gray h1>a:active,.light-gray h1>a:link,.light-gray h1>a:visited,.light-gray h2>a:active,.light-gray h2>a:link,.light-gray h2>a:visited,.light-gray h3>a:active,.light-gray h3>a:link,.light-gray h3>a:visited,.light-gray h4>a:active,.light-gray h4>a:link,.light-gray h4>a:visited,.light-gray h5>a:active,.light-gray h5>a:link,.light-gray h5>a:visited,.light-gray h6>a:active,.light-gray h6>a:link,.light-gray h6>a:visited,.light-gray li>a:active,.light-gray li>a:link,.light-gray li>a:visited,.light-gray p>a:active,.light-gray p>a:link,.light-gray p>a:visited,.light-gray td>a:active,.light-gray td>a:link,.light-gray td>a:visited{color:#0089bc}.light-gray .span>a:hover,.light-gray address>a:hover,.light-gray em>a:hover,.light-gray h1>a:hover,.light-gray h2>a:hover,.light-gray h3>a:hover,.light-gray h4>a:hover,.light-gray h5>a:hover,.light-gray h6>a:hover,.light-gray li>a:hover,.light-gray p>a:hover,.light-gray td>a:hover{color:#005170}.light-gray .span>a .glyphicon.tile,.light-gray address>a .glyphicon.tile,.light-gray em>a .glyphicon.tile,.light-gray h1>a .glyphicon.tile,.light-gray h2>a .glyphicon.tile,.light-gray h3>a .glyphicon.tile,.light-gray h4>a .glyphicon.tile,.light-gray h5>a .glyphicon.tile,.light-gray h6>a .glyphicon.tile,.light-gray li>a .glyphicon.tile,.light-gray p>a .glyphicon.tile,.light-gray td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-gray .span>a .glyphicon.tile:active,.light-gray .span>a .glyphicon.tile:hover,.light-gray address>a .glyphicon.tile:active,.light-gray address>a .glyphicon.tile:hover,.light-gray em>a .glyphicon.tile:active,.light-gray em>a .glyphicon.tile:hover,.light-gray h1>a .glyphicon.tile:active,.light-gray h1>a .glyphicon.tile:hover,.light-gray h2>a .glyphicon.tile:active,.light-gray h2>a .glyphicon.tile:hover,.light-gray h3>a .glyphicon.tile:active,.light-gray h3>a .glyphicon.tile:hover,.light-gray h4>a .glyphicon.tile:active,.light-gray h4>a .glyphicon.tile:hover,.light-gray h5>a .glyphicon.tile:active,.light-gray h5>a .glyphicon.tile:hover,.light-gray h6>a .glyphicon.tile:active,.light-gray h6>a .glyphicon.tile:hover,.light-gray li>a .glyphicon.tile:active,.light-gray li>a .glyphicon.tile:hover,.light-gray p>a .glyphicon.tile:active,.light-gray p>a .glyphicon.tile:hover,.light-gray td>a .glyphicon.tile:active,.light-gray td>a .glyphicon.tile:hover{color:#494949}.light-gray ul.nav-sidebar>li.active>a{color:#000}.light-gray ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.light-gray ul.nav-sidebar>li>a{color:#888;-webkit-transition:.1s all;transition:.1s all}.light-gray ul.nav-sidebar>li>a:hover{color:#000}.light-gray ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-gray ul.dropdown-menu>li>a:hover{color:#fff}.light-gray.subnav .navbar-brand{color:#000}.light-gray.subnav .navbar-brand a{text-decoration:none;color:#000}.light-gray.subnav li>a{color:#aaa}.light-gray.subnav li>a.active{color:#000}.light-gray.subnav li>a:hover{color:#555}.light-gray .sidebar strong,.light-gray.subnav .navbar-toggle{color:#000}.light-gray.subnav .navbar-toggle:hover{background-color:transparent}.light-gray.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-gray .sidebar a strong,.light-gray .sidebar a strong:active,.light-gray .sidebar a strong:link,.light-gray .sidebar a strong:visited{color:#0089bc}.light-gray .sidebar a strong:hover{color:#005170}.light-gray cite.bubble strong{color:#414141}.light-gray cite.bubble a:active,.light-gray cite.bubble a:link,.light-gray cite.bubble a:visited{color:#0089bc}.light-gray cite.bubble a:hover{color:#005170}.light-gray blockquote,.light-gray blockquote p,.light-gray blockquote ul>li,.striped{color:#747474}.striped{background:url(/media/images/common/stripes.png)}.striped .lead a{font-weight:300}.striped .span>a,.striped address>a,.striped em>a,.striped h1>a,.striped h2>a,.striped h3>a,.striped h4>a,.striped h5>a,.striped h6>a,.striped li>a,.striped p>a,.striped td>a{-webkit-transition:.2s color;transition:.2s color}.striped .nav li>a,.striped .span>a:active,.striped .span>a:hover,.striped address>a:active,.striped address>a:hover,.striped em>a:active,.striped em>a:hover,.striped h1>a:active,.striped h1>a:hover,.striped h2>a:active,.striped h2>a:hover,.striped h3>a:active,.striped h3>a:hover,.striped h4>a:active,.striped h4>a:hover,.striped h5>a:active,.striped h5>a:hover,.striped h6>a:active,.striped h6>a:hover,.striped li>a:active,.striped li>a:hover,.striped p>a:active,.striped p>a:hover,.striped td>a:active,.striped td>a:hover{text-decoration:none}.striped.separated{border-bottom-color:#d2d2d2}.striped.jumbotron .h1,.striped.jumbotron h1{color:#343434}.striped.jumbotron .h2,.striped.jumbotron .h3,.striped.jumbotron .h4,.striped.jumbotron .h5,.striped.jumbotron .h6,.striped.jumbotron h2,.striped.jumbotron h3,.striped.jumbotron h4,.striped.jumbotron h5,.striped.jumbotron h6{color:#747474}.striped .span>a:active,.striped .span>a:link,.striped .span>a:visited,.striped address>a:active,.striped address>a:link,.striped address>a:visited,.striped em>a:active,.striped em>a:link,.striped em>a:visited,.striped h1>a:active,.striped h1>a:link,.striped h1>a:visited,.striped h2>a:active,.striped h2>a:link,.striped h2>a:visited,.striped h3>a:active,.striped h3>a:link,.striped h3>a:visited,.striped h4>a:active,.striped h4>a:link,.striped h4>a:visited,.striped h5>a:active,.striped h5>a:link,.striped h5>a:visited,.striped h6>a:active,.striped h6>a:link,.striped h6>a:visited,.striped li>a:active,.striped li>a:link,.striped li>a:visited,.striped p>a:active,.striped p>a:link,.striped p>a:visited,.striped td>a:active,.striped td>a:link,.striped td>a:visited{color:#0089bc}.striped .span>a:hover,.striped address>a:hover,.striped em>a:hover,.striped h1>a:hover,.striped h2>a:hover,.striped h3>a:hover,.striped h4>a:hover,.striped h5>a:hover,.striped h6>a:hover,.striped li>a:hover,.striped p>a:hover,.striped td>a:hover{color:#005170}.striped .span>a .glyphicon.tile,.striped address>a .glyphicon.tile,.striped em>a .glyphicon.tile,.striped h1>a .glyphicon.tile,.striped h2>a .glyphicon.tile,.striped h3>a .glyphicon.tile,.striped h4>a .glyphicon.tile,.striped h5>a .glyphicon.tile,.striped h6>a .glyphicon.tile,.striped li>a .glyphicon.tile,.striped p>a .glyphicon.tile,.striped td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.striped .span>a .glyphicon.tile:active,.striped .span>a .glyphicon.tile:hover,.striped address>a .glyphicon.tile:active,.striped address>a .glyphicon.tile:hover,.striped em>a .glyphicon.tile:active,.striped em>a .glyphicon.tile:hover,.striped h1>a .glyphicon.tile:active,.striped h1>a .glyphicon.tile:hover,.striped h2>a .glyphicon.tile:active,.striped h2>a .glyphicon.tile:hover,.striped h3>a .glyphicon.tile:active,.striped h3>a .glyphicon.tile:hover,.striped h4>a .glyphicon.tile:active,.striped h4>a .glyphicon.tile:hover,.striped h5>a .glyphicon.tile:active,.striped h5>a .glyphicon.tile:hover,.striped h6>a .glyphicon.tile:active,.striped h6>a .glyphicon.tile:hover,.striped li>a .glyphicon.tile:active,.striped li>a .glyphicon.tile:hover,.striped p>a .glyphicon.tile:active,.striped p>a .glyphicon.tile:hover,.striped td>a .glyphicon.tile:active,.striped td>a .glyphicon.tile:hover{color:#4e4e4e}.striped ul.nav-sidebar>li.active>a{color:#000}.striped ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.striped ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.striped ul.nav-sidebar>li>a:hover{color:#000}.striped ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.striped ul.dropdown-menu>li>a:hover{color:#fff}.striped.subnav .navbar-brand{color:#000}.striped.subnav .navbar-brand a{text-decoration:none;color:#000}.striped.subnav li>a{color:#aaa}.striped.subnav li>a.active{color:#000}.striped.subnav li>a:hover{color:#5b5b5b}.striped .sidebar strong,.striped.subnav .navbar-toggle{color:#000}.striped.subnav .navbar-toggle:hover{background-color:transparent}.striped.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.striped .sidebar a strong,.striped .sidebar a strong:active,.striped .sidebar a strong:link,.striped .sidebar a strong:visited{color:#0089bc}.striped .sidebar a strong:hover{color:#005170}.striped cite.bubble strong{color:#414141}.striped cite.bubble a:active,.striped cite.bubble a:link,.striped cite.bubble a:visited{color:#0089bc}.striped cite.bubble a:hover{color:#005170}.striped blockquote,.striped blockquote p,.striped blockquote ul>li{color:#747474}.striped .h1,.striped .h2,.striped .h3,.striped .h4,.striped .h5,.striped .h6,.striped h1,.striped h2,.striped h3,.striped h4,.striped h5,.striped h6{color:#4e4e4e}.cubes{color:#747474;background:url(/media/images/common/cube_tile_lt_gray.png)}.cubes .lead a{font-weight:300}.cubes .span>a,.cubes address>a,.cubes em>a,.cubes h1>a,.cubes h2>a,.cubes h3>a,.cubes h4>a,.cubes h5>a,.cubes h6>a,.cubes li>a,.cubes p>a,.cubes td>a{-webkit-transition:.2s color;transition:.2s color}.cubes .nav li>a,.cubes .span>a:active,.cubes .span>a:hover,.cubes address>a:active,.cubes address>a:hover,.cubes em>a:active,.cubes em>a:hover,.cubes h1>a:active,.cubes h1>a:hover,.cubes h2>a:active,.cubes h2>a:hover,.cubes h3>a:active,.cubes h3>a:hover,.cubes h4>a:active,.cubes h4>a:hover,.cubes h5>a:active,.cubes h5>a:hover,.cubes h6>a:active,.cubes h6>a:hover,.cubes li>a:active,.cubes li>a:hover,.cubes p>a:active,.cubes p>a:hover,.cubes td>a:active,.cubes td>a:hover{text-decoration:none}.cubes.separated{border-bottom-color:#d2d2d2}.cubes.jumbotron .h1,.cubes.jumbotron h1{color:#343434}.cubes.jumbotron .h2,.cubes.jumbotron .h3,.cubes.jumbotron .h4,.cubes.jumbotron .h5,.cubes.jumbotron .h6,.cubes.jumbotron h2,.cubes.jumbotron h3,.cubes.jumbotron h4,.cubes.jumbotron h5,.cubes.jumbotron h6{color:#747474}.cubes .span>a:active,.cubes .span>a:link,.cubes .span>a:visited,.cubes address>a:active,.cubes address>a:link,.cubes address>a:visited,.cubes em>a:active,.cubes em>a:link,.cubes em>a:visited,.cubes h1>a:active,.cubes h1>a:link,.cubes h1>a:visited,.cubes h2>a:active,.cubes h2>a:link,.cubes h2>a:visited,.cubes h3>a:active,.cubes h3>a:link,.cubes h3>a:visited,.cubes h4>a:active,.cubes h4>a:link,.cubes h4>a:visited,.cubes h5>a:active,.cubes h5>a:link,.cubes h5>a:visited,.cubes h6>a:active,.cubes h6>a:link,.cubes h6>a:visited,.cubes li>a:active,.cubes li>a:link,.cubes li>a:visited,.cubes p>a:active,.cubes p>a:link,.cubes p>a:visited,.cubes td>a:active,.cubes td>a:link,.cubes td>a:visited{color:#0089bc}.cubes .span>a:hover,.cubes address>a:hover,.cubes em>a:hover,.cubes h1>a:hover,.cubes h2>a:hover,.cubes h3>a:hover,.cubes h4>a:hover,.cubes h5>a:hover,.cubes h6>a:hover,.cubes li>a:hover,.cubes p>a:hover,.cubes td>a:hover{color:#005170}.cubes .span>a .glyphicon.tile,.cubes address>a .glyphicon.tile,.cubes em>a .glyphicon.tile,.cubes h1>a .glyphicon.tile,.cubes h2>a .glyphicon.tile,.cubes h3>a .glyphicon.tile,.cubes h4>a .glyphicon.tile,.cubes h5>a .glyphicon.tile,.cubes h6>a .glyphicon.tile,.cubes li>a .glyphicon.tile,.cubes p>a .glyphicon.tile,.cubes td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.cubes .span>a .glyphicon.tile:active,.cubes .span>a .glyphicon.tile:hover,.cubes address>a .glyphicon.tile:active,.cubes address>a .glyphicon.tile:hover,.cubes em>a .glyphicon.tile:active,.cubes em>a .glyphicon.tile:hover,.cubes h1>a .glyphicon.tile:active,.cubes h1>a .glyphicon.tile:hover,.cubes h2>a .glyphicon.tile:active,.cubes h2>a .glyphicon.tile:hover,.cubes h3>a .glyphicon.tile:active,.cubes h3>a .glyphicon.tile:hover,.cubes h4>a .glyphicon.tile:active,.cubes h4>a .glyphicon.tile:hover,.cubes h5>a .glyphicon.tile:active,.cubes h5>a .glyphicon.tile:hover,.cubes h6>a .glyphicon.tile:active,.cubes h6>a .glyphicon.tile:hover,.cubes li>a .glyphicon.tile:active,.cubes li>a .glyphicon.tile:hover,.cubes p>a .glyphicon.tile:active,.cubes p>a .glyphicon.tile:hover,.cubes td>a .glyphicon.tile:active,.cubes td>a .glyphicon.tile:hover{color:#4e4e4e}.cubes ul.nav-sidebar>li.active>a{color:#000}.cubes ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.blue .lead a,.dark-blue .lead a,.dark-green .lead a,.green .lead a,.light-blue .lead a{font-weight:300}.cubes ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.cubes ul.nav-sidebar>li>a:hover{color:#000}.cubes ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.cubes ul.dropdown-menu>li>a:hover{color:#fff}.cubes.subnav{opacity:.96}.cubes.subnav .navbar-brand{color:#000}.cubes.subnav .navbar-brand a{text-decoration:none;color:#000}.cubes.subnav li>a{color:#aaa}.cubes.subnav li>a.active{color:#000}.cubes.subnav li>a:hover{color:#5b5b5b}.cubes .sidebar strong,.cubes.subnav .navbar-toggle{color:#000}.cubes.subnav .navbar-toggle:hover{background-color:transparent}.cubes.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.cubes .sidebar a strong,.cubes .sidebar a strong:active,.cubes .sidebar a strong:link,.cubes .sidebar a strong:visited{color:#0089bc}.cubes .sidebar a strong:hover{color:#005170}.cubes cite.bubble strong{color:#414141}.cubes cite.bubble a:active,.cubes cite.bubble a:link,.cubes cite.bubble a:visited{color:#0089bc}.cubes cite.bubble a:hover{color:#005170}.cubes blockquote,.cubes blockquote p,.cubes blockquote ul>li{color:#747474}.cubes .h1,.cubes .h2,.cubes .h3,.cubes .h4,.cubes .h5,.cubes .h6,.cubes h1,.cubes h2,.cubes h3,.cubes h4,.cubes h5,.cubes h6{color:#4e4e4e}.green,.green .h1,.green .h2,.green .h3,.green .h4,.green .h5,.green .h6,.green h1,.green h2,.green h3,.green h4,.green h5,.green h6,.green.subnav .navbar-brand{color:#fff}.green{background-color:#3BB878}.green .span>a,.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{-webkit-transition:.2s color;transition:.2s color}.green .nav li>a,.green .span>a:active,.green .span>a:hover,.green address>a:active,.green address>a:hover,.green em>a:active,.green em>a:hover,.green h1>a:active,.green h1>a:hover,.green h2>a:active,.green h2>a:hover,.green h3>a:active,.green h3>a:hover,.green h4>a:active,.green h4>a:hover,.green h5>a:active,.green h5>a:hover,.green h6>a:active,.green h6>a:hover,.green li>a:active,.green li>a:hover,.green p>a:active,.green p>a:hover,.green td>a:active,.green td>a:hover{text-decoration:none}.green.separated{border-bottom-color:#287e52}.green address>a,.green em>a,.green h1>a,.green h2>a,.green h3>a,.green h4>a,.green h5>a,.green h6>a,.green li>a,.green p>a,.green td>a{color:#fff;text-decoration:underline}.dark-green .nav li>a,.dark-green .span>a:active,.dark-green .span>a:hover,.dark-green address>a:active,.dark-green address>a:hover,.dark-green em>a:active,.dark-green em>a:hover,.dark-green h1>a:active,.dark-green h1>a:hover,.dark-green h2>a:active,.dark-green h2>a:hover,.dark-green h3>a:active,.dark-green h3>a:hover,.dark-green h4>a:active,.dark-green h4>a:hover,.dark-green h5>a:active,.dark-green h5>a:hover,.dark-green h6>a:active,.dark-green h6>a:hover,.dark-green li>a:active,.dark-green li>a:hover,.dark-green p>a:active,.dark-green p>a:hover,.dark-green td>a:active,.dark-green td>a:hover,.green address>a:hover,.green em>a:hover,.green h1>a:hover,.green h2>a:hover,.green h3>a:hover,.green h4>a:hover,.green h5>a:hover,.green h6>a:hover,.green li>a:hover,.green p>a:hover,.green td>a:hover,.green.subnav .navbar-brand a{text-decoration:none}.green.subnav li>a{color:#a1e1c0}.green.subnav li>a.active,.green.subnav li>a:hover{color:#fff}.green.subnav .navbar-toggle{color:#226b46}.dark-green,.dark-green .h1,.dark-green .h2,.dark-green .h3,.dark-green .h4,.dark-green .h5,.dark-green .h6,.dark-green h1,.dark-green h2,.dark-green h3,.dark-green h4,.dark-green h5,.dark-green h6,.dark-green.subnav .navbar-brand{color:#fff}.green.subnav .navbar-toggle:hover{background-color:transparent}.green.subnav .navbar-collapse{border-top-color:#226b46}.green.subnav .subnav-divider{border-bottom:1px solid #3BB878}.green .form-control{border:0!important}.dark-green{background-color:#35a56b}.dark-green .span>a,.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{-webkit-transition:.2s color;transition:.2s color}.dark-green.separated{border-bottom-color:#226b46}.dark-green address>a,.dark-green em>a,.dark-green h1>a,.dark-green h2>a,.dark-green h3>a,.dark-green h4>a,.dark-green h5>a,.dark-green h6>a,.dark-green li>a,.dark-green p>a,.dark-green td>a{color:#fff;text-decoration:underline}.blue .nav li>a,.blue .span>a:active,.blue .span>a:hover,.blue address>a:active,.blue address>a:hover,.blue em>a:active,.blue em>a:hover,.blue h1>a:active,.blue h1>a:hover,.blue h2>a:active,.blue h2>a:hover,.blue h3>a:active,.blue h3>a:hover,.blue h4>a:active,.blue h4>a:hover,.blue h5>a:active,.blue h5>a:hover,.blue h6>a:active,.blue h6>a:hover,.blue li>a:active,.blue li>a:hover,.blue p>a:active,.blue p>a:hover,.blue td>a:active,.blue td>a:hover,.dark-green address>a:hover,.dark-green em>a:hover,.dark-green h1>a:hover,.dark-green h2>a:hover,.dark-green h3>a:hover,.dark-green h4>a:hover,.dark-green h5>a:hover,.dark-green h6>a:hover,.dark-green li>a:hover,.dark-green p>a:hover,.dark-green td>a:hover,.dark-green.subnav .navbar-brand a{text-decoration:none}.dark-green.subnav li>a{color:#8edbb3}.dark-green.subnav li>a.active,.dark-green.subnav li>a:hover{color:#fff}.dark-green.subnav .navbar-toggle{color:#1c5739}.blue,.blue .h1,.blue .h2,.blue .h3,.blue .h4,.blue .h5,.blue .h6,.blue h1,.blue h2,.blue h3,.blue h4,.blue h5,.blue h6,.blue.subnav .navbar-brand{color:#fff}.dark-green.subnav .navbar-toggle:hover{background-color:transparent}.dark-green.subnav .navbar-collapse{border-top-color:#1c5739}.dark-green.subnav .subnav-divider{border-bottom:1px solid #35a56b}.dark-green .form-control{border:0!important}.blue{background-color:#00aeef}.blue .span>a,.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{-webkit-transition:.2s color;transition:.2s color}.blue.separated{border-bottom-color:#0076a3}.blue address>a,.blue em>a,.blue h1>a,.blue h2>a,.blue h3>a,.blue h4>a,.blue h5>a,.blue h6>a,.blue li>a,.blue p>a,.blue td>a{color:#fff;text-decoration:underline}.blue address>a:hover,.blue em>a:hover,.blue h1>a:hover,.blue h2>a:hover,.blue h3>a:hover,.blue h4>a:hover,.blue h5>a:hover,.blue h6>a:hover,.blue li>a:hover,.blue p>a:hover,.blue td>a:hover,.blue.subnav .navbar-brand a,.dark-blue .nav li>a,.dark-blue .span>a:active,.dark-blue .span>a:hover,.dark-blue address>a:active,.dark-blue address>a:hover,.dark-blue em>a:active,.dark-blue em>a:hover,.dark-blue h1>a:active,.dark-blue h1>a:hover,.dark-blue h2>a:active,.dark-blue h2>a:hover,.dark-blue h3>a:active,.dark-blue h3>a:hover,.dark-blue h4>a:active,.dark-blue h4>a:hover,.dark-blue h5>a:active,.dark-blue h5>a:hover,.dark-blue h6>a:active,.dark-blue h6>a:hover,.dark-blue li>a:active,.dark-blue li>a:hover,.dark-blue p>a:active,.dark-blue p>a:hover,.dark-blue td>a:active,.dark-blue td>a:hover{text-decoration:none}.blue.subnav li>a{color:#7fdcff}.blue.subnav li>a.active,.blue.subnav li>a:hover{color:#fff}.blue.subnav .navbar-toggle{color:#006489}.dark-blue,.dark-blue .h1,.dark-blue .h2,.dark-blue .h3,.dark-blue .h4,.dark-blue .h5,.dark-blue .h6,.dark-blue h1,.dark-blue h2,.dark-blue h3,.dark-blue h4,.dark-blue h5,.dark-blue h6,.dark-blue.subnav .navbar-brand{color:#fff}.blue.subnav .navbar-toggle:hover{background-color:transparent}.blue.subnav .navbar-collapse{border-top-color:#006489}.blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.blue .form-control{border:0!important}.dark-blue{background-color:#00aeef}.dark-blue .span>a,.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{-webkit-transition:.2s color;transition:.2s color}.dark-blue.separated{border-bottom-color:#0076a3}.dark-blue address>a,.dark-blue em>a,.dark-blue h1>a,.dark-blue h2>a,.dark-blue h3>a,.dark-blue h4>a,.dark-blue h5>a,.dark-blue h6>a,.dark-blue li>a,.dark-blue p>a,.dark-blue td>a{color:#fff;text-decoration:underline}.dark-blue address>a:hover,.dark-blue em>a:hover,.dark-blue h1>a:hover,.dark-blue h2>a:hover,.dark-blue h3>a:hover,.dark-blue h4>a:hover,.dark-blue h5>a:hover,.dark-blue h6>a:hover,.dark-blue li>a:hover,.dark-blue p>a:hover,.dark-blue td>a:hover,.dark-blue.subnav .navbar-brand a,.light-blue .nav li>a,.light-blue .span>a:active,.light-blue .span>a:hover,.light-blue address>a:active,.light-blue address>a:hover,.light-blue em>a:active,.light-blue em>a:hover,.light-blue h1>a:active,.light-blue h1>a:hover,.light-blue h2>a:active,.light-blue h2>a:hover,.light-blue h3>a:active,.light-blue h3>a:hover,.light-blue h4>a:active,.light-blue h4>a:hover,.light-blue h5>a:active,.light-blue h5>a:hover,.light-blue h6>a:active,.light-blue h6>a:hover,.light-blue li>a:active,.light-blue li>a:hover,.light-blue p>a:active,.light-blue p>a:hover,.light-blue td>a:active,.light-blue td>a:hover,.light-blue.subnav .navbar-brand a,.red .nav li>a,.red .span>a:active,.red .span>a:hover,.red address>a:active,.red address>a:hover,.red em>a:active,.red em>a:hover,.red h1>a:active,.red h1>a:hover,.red h2>a:active,.red h2>a:hover,.red h3>a:active,.red h3>a:hover,.red h4>a:active,.red h4>a:hover,.red h5>a:active,.red h5>a:hover,.red h6>a:active,.red h6>a:hover,.red li>a:active,.red li>a:hover,.red p>a:active,.red p>a:hover,.red td>a:active,.red td>a:hover{text-decoration:none}.dark-blue.subnav li>a{color:#7fdcff}.dark-blue.subnav li>a.active,.dark-blue.subnav li>a:hover{color:#fff}.dark-blue.subnav .navbar-toggle{color:#006489}.dark-blue.subnav .navbar-toggle:hover{background-color:transparent}.dark-blue.subnav .navbar-collapse{border-top-color:#006489}.dark-blue.subnav .subnav-divider{border-bottom:1px solid #00aeef}.dark-blue .form-control{border:0!important}.light-blue{background-color:#edf7fe;color:#747474}.light-blue .span>a,.light-blue address>a,.light-blue em>a,.light-blue h1>a,.light-blue h2>a,.light-blue h3>a,.light-blue h4>a,.light-blue h5>a,.light-blue h6>a,.light-blue li>a,.light-blue p>a,.light-blue td>a{-webkit-transition:.2s color;transition:.2s color}.light-blue.separated{border-bottom-color:#a5d7fa}.light-blue .h1,.light-blue .h2,.light-blue .h3,.light-blue .h4,.light-blue .h5,.light-blue .h6,.light-blue h1,.light-blue h2,.light-blue h3,.light-blue h4,.light-blue h5,.light-blue h6{color:#000}.light-blue.jumbotron .h1,.light-blue.jumbotron h1{color:#343434}.light-blue.jumbotron .h2,.light-blue.jumbotron .h3,.light-blue.jumbotron .h4,.light-blue.jumbotron .h5,.light-blue.jumbotron .h6,.light-blue.jumbotron h2,.light-blue.jumbotron h3,.light-blue.jumbotron h4,.light-blue.jumbotron h5,.light-blue.jumbotron h6{color:#747474}.light-blue .span>a:active,.light-blue .span>a:link,.light-blue .span>a:visited,.light-blue address>a:active,.light-blue address>a:link,.light-blue address>a:visited,.light-blue em>a:active,.light-blue em>a:link,.light-blue em>a:visited,.light-blue h1>a:active,.light-blue h1>a:link,.light-blue h1>a:visited,.light-blue h2>a:active,.light-blue h2>a:link,.light-blue h2>a:visited,.light-blue h3>a:active,.light-blue h3>a:link,.light-blue h3>a:visited,.light-blue h4>a:active,.light-blue h4>a:link,.light-blue h4>a:visited,.light-blue h5>a:active,.light-blue h5>a:link,.light-blue h5>a:visited,.light-blue h6>a:active,.light-blue h6>a:link,.light-blue h6>a:visited,.light-blue li>a:active,.light-blue li>a:link,.light-blue li>a:visited,.light-blue p>a:active,.light-blue p>a:link,.light-blue p>a:visited,.light-blue td>a:active,.light-blue td>a:link,.light-blue td>a:visited{color:#0089bc}.light-blue .span>a:hover,.light-blue address>a:hover,.light-blue em>a:hover,.light-blue h1>a:hover,.light-blue h2>a:hover,.light-blue h3>a:hover,.light-blue h4>a:hover,.light-blue h5>a:hover,.light-blue h6>a:hover,.light-blue li>a:hover,.light-blue p>a:hover,.light-blue td>a:hover{color:#005170}.light-blue .span>a .glyphicon.tile,.light-blue address>a .glyphicon.tile,.light-blue em>a .glyphicon.tile,.light-blue h1>a .glyphicon.tile,.light-blue h2>a .glyphicon.tile,.light-blue h3>a .glyphicon.tile,.light-blue h4>a .glyphicon.tile,.light-blue h5>a .glyphicon.tile,.light-blue h6>a .glyphicon.tile,.light-blue li>a .glyphicon.tile,.light-blue p>a .glyphicon.tile,.light-blue td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.light-blue .span>a .glyphicon.tile:active,.light-blue .span>a .glyphicon.tile:hover,.light-blue address>a .glyphicon.tile:active,.light-blue address>a .glyphicon.tile:hover,.light-blue em>a .glyphicon.tile:active,.light-blue em>a .glyphicon.tile:hover,.light-blue h1>a .glyphicon.tile:active,.light-blue h1>a .glyphicon.tile:hover,.light-blue h2>a .glyphicon.tile:active,.light-blue h2>a .glyphicon.tile:hover,.light-blue h3>a .glyphicon.tile:active,.light-blue h3>a .glyphicon.tile:hover,.light-blue h4>a .glyphicon.tile:active,.light-blue h4>a .glyphicon.tile:hover,.light-blue h5>a .glyphicon.tile:active,.light-blue h5>a .glyphicon.tile:hover,.light-blue h6>a .glyphicon.tile:active,.light-blue h6>a .glyphicon.tile:hover,.light-blue li>a .glyphicon.tile:active,.light-blue li>a .glyphicon.tile:hover,.light-blue p>a .glyphicon.tile:active,.light-blue p>a .glyphicon.tile:hover,.light-blue td>a .glyphicon.tile:active,.light-blue td>a .glyphicon.tile:hover{color:#4e4e4e}.light-blue ul.nav-sidebar>li.active>a{color:#000}.light-blue ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.dark-purple .lead a,.hero .lead a,.hero-accent .lead a,.light-purple .lead a,.logo-bg-dark .lead a,.primary .lead a,.purple .lead a,.red .lead a{font-weight:300}.light-blue ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.light-blue ul.nav-sidebar>li>a:hover{color:#000}.light-blue ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.light-blue ul.dropdown-menu>li>a:hover{color:#fff}.light-blue.subnav .navbar-brand,.light-blue.subnav .navbar-brand a{color:#000}.light-blue.subnav li>a{color:#aaa}.light-blue.subnav li>a.active{color:#000}.light-blue.subnav li>a:hover{color:#5b5b5b}.light-blue .sidebar strong,.light-blue.subnav .navbar-toggle{color:#000}.light-blue.subnav .navbar-toggle:hover{background-color:transparent}.light-blue.subnav .navbar-collapse{border-top-color:#e7e6e6}.light-blue.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.light-blue .sidebar a strong,.light-blue .sidebar a strong:active,.light-blue .sidebar a strong:link,.light-blue .sidebar a strong:visited{color:#0089bc}.light-blue .sidebar a strong:hover{color:#005170}.light-blue cite.bubble strong{color:#414141}.light-blue cite.bubble a:active,.light-blue cite.bubble a:link,.light-blue cite.bubble a:visited{color:#0089bc}.light-blue cite.bubble a:hover{color:#005170}.light-blue blockquote,.light-blue blockquote p,.light-blue blockquote ul>li{color:#747474}.red,.red .h1,.red .h2,.red .h3,.red .h4,.red .h5,.red .h6,.red h1,.red h2,.red h3,.red h4,.red h5,.red h6,.red.subnav .navbar-brand{color:#fff}.red{background-color:#d7594c}.red .span>a,.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{-webkit-transition:.2s color;transition:.2s color}.red.separated{border-bottom-color:#af3428}.red address>a,.red em>a,.red h1>a,.red h2>a,.red h3>a,.red h4>a,.red h5>a,.red h6>a,.red li>a,.red p>a,.red td>a{color:#fff;text-decoration:underline}.purple .nav li>a,.purple .span>a:active,.purple .span>a:hover,.purple address>a:active,.purple address>a:hover,.purple em>a:active,.purple em>a:hover,.purple h1>a:active,.purple h1>a:hover,.purple h2>a:active,.purple h2>a:hover,.purple h3>a:active,.purple h3>a:hover,.purple h4>a:active,.purple h4>a:hover,.purple h5>a:active,.purple h5>a:hover,.purple h6>a:active,.purple h6>a:hover,.purple li>a:active,.purple li>a:hover,.purple p>a:active,.purple p>a:hover,.purple td>a:active,.purple td>a:hover,.red address>a:hover,.red em>a:hover,.red h1>a:hover,.red h2>a:hover,.red h3>a:hover,.red h4>a:hover,.red h5>a:hover,.red h6>a:hover,.red li>a:hover,.red p>a:hover,.red td>a:hover,.red.subnav .navbar-brand a{text-decoration:none}.red.subnav li>a{color:#f1c5c1}.red.subnav li>a.active,.red.subnav li>a:hover{color:#fff}.red.subnav .navbar-toggle{color:#9a2e23}.purple,.purple .h1,.purple .h2,.purple .h3,.purple .h4,.purple .h5,.purple .h6,.purple h1,.purple h2,.purple h3,.purple h4,.purple h5,.purple h6,.purple.subnav .navbar-brand{color:#fff}.red.subnav .navbar-toggle:hover{background-color:transparent}.red.subnav .navbar-collapse{border-top-color:#9a2e23}.red.subnav .subnav-divider{border-bottom:1px solid #d7594c}.red .form-control{border:0!important}.purple{background-color:#c67fcf}.purple .span>a,.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{-webkit-transition:.2s color;transition:.2s color}.purple.separated{border-bottom-color:#ad47ba}.purple address>a,.purple em>a,.purple h1>a,.purple h2>a,.purple h3>a,.purple h4>a,.purple h5>a,.purple h6>a,.purple li>a,.purple p>a,.purple td>a{color:#fff;text-decoration:underline}.dark-purple .nav li>a,.dark-purple .span>a:active,.dark-purple .span>a:hover,.dark-purple address>a:active,.dark-purple address>a:hover,.dark-purple em>a:active,.dark-purple em>a:hover,.dark-purple h1>a:active,.dark-purple h1>a:hover,.dark-purple h2>a:active,.dark-purple h2>a:hover,.dark-purple h3>a:active,.dark-purple h3>a:hover,.dark-purple h4>a:active,.dark-purple h4>a:hover,.dark-purple h5>a:active,.dark-purple h5>a:hover,.dark-purple h6>a:active,.dark-purple h6>a:hover,.dark-purple li>a:active,.dark-purple li>a:hover,.dark-purple p>a:active,.dark-purple p>a:hover,.dark-purple td>a:active,.dark-purple td>a:hover,.purple address>a:hover,.purple em>a:hover,.purple h1>a:hover,.purple h2>a:hover,.purple h3>a:hover,.purple h4>a:hover,.purple h5>a:hover,.purple h6>a:hover,.purple li>a:hover,.purple p>a:hover,.purple td>a:hover,.purple.subnav .navbar-brand a{text-decoration:none}.purple.subnav li>a{color:#f4e7f6}.purple.subnav li>a.active,.purple.subnav li>a:hover{color:#fff}.purple.subnav .navbar-toggle{color:#9d3fa9}.dark-purple,.dark-purple .h1,.dark-purple .h2,.dark-purple .h3,.dark-purple .h4,.dark-purple .h5,.dark-purple .h6,.dark-purple h1,.dark-purple h2,.dark-purple h3,.dark-purple h4,.dark-purple h5,.dark-purple h6,.dark-purple.subnav .navbar-brand{color:#fff}.purple.subnav .navbar-toggle:hover{background-color:transparent}.purple.subnav .navbar-collapse{border-top-color:#9d3fa9}.purple.subnav .subnav-divider{border-bottom:1px solid #c67fcf}.purple .form-control{border:0!important}.dark-purple{background-color:#be6cc8}.dark-purple .span>a,.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{-webkit-transition:.2s color;transition:.2s color}.dark-purple.separated{border-bottom-color:#9d3fa9}.dark-purple address>a,.dark-purple em>a,.dark-purple h1>a,.dark-purple h2>a,.dark-purple h3>a,.dark-purple h4>a,.dark-purple h5>a,.dark-purple h6>a,.dark-purple li>a,.dark-purple p>a,.dark-purple td>a{color:#fff;text-decoration:underline}.dark-purple address>a:hover,.dark-purple em>a:hover,.dark-purple h1>a:hover,.dark-purple h2>a:hover,.dark-purple h3>a:hover,.dark-purple h4>a:hover,.dark-purple h5>a:hover,.dark-purple h6>a:hover,.dark-purple li>a:hover,.dark-purple p>a:hover,.dark-purple td>a:hover,.dark-purple.subnav .navbar-brand a,.light-purple .nav li>a,.light-purple .span>a:active,.light-purple .span>a:hover,.light-purple address>a:active,.light-purple address>a:hover,.light-purple em>a:active,.light-purple em>a:hover,.light-purple h1>a:active,.light-purple h1>a:hover,.light-purple h2>a:active,.light-purple h2>a:hover,.light-purple h3>a:active,.light-purple h3>a:hover,.light-purple h4>a:active,.light-purple h4>a:hover,.light-purple h5>a:active,.light-purple h5>a:hover,.light-purple h6>a:active,.light-purple h6>a:hover,.light-purple li>a:active,.light-purple li>a:hover,.light-purple p>a:active,.light-purple p>a:hover,.light-purple td>a:active,.light-purple td>a:hover{text-decoration:none}.dark-purple.subnav li>a{color:#ecd4ef}.dark-purple.subnav li>a.active,.dark-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle{color:#8c3896}.light-purple,.light-purple .h1,.light-purple .h2,.light-purple .h3,.light-purple .h4,.light-purple .h5,.light-purple .h6,.light-purple h1,.light-purple h2,.light-purple h3,.light-purple h4,.light-purple h5,.light-purple h6,.light-purple.subnav .navbar-brand,.light-purple.subnav li>a,.light-purple.subnav li>a.active,.light-purple.subnav li>a:hover{color:#fff}.dark-purple.subnav .navbar-toggle:hover{background-color:transparent}.dark-purple.subnav .navbar-collapse{border-top-color:#8c3896}.dark-purple.subnav .subnav-divider{border-bottom:1px solid #be6cc8}.dark-purple .form-control{border:0!important}.light-purple{background-color:#eed8f0}.light-purple .span>a,.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{-webkit-transition:.2s color;transition:.2s color}.light-purple.separated{border-bottom-color:#d5a0dc}.light-purple address>a,.light-purple em>a,.light-purple h1>a,.light-purple h2>a,.light-purple h3>a,.light-purple h4>a,.light-purple h5>a,.light-purple h6>a,.light-purple li>a,.light-purple p>a,.light-purple td>a{color:#fff;text-decoration:underline}.charcoal a:active,.charcoal a:hover,.dark a:active,.dark a:hover,.dark-less a:active,.dark-less a:hover,.light-purple address>a:hover,.light-purple em>a:hover,.light-purple h1>a:hover,.light-purple h2>a:hover,.light-purple h3>a:hover,.light-purple h4>a:hover,.light-purple h5>a:hover,.light-purple h6>a:hover,.light-purple li>a:hover,.light-purple p>a:hover,.light-purple td>a:hover,.light-purple.subnav .navbar-brand a,.logo-bg-dark .nav li>a,.logo-bg-dark .span>a:active,.logo-bg-dark .span>a:hover,.logo-bg-dark address>a:active,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:active,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:active,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:active,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:active,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:active,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:active,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:active,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:active,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:active,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:active,.logo-bg-dark td>a:hover{text-decoration:none}.light-purple.subnav .navbar-toggle{color:#cd8ed5}.light-purple.subnav .navbar-toggle:hover{background-color:transparent}.light-purple.subnav .navbar-collapse{border-top-color:#cd8ed5}.light-purple.subnav .subnav-divider{border-bottom:1px solid #eed8f0}.light-purple .form-control{border:0!important}.dark{background-color:#161616;color:#444}.dark a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.dark-less a,.dark-moar a{-webkit-transition:.2s all}.dark a:active,.dark a:hover{color:#f2f2f2}.dark-moar{color:#444;background-color:#0a0a0a}.dark-moar a{transition:.2s all;color:#a6a6a6}.dark-moar a:active,.dark-moar a:hover{color:#f2f2f2;text-decoration:none}.dark-less{background-color:#222;color:#fff}.dark-less a{transition:.2s all;color:#a6a6a6}.dark-less a:active,.dark-less a:hover{color:#f2f2f2}.charcoal{color:#444;background-color:#353535}.charcoal a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}.charcoal a:active,.charcoal a:hover{color:#f2f2f2}.logo-bg-dark,.logo-bg-dark .h1,.logo-bg-dark .h2,.logo-bg-dark .h3,.logo-bg-dark .h4,.logo-bg-dark .h5,.logo-bg-dark .h6,.logo-bg-dark h1,.logo-bg-dark h2,.logo-bg-dark h3,.logo-bg-dark h4,.logo-bg-dark h5,.logo-bg-dark h6,.logo-bg-dark.subnav .navbar-brand{color:#fff}.logo-bg-dark{background-color:#2d3339}.logo-bg-dark .span>a,.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{-webkit-transition:.2s color;transition:.2s color}.logo-bg-dark.separated{border-bottom-color:#0b0d0e}.logo-bg-dark address>a,.logo-bg-dark em>a,.logo-bg-dark h1>a,.logo-bg-dark h2>a,.logo-bg-dark h3>a,.logo-bg-dark h4>a,.logo-bg-dark h5>a,.logo-bg-dark h6>a,.logo-bg-dark li>a,.logo-bg-dark p>a,.logo-bg-dark td>a{color:#fff;text-decoration:underline}.hero .nav li>a,.hero .span>a:active,.hero .span>a:hover,.hero address>a:active,.hero address>a:hover,.hero em>a:active,.hero em>a:hover,.hero h1>a:active,.hero h1>a:hover,.hero h2>a:active,.hero h2>a:hover,.hero h3>a:active,.hero h3>a:hover,.hero h4>a:active,.hero h4>a:hover,.hero h5>a:active,.hero h5>a:hover,.hero h6>a:active,.hero h6>a:hover,.hero li>a:active,.hero li>a:hover,.hero p>a:active,.hero p>a:hover,.hero td>a:active,.hero td>a:hover,.logo-bg-dark address>a:hover,.logo-bg-dark em>a:hover,.logo-bg-dark h1>a:hover,.logo-bg-dark h2>a:hover,.logo-bg-dark h3>a:hover,.logo-bg-dark h4>a:hover,.logo-bg-dark h5>a:hover,.logo-bg-dark h6>a:hover,.logo-bg-dark li>a:hover,.logo-bg-dark p>a:hover,.logo-bg-dark td>a:hover,.logo-bg-dark.subnav .navbar-brand a{text-decoration:none}.logo-bg-dark.subnav li>a{color:#6c7a89}.logo-bg-dark.subnav li>a.active,.logo-bg-dark.subnav li>a:hover{color:#fff}.logo-bg-dark.subnav .navbar-toggle{color:#000}.hero,.hero .h1,.hero .h2,.hero .h3,.hero .h4,.hero .h5,.hero .h6,.hero h1,.hero h2,.hero h3,.hero h4,.hero h5,.hero h6,.hero.subnav .navbar-brand{color:#fff}.logo-bg-dark.subnav .navbar-toggle:hover{background-color:transparent}.logo-bg-dark.subnav .navbar-collapse{border-top-color:#000}.logo-bg-dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}.logo-bg-dark .form-control{border:0!important}.hero{background-color:#3BB878}.hero .span>a,.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{-webkit-transition:.2s color;transition:.2s color}.hero.separated{border-bottom-color:#287e52}.hero address>a,.hero em>a,.hero h1>a,.hero h2>a,.hero h3>a,.hero h4>a,.hero h5>a,.hero h6>a,.hero li>a,.hero p>a,.hero td>a{color:#fff;text-decoration:underline}.hero address>a:hover,.hero em>a:hover,.hero h1>a:hover,.hero h2>a:hover,.hero h3>a:hover,.hero h4>a:hover,.hero h5>a:hover,.hero h6>a:hover,.hero li>a:hover,.hero p>a:hover,.hero td>a:hover,.hero-accent .nav li>a,.hero-accent .span>a:active,.hero-accent .span>a:hover,.hero-accent address>a:active,.hero-accent address>a:hover,.hero-accent em>a:active,.hero-accent em>a:hover,.hero-accent h1>a:active,.hero-accent h1>a:hover,.hero-accent h2>a:active,.hero-accent h2>a:hover,.hero-accent h3>a:active,.hero-accent h3>a:hover,.hero-accent h4>a:active,.hero-accent h4>a:hover,.hero-accent h5>a:active,.hero-accent h5>a:hover,.hero-accent h6>a:active,.hero-accent h6>a:hover,.hero-accent li>a:active,.hero-accent li>a:hover,.hero-accent p>a:active,.hero-accent p>a:hover,.hero-accent td>a:active,.hero-accent td>a:hover,.hero.subnav .navbar-brand a{text-decoration:none}.hero.subnav li>a{color:#a1e1c0}.hero.subnav li>a.active,.hero.subnav li>a:hover{color:#fff}.hero.subnav .navbar-toggle{color:#226b46}.hero-accent,.hero-accent .h1,.hero-accent .h2,.hero-accent .h3,.hero-accent .h4,.hero-accent .h5,.hero-accent .h6,.hero-accent h1,.hero-accent h2,.hero-accent h3,.hero-accent h4,.hero-accent h5,.hero-accent h6,.hero-accent.subnav .navbar-brand{color:#fff}.hero.subnav .navbar-toggle:hover{background-color:transparent}.hero.subnav .navbar-collapse{border-top-color:#226b46}.hero.subnav .subnav-divider{border-bottom:1px solid #3BB878}.hero .form-control{border:0!important}.hero-accent{background-color:#35a56b}.hero-accent .span>a,.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{-webkit-transition:.2s color;transition:.2s color}.hero-accent.separated{border-bottom-color:#226b46}.hero-accent address>a,.hero-accent em>a,.hero-accent h1>a,.hero-accent h2>a,.hero-accent h3>a,.hero-accent h4>a,.hero-accent h5>a,.hero-accent h6>a,.hero-accent li>a,.hero-accent p>a,.hero-accent td>a{color:#fff;text-decoration:underline}.alt .nav li>a,.alt .span>a:active,.alt .span>a:hover,.alt address>a:active,.alt address>a:hover,.alt em>a:active,.alt em>a:hover,.alt h1>a:active,.alt h1>a:hover,.alt h2>a:active,.alt h2>a:hover,.alt h3>a:active,.alt h3>a:hover,.alt h4>a:active,.alt h4>a:hover,.alt h5>a:active,.alt h5>a:hover,.alt h6>a:active,.alt h6>a:hover,.alt li>a:active,.alt li>a:hover,.alt p>a:active,.alt p>a:hover,.alt td>a:active,.alt td>a:hover,.alt ul.dropdown-menu>li>a:link,.alt.subnav .navbar-brand a,.bold .nav li>a,.bold .span>a:active,.bold .span>a:hover,.bold address>a:active,.bold address>a:hover,.bold em>a:active,.bold em>a:hover,.bold h1>a:active,.bold h1>a:hover,.bold h2>a:active,.bold h2>a:hover,.bold h3>a:active,.bold h3>a:hover,.bold h4>a:active,.bold h4>a:hover,.bold h5>a:active,.bold h5>a:hover,.bold h6>a:active,.bold h6>a:hover,.bold li>a:active,.bold li>a:hover,.bold p>a:active,.bold p>a:hover,.bold td>a:active,.bold td>a:hover,.hero-accent address>a:hover,.hero-accent em>a:hover,.hero-accent h1>a:hover,.hero-accent h2>a:hover,.hero-accent h3>a:hover,.hero-accent h4>a:hover,.hero-accent h5>a:hover,.hero-accent h6>a:hover,.hero-accent li>a:hover,.hero-accent p>a:hover,.hero-accent td>a:hover,.hero-accent.subnav .navbar-brand a,.primary .nav li>a,.primary .span>a:active,.primary .span>a:hover,.primary address>a:active,.primary address>a:hover,.primary em>a:active,.primary em>a:hover,.primary h1>a:active,.primary h1>a:hover,.primary h2>a:active,.primary h2>a:hover,.primary h3>a:active,.primary h3>a:hover,.primary h4>a:active,.primary h4>a:hover,.primary h5>a:active,.primary h5>a:hover,.primary h6>a:active,.primary h6>a:hover,.primary li>a:active,.primary li>a:hover,.primary p>a:active,.primary p>a:hover,.primary td>a:active,.primary td>a:hover,.primary.subnav .navbar-brand a{text-decoration:none}.hero-accent.subnav li>a{color:#8edbb3}.hero-accent.subnav li>a.active,.hero-accent.subnav li>a:hover{color:#fff}.hero-accent.subnav .navbar-toggle{color:#1c5739}.hero-accent.subnav .navbar-toggle:hover{background-color:transparent}.hero-accent.subnav .navbar-collapse{border-top-color:#1c5739}.hero-accent.subnav .subnav-divider{border-bottom:1px solid #35a56b}.hero-accent .form-control{border:0!important}.alt.subnav .navbar-collapse,.primary.subnav .navbar-collapse{border-top-color:#e7e6e6}.primary{background-color:#fff;color:#747474}.primary .span>a,.primary address>a,.primary em>a,.primary h1>a,.primary h2>a,.primary h3>a,.primary h4>a,.primary h5>a,.primary h6>a,.primary li>a,.primary p>a,.primary td>a{-webkit-transition:.2s color;transition:.2s color}.primary.separated{border-bottom-color:#d9d9d9}.primary .h1,.primary .h2,.primary .h3,.primary .h4,.primary .h5,.primary .h6,.primary h1,.primary h2,.primary h3,.primary h4,.primary h5,.primary h6{color:#000}.primary.jumbotron .h1,.primary.jumbotron h1{color:#343434}.primary.jumbotron .h2,.primary.jumbotron .h3,.primary.jumbotron .h4,.primary.jumbotron .h5,.primary.jumbotron .h6,.primary.jumbotron h2,.primary.jumbotron h3,.primary.jumbotron h4,.primary.jumbotron h5,.primary.jumbotron h6{color:#747474}.primary .span>a:active,.primary .span>a:link,.primary .span>a:visited,.primary address>a:active,.primary address>a:link,.primary address>a:visited,.primary em>a:active,.primary em>a:link,.primary em>a:visited,.primary h1>a:active,.primary h1>a:link,.primary h1>a:visited,.primary h2>a:active,.primary h2>a:link,.primary h2>a:visited,.primary h3>a:active,.primary h3>a:link,.primary h3>a:visited,.primary h4>a:active,.primary h4>a:link,.primary h4>a:visited,.primary h5>a:active,.primary h5>a:link,.primary h5>a:visited,.primary h6>a:active,.primary h6>a:link,.primary h6>a:visited,.primary li>a:active,.primary li>a:link,.primary li>a:visited,.primary p>a:active,.primary p>a:link,.primary p>a:visited,.primary td>a:active,.primary td>a:link,.primary td>a:visited{color:#0089bc}.primary .span>a:hover,.primary address>a:hover,.primary em>a:hover,.primary h1>a:hover,.primary h2>a:hover,.primary h3>a:hover,.primary h4>a:hover,.primary h5>a:hover,.primary h6>a:hover,.primary li>a:hover,.primary p>a:hover,.primary td>a:hover{color:#005170}.primary .span>a .glyphicon.tile,.primary address>a .glyphicon.tile,.primary em>a .glyphicon.tile,.primary h1>a .glyphicon.tile,.primary h2>a .glyphicon.tile,.primary h3>a .glyphicon.tile,.primary h4>a .glyphicon.tile,.primary h5>a .glyphicon.tile,.primary h6>a .glyphicon.tile,.primary li>a .glyphicon.tile,.primary p>a .glyphicon.tile,.primary td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.primary .span>a .glyphicon.tile:active,.primary .span>a .glyphicon.tile:hover,.primary address>a .glyphicon.tile:active,.primary address>a .glyphicon.tile:hover,.primary em>a .glyphicon.tile:active,.primary em>a .glyphicon.tile:hover,.primary h1>a .glyphicon.tile:active,.primary h1>a .glyphicon.tile:hover,.primary h2>a .glyphicon.tile:active,.primary h2>a .glyphicon.tile:hover,.primary h3>a .glyphicon.tile:active,.primary h3>a .glyphicon.tile:hover,.primary h4>a .glyphicon.tile:active,.primary h4>a .glyphicon.tile:hover,.primary h5>a .glyphicon.tile:active,.primary h5>a .glyphicon.tile:hover,.primary h6>a .glyphicon.tile:active,.primary h6>a .glyphicon.tile:hover,.primary li>a .glyphicon.tile:active,.primary li>a .glyphicon.tile:hover,.primary p>a .glyphicon.tile:active,.primary p>a .glyphicon.tile:hover,.primary td>a .glyphicon.tile:active,.primary td>a .glyphicon.tile:hover{color:#4e4e4e}.primary ul.nav-sidebar>li.active>a{color:#000}.primary ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.primary ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.primary ul.nav-sidebar>li>a:hover{color:#000}.primary ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.primary ul.dropdown-menu>li>a:hover{color:#fff}.primary.subnav .navbar-brand,.primary.subnav .navbar-brand a{color:#000}.primary.subnav li>a{color:#aaa}.primary.subnav li>a.active{color:#000}.primary.subnav li>a:hover{color:#5b5b5b}.primary .sidebar strong,.primary.subnav .navbar-toggle{color:#000}.primary.subnav .navbar-toggle:hover{background-color:transparent}.primary.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.primary .sidebar a strong,.primary .sidebar a strong:active,.primary .sidebar a strong:link,.primary .sidebar a strong:visited{color:#0089bc}.primary .sidebar a strong:hover{color:#005170}.primary cite.bubble strong{color:#414141}.primary cite.bubble a:active,.primary cite.bubble a:link,.primary cite.bubble a:visited{color:#0089bc}.primary cite.bubble a:hover{color:#005170}.alt,.primary blockquote,.primary blockquote p,.primary blockquote ul>li{color:#747474}.alt{background-color:#edf7fe}.alt .lead a{font-weight:300}.alt .span>a,.alt address>a,.alt em>a,.alt h1>a,.alt h2>a,.alt h3>a,.alt h4>a,.alt h5>a,.alt h6>a,.alt li>a,.alt p>a,.alt td>a{-webkit-transition:.2s color;transition:.2s color}.alt.separated{border-bottom-color:#a5d7fa}.alt .h1,.alt .h2,.alt .h3,.alt .h4,.alt .h5,.alt .h6,.alt h1,.alt h2,.alt h3,.alt h4,.alt h5,.alt h6{color:#000}.alt.jumbotron .h1,.alt.jumbotron h1{color:#343434}.alt.jumbotron .h2,.alt.jumbotron .h3,.alt.jumbotron .h4,.alt.jumbotron .h5,.alt.jumbotron .h6,.alt.jumbotron h2,.alt.jumbotron h3,.alt.jumbotron h4,.alt.jumbotron h5,.alt.jumbotron h6{color:#747474}.alt .span>a:active,.alt .span>a:link,.alt .span>a:visited,.alt address>a:active,.alt address>a:link,.alt address>a:visited,.alt em>a:active,.alt em>a:link,.alt em>a:visited,.alt h1>a:active,.alt h1>a:link,.alt h1>a:visited,.alt h2>a:active,.alt h2>a:link,.alt h2>a:visited,.alt h3>a:active,.alt h3>a:link,.alt h3>a:visited,.alt h4>a:active,.alt h4>a:link,.alt h4>a:visited,.alt h5>a:active,.alt h5>a:link,.alt h5>a:visited,.alt h6>a:active,.alt h6>a:link,.alt h6>a:visited,.alt li>a:active,.alt li>a:link,.alt li>a:visited,.alt p>a:active,.alt p>a:link,.alt p>a:visited,.alt td>a:active,.alt td>a:link,.alt td>a:visited{color:#0089bc}.alt .span>a:hover,.alt address>a:hover,.alt em>a:hover,.alt h1>a:hover,.alt h2>a:hover,.alt h3>a:hover,.alt h4>a:hover,.alt h5>a:hover,.alt h6>a:hover,.alt li>a:hover,.alt p>a:hover,.alt td>a:hover{color:#005170}.alt .span>a .glyphicon.tile,.alt address>a .glyphicon.tile,.alt em>a .glyphicon.tile,.alt h1>a .glyphicon.tile,.alt h2>a .glyphicon.tile,.alt h3>a .glyphicon.tile,.alt h4>a .glyphicon.tile,.alt h5>a .glyphicon.tile,.alt h6>a .glyphicon.tile,.alt li>a .glyphicon.tile,.alt p>a .glyphicon.tile,.alt td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.alt .span>a .glyphicon.tile:active,.alt .span>a .glyphicon.tile:hover,.alt address>a .glyphicon.tile:active,.alt address>a .glyphicon.tile:hover,.alt em>a .glyphicon.tile:active,.alt em>a .glyphicon.tile:hover,.alt h1>a .glyphicon.tile:active,.alt h1>a .glyphicon.tile:hover,.alt h2>a .glyphicon.tile:active,.alt h2>a .glyphicon.tile:hover,.alt h3>a .glyphicon.tile:active,.alt h3>a .glyphicon.tile:hover,.alt h4>a .glyphicon.tile:active,.alt h4>a .glyphicon.tile:hover,.alt h5>a .glyphicon.tile:active,.alt h5>a .glyphicon.tile:hover,.alt h6>a .glyphicon.tile:active,.alt h6>a .glyphicon.tile:hover,.alt li>a .glyphicon.tile:active,.alt li>a .glyphicon.tile:hover,.alt p>a .glyphicon.tile:active,.alt p>a .glyphicon.tile:hover,.alt td>a .glyphicon.tile:active,.alt td>a .glyphicon.tile:hover{color:#4e4e4e}.alt ul.nav-sidebar>li.active>a{color:#000}.alt ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.accent .lead a,.bold .lead a,.neutral .lead a{font-weight:300}.alt ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.alt ul.nav-sidebar>li>a:hover{color:#000}.alt ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none}.alt ul.dropdown-menu>li>a:hover{color:#fff}.alt.subnav .navbar-brand,.alt.subnav .navbar-brand a{color:#000}.alt.subnav li>a{color:#aaa}.alt.subnav li>a.active{color:#000}.alt.subnav li>a:hover{color:#5b5b5b}.alt .sidebar strong,.alt.subnav .navbar-toggle{color:#000}.alt.subnav .navbar-toggle:hover{background-color:transparent}.alt.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.alt .sidebar a strong,.alt .sidebar a strong:active,.alt .sidebar a strong:link,.alt .sidebar a strong:visited{color:#0089bc}.alt .sidebar a strong:hover{color:#005170}.alt cite.bubble strong{color:#414141}.alt cite.bubble a:active,.alt cite.bubble a:link,.alt cite.bubble a:visited{color:#0089bc}.alt cite.bubble a:hover{color:#005170}.alt blockquote,.alt blockquote p,.alt blockquote ul>li{color:#747474}.bold,.bold .h1,.bold .h2,.bold .h3,.bold .h4,.bold .h5,.bold .h6,.bold h1,.bold h2,.bold h3,.bold h4,.bold h5,.bold h6,.bold.subnav .navbar-brand{color:#fff}.bold{background-color:#2d3339}.bold .span>a,.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{-webkit-transition:.2s color;transition:.2s color}.bold.separated{border-bottom-color:#0b0d0e}.bold address>a,.bold em>a,.bold h1>a,.bold h2>a,.bold h3>a,.bold h4>a,.bold h5>a,.bold h6>a,.bold li>a,.bold p>a,.bold td>a{color:#fff;text-decoration:underline}.accent .nav li>a,.accent .span>a:active,.accent .span>a:hover,.accent address>a:active,.accent address>a:hover,.accent em>a:active,.accent em>a:hover,.accent h1>a:active,.accent h1>a:hover,.accent h2>a:active,.accent h2>a:hover,.accent h3>a:active,.accent h3>a:hover,.accent h4>a:active,.accent h4>a:hover,.accent h5>a:active,.accent h5>a:hover,.accent h6>a:active,.accent h6>a:hover,.accent li>a:active,.accent li>a:hover,.accent p>a:active,.accent p>a:hover,.accent td>a:active,.accent td>a:hover,.bold address>a:hover,.bold em>a:hover,.bold h1>a:hover,.bold h2>a:hover,.bold h3>a:hover,.bold h4>a:hover,.bold h5>a:hover,.bold h6>a:hover,.bold li>a:hover,.bold p>a:hover,.bold td>a:hover,.bold.subnav .navbar-brand a{text-decoration:none}.bold.subnav li>a{color:#6c7a89}.bold.subnav li>a.active,.bold.subnav li>a:hover{color:#fff}.bold.subnav .navbar-toggle{color:#000}.accent,.accent .h1,.accent .h2,.accent .h3,.accent .h4,.accent .h5,.accent .h6,.accent h1,.accent h2,.accent h3,.accent h4,.accent h5,.accent h6,.accent.subnav .navbar-brand{color:#fff}.bold.subnav .navbar-toggle:hover{background-color:transparent}.bold.subnav .navbar-collapse{border-top-color:#000}.bold.subnav .subnav-divider{border-bottom:1px solid #2d3339}.bold .form-control{border:0!important}.accent{background-color:#00aeef}.accent .span>a,.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{-webkit-transition:.2s color;transition:.2s color}.accent.separated{border-bottom-color:#0076a3}.accent address>a,.accent em>a,.accent h1>a,.accent h2>a,.accent h3>a,.accent h4>a,.accent h5>a,.accent h6>a,.accent li>a,.accent p>a,.accent td>a{color:#fff;text-decoration:underline}.accent address>a:hover,.accent em>a:hover,.accent h1>a:hover,.accent h2>a:hover,.accent h3>a:hover,.accent h4>a:hover,.accent h5>a:hover,.accent h6>a:hover,.accent li>a:hover,.accent p>a:hover,.accent td>a:hover,.accent.subnav .navbar-brand a,.neutral .nav li>a,.neutral .span>a:active,.neutral .span>a:hover,.neutral address>a:active,.neutral address>a:hover,.neutral em>a:active,.neutral em>a:hover,.neutral h1>a:active,.neutral h1>a:hover,.neutral h2>a:active,.neutral h2>a:hover,.neutral h3>a:active,.neutral h3>a:hover,.neutral h4>a:active,.neutral h4>a:hover,.neutral h5>a:active,.neutral h5>a:hover,.neutral h6>a:active,.neutral h6>a:hover,.neutral li>a:active,.neutral li>a:hover,.neutral p>a:active,.neutral p>a:hover,.neutral td>a:active,.neutral td>a:hover,.neutral.subnav .navbar-brand a,.smart .nav li>a,.smart .span>a:active,.smart .span>a:hover,.smart address>a:active,.smart address>a:hover,.smart em>a:active,.smart em>a:hover,.smart h1>a:active,.smart h1>a:hover,.smart h2>a:active,.smart h2>a:hover,.smart h3>a:active,.smart h3>a:hover,.smart h4>a:active,.smart h4>a:hover,.smart h5>a:active,.smart h5>a:hover,.smart h6>a:active,.smart h6>a:hover,.smart li>a:active,.smart li>a:hover,.smart p>a:active,.smart p>a:hover,.smart td>a:active,.smart td>a:hover{text-decoration:none}.accent.subnav li>a{color:#7fdcff}.accent.subnav li>a.active,.accent.subnav li>a:hover{color:#fff}.accent.subnav .navbar-toggle{color:#006489}.accent.subnav .navbar-toggle:hover{background-color:transparent}.accent.subnav .navbar-collapse{border-top-color:#006489}.accent.subnav .subnav-divider{border-bottom:1px solid #00aeef}.accent .form-control{border:0!important}.neutral{background-color:#ebeff0;color:#747474}.neutral .span>a,.neutral address>a,.neutral em>a,.neutral h1>a,.neutral h2>a,.neutral h3>a,.neutral h4>a,.neutral h5>a,.neutral h6>a,.neutral li>a,.neutral p>a,.neutral td>a{-webkit-transition:.2s color;transition:.2s color}.neutral.separated{border-bottom-color:#bfcccf}.neutral .h1,.neutral .h2,.neutral .h3,.neutral .h4,.neutral .h5,.neutral .h6,.neutral h1,.neutral h2,.neutral h3,.neutral h4,.neutral h5,.neutral h6{color:#000}.neutral.jumbotron .h1,.neutral.jumbotron h1{color:#343434}.neutral.jumbotron .h2,.neutral.jumbotron .h3,.neutral.jumbotron .h4,.neutral.jumbotron .h5,.neutral.jumbotron .h6,.neutral.jumbotron h2,.neutral.jumbotron h3,.neutral.jumbotron h4,.neutral.jumbotron h5,.neutral.jumbotron h6{color:#747474}.neutral .span>a:active,.neutral .span>a:link,.neutral .span>a:visited,.neutral address>a:active,.neutral address>a:link,.neutral address>a:visited,.neutral em>a:active,.neutral em>a:link,.neutral em>a:visited,.neutral h1>a:active,.neutral h1>a:link,.neutral h1>a:visited,.neutral h2>a:active,.neutral h2>a:link,.neutral h2>a:visited,.neutral h3>a:active,.neutral h3>a:link,.neutral h3>a:visited,.neutral h4>a:active,.neutral h4>a:link,.neutral h4>a:visited,.neutral h5>a:active,.neutral h5>a:link,.neutral h5>a:visited,.neutral h6>a:active,.neutral h6>a:link,.neutral h6>a:visited,.neutral li>a:active,.neutral li>a:link,.neutral li>a:visited,.neutral p>a:active,.neutral p>a:link,.neutral p>a:visited,.neutral td>a:active,.neutral td>a:link,.neutral td>a:visited{color:#0089bc}.neutral .span>a:hover,.neutral address>a:hover,.neutral em>a:hover,.neutral h1>a:hover,.neutral h2>a:hover,.neutral h3>a:hover,.neutral h4>a:hover,.neutral h5>a:hover,.neutral h6>a:hover,.neutral li>a:hover,.neutral p>a:hover,.neutral td>a:hover{color:#005170}.neutral .span>a .glyphicon.tile,.neutral address>a .glyphicon.tile,.neutral em>a .glyphicon.tile,.neutral h1>a .glyphicon.tile,.neutral h2>a .glyphicon.tile,.neutral h3>a .glyphicon.tile,.neutral h4>a .glyphicon.tile,.neutral h5>a .glyphicon.tile,.neutral h6>a .glyphicon.tile,.neutral li>a .glyphicon.tile,.neutral p>a .glyphicon.tile,.neutral td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.neutral .span>a .glyphicon.tile:active,.neutral .span>a .glyphicon.tile:hover,.neutral address>a .glyphicon.tile:active,.neutral address>a .glyphicon.tile:hover,.neutral em>a .glyphicon.tile:active,.neutral em>a .glyphicon.tile:hover,.neutral h1>a .glyphicon.tile:active,.neutral h1>a .glyphicon.tile:hover,.neutral h2>a .glyphicon.tile:active,.neutral h2>a .glyphicon.tile:hover,.neutral h3>a .glyphicon.tile:active,.neutral h3>a .glyphicon.tile:hover,.neutral h4>a .glyphicon.tile:active,.neutral h4>a .glyphicon.tile:hover,.neutral h5>a .glyphicon.tile:active,.neutral h5>a .glyphicon.tile:hover,.neutral h6>a .glyphicon.tile:active,.neutral h6>a .glyphicon.tile:hover,.neutral li>a .glyphicon.tile:active,.neutral li>a .glyphicon.tile:hover,.neutral p>a .glyphicon.tile:active,.neutral p>a .glyphicon.tile:hover,.neutral td>a .glyphicon.tile:active,.neutral td>a .glyphicon.tile:hover{color:#4e4e4e}.neutral ul.nav-sidebar>li.active>a{color:#000}.neutral ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.neutral ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.neutral ul.nav-sidebar>li>a:hover{color:#000}.neutral ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.neutral ul.dropdown-menu>li>a:hover{color:#fff}.neutral.subnav .navbar-brand,.neutral.subnav .navbar-brand a{color:#000}.neutral.subnav li>a{color:#aaa}.neutral.subnav li>a.active{color:#000}.neutral.subnav li>a:hover{color:#5b5b5b}.neutral .sidebar strong,.neutral.subnav .navbar-toggle{color:#000}.neutral.subnav .navbar-toggle:hover{background-color:transparent}.neutral.subnav .navbar-collapse{border-top-color:#e7e6e6}.neutral.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.neutral .sidebar a strong,.neutral .sidebar a strong:active,.neutral .sidebar a strong:link,.neutral .sidebar a strong:visited{color:#0089bc}.neutral .sidebar a strong:hover{color:#005170}.neutral cite.bubble strong{color:#414141}.neutral cite.bubble a:active,.neutral cite.bubble a:link,.neutral cite.bubble a:visited{color:#0089bc}.neutral cite.bubble a:hover{color:#005170}.neutral blockquote,.neutral blockquote p,.neutral blockquote ul>li{color:#747474}.smart,.smart .h1,.smart .h2,.smart .h3,.smart .h4,.smart .h5,.smart .h6,.smart h1,.smart h2,.smart h3,.smart h4,.smart h5,.smart h6,.smart.subnav .navbar-brand{color:#fff}.smart{background-color:#2d8ec6}.smart .lead a{font-weight:300}.smart .span>a,.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{-webkit-transition:.2s color;transition:.2s color}.smart.separated{border-bottom-color:#1f6188}.smart address>a,.smart em>a,.smart h1>a,.smart h2>a,.smart h3>a,.smart h4>a,.smart h5>a,.smart h6>a,.smart li>a,.smart p>a,.smart td>a{color:#fff;text-decoration:underline}.smart address>a:hover,.smart em>a:hover,.smart h1>a:hover,.smart h2>a:hover,.smart h3>a:hover,.smart h4>a:hover,.smart h5>a:hover,.smart h6>a:hover,.smart li>a:hover,.smart p>a:hover,.smart td>a:hover,.smart.subnav .navbar-brand a,div.logo-tile .nav li>a,div.logo-tile .span>a:active,div.logo-tile .span>a:hover,div.logo-tile address>a:active,div.logo-tile address>a:hover,div.logo-tile em>a:active,div.logo-tile em>a:hover,div.logo-tile h1>a:active,div.logo-tile h1>a:hover,div.logo-tile h2>a:active,div.logo-tile h2>a:hover,div.logo-tile h3>a:active,div.logo-tile h3>a:hover,div.logo-tile h4>a:active,div.logo-tile h4>a:hover,div.logo-tile h5>a:active,div.logo-tile h5>a:hover,div.logo-tile h6>a:active,div.logo-tile h6>a:hover,div.logo-tile li>a:active,div.logo-tile li>a:hover,div.logo-tile p>a:active,div.logo-tile p>a:hover,div.logo-tile td>a:active,div.logo-tile td>a:hover,div.logo-tile.dark .nav li>a,div.logo-tile.dark .span>a:active,div.logo-tile.dark .span>a:hover,div.logo-tile.dark address>a:active,div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:active,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:active,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:active,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:active,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:active,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:active,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:active,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:active,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:active,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:active,div.logo-tile.dark td>a:hover,div.logo-tile.subnav .navbar-brand a{text-decoration:none}.smart.subnav li>a{color:#9acbe8}.smart.subnav li>a.active,.smart.subnav li>a:hover{color:#fff}.smart.subnav .navbar-toggle{color:#1a5273}.smart.subnav .navbar-toggle:hover{background-color:transparent}.smart.subnav .navbar-collapse{border-top-color:#1a5273}.smart.subnav .subnav-divider{border-bottom:1px solid #2d8ec6}.smart .form-control{border:0!important}.add-ons-log-in{margin-top:16px}.docs-list{list-style:none;padding-left:20px}.docs-list>li{line-height:30px}.docs-list>li .glyphicon{font-size:18px}#footer-copyright{font-size:19px;line-height:39px}@media screen and (min-width:768px){#footer-copyright{padding:0 50px;font-size:14px;line-height:14px}#footer-copyright .col{width:19.5%;display:inline-block;vertical-align:middle}#footer-copyright .col:first-child{margin-left:20%}}@media screen and (min-width:992px){#footer-copyright{padding:0}}.footer-col{min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:768px){.footer-col{float:left;width:16.66666667%}}.footer-col:not(:first-child){margin-left:4.166666667%}.footer-col>h5,.footer-col>h5>a{line-height:25px;color:#fff}@media screen and (min-width:768px){.footer-col>h5,.footer-col>h5>a{width:130px;margin:0 auto;font-size:16px}}.footer-col ul{margin-bottom:30px!important;padding-left:0;line-height:25px;list-style:none}@media screen and (min-width:768px){.footer-col ul{width:130px;margin:0 auto}}.footer-col ul>li{padding:7px 0;font-size:19px;white-space:nowrap}.footer-col ul>li:first-child{padding-top:0}.footer-col ul>li:last-child{padding-bottom:0}.footer-col ul>li>ul{margin-top:15px!important}.footer-col ul>li>ul>li{padding:7px 0}.footer-col ul>li .fa{font-size:17px}@media screen and (min-width:768px){.footer-col ul>li>ul>li{padding:1px 0}.footer-col ul>li{font-size:14px;padding:0}}div.landing-tile{padding:30px;margin:15px 0;background-color:#ebeff0}div.landing-tile img{width:100%;max-width:300px}div.landing-tile p.description{margin-bottom:30px}@media screen and (min-width:768px){div.landing-tile img{width:300px}div.landing-tile p.description{margin-bottom:0;min-height:150px}}@media screen and (min-width:992px){div.landing-tile p.description{min-height:120px}}div.landing-tile p.cta{text-align:center;margin-bottom:0}div.landing-tile .btn{-webkit-transition:.2s all;transition:.2s all}.legal{font-weight:800}.legal address,.legal>li>ol>li,.legal>li>p{font-weight:400}.legal>li{padding:10px 0}.legal>li>ol>li{padding:5px 0}img.logo-img{max-height:200px}div.logo-tile{min-height:360px;padding:30px;margin:15px 0;background-color:#ebeff0;color:#747474}div.logo-tile.standard{padding:61px 30px}div.logo-tile .lead a{font-weight:300}div.logo-tile .span>a,div.logo-tile address>a,div.logo-tile em>a,div.logo-tile h1>a,div.logo-tile h2>a,div.logo-tile h3>a,div.logo-tile h4>a,div.logo-tile h5>a,div.logo-tile h6>a,div.logo-tile li>a,div.logo-tile p>a,div.logo-tile td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.separated{border-bottom-color:#bfcccf}div.logo-tile .h1,div.logo-tile .h2,div.logo-tile .h3,div.logo-tile .h4,div.logo-tile .h5,div.logo-tile .h6,div.logo-tile h1,div.logo-tile h2,div.logo-tile h3,div.logo-tile h4,div.logo-tile h5,div.logo-tile h6{color:#000}div.logo-tile.jumbotron .h1,div.logo-tile.jumbotron h1{color:#343434}div.logo-tile.jumbotron .h2,div.logo-tile.jumbotron .h3,div.logo-tile.jumbotron .h4,div.logo-tile.jumbotron .h5,div.logo-tile.jumbotron .h6,div.logo-tile.jumbotron h2,div.logo-tile.jumbotron h3,div.logo-tile.jumbotron h4,div.logo-tile.jumbotron h5,div.logo-tile.jumbotron h6{color:#747474}div.logo-tile .span>a:active,div.logo-tile .span>a:link,div.logo-tile .span>a:visited,div.logo-tile address>a:active,div.logo-tile address>a:link,div.logo-tile address>a:visited,div.logo-tile em>a:active,div.logo-tile em>a:link,div.logo-tile em>a:visited,div.logo-tile h1>a:active,div.logo-tile h1>a:link,div.logo-tile h1>a:visited,div.logo-tile h2>a:active,div.logo-tile h2>a:link,div.logo-tile h2>a:visited,div.logo-tile h3>a:active,div.logo-tile h3>a:link,div.logo-tile h3>a:visited,div.logo-tile h4>a:active,div.logo-tile h4>a:link,div.logo-tile h4>a:visited,div.logo-tile h5>a:active,div.logo-tile h5>a:link,div.logo-tile h5>a:visited,div.logo-tile h6>a:active,div.logo-tile h6>a:link,div.logo-tile h6>a:visited,div.logo-tile li>a:active,div.logo-tile li>a:link,div.logo-tile li>a:visited,div.logo-tile p>a:active,div.logo-tile p>a:link,div.logo-tile p>a:visited,div.logo-tile td>a:active,div.logo-tile td>a:link,div.logo-tile td>a:visited{color:#0089bc}div.logo-tile .span>a:hover,div.logo-tile address>a:hover,div.logo-tile em>a:hover,div.logo-tile h1>a:hover,div.logo-tile h2>a:hover,div.logo-tile h3>a:hover,div.logo-tile h4>a:hover,div.logo-tile h5>a:hover,div.logo-tile h6>a:hover,div.logo-tile li>a:hover,div.logo-tile p>a:hover,div.logo-tile td>a:hover{color:#005170}div.logo-tile .span>a .glyphicon.tile,div.logo-tile address>a .glyphicon.tile,div.logo-tile em>a .glyphicon.tile,div.logo-tile h1>a .glyphicon.tile,div.logo-tile h2>a .glyphicon.tile,div.logo-tile h3>a .glyphicon.tile,div.logo-tile h4>a .glyphicon.tile,div.logo-tile h5>a .glyphicon.tile,div.logo-tile h6>a .glyphicon.tile,div.logo-tile li>a .glyphicon.tile,div.logo-tile p>a .glyphicon.tile,div.logo-tile td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}div.logo-tile .span>a .glyphicon.tile:active,div.logo-tile .span>a .glyphicon.tile:hover,div.logo-tile address>a .glyphicon.tile:active,div.logo-tile address>a .glyphicon.tile:hover,div.logo-tile em>a .glyphicon.tile:active,div.logo-tile em>a .glyphicon.tile:hover,div.logo-tile h1>a .glyphicon.tile:active,div.logo-tile h1>a .glyphicon.tile:hover,div.logo-tile h2>a .glyphicon.tile:active,div.logo-tile h2>a .glyphicon.tile:hover,div.logo-tile h3>a .glyphicon.tile:active,div.logo-tile h3>a .glyphicon.tile:hover,div.logo-tile h4>a .glyphicon.tile:active,div.logo-tile h4>a .glyphicon.tile:hover,div.logo-tile h5>a .glyphicon.tile:active,div.logo-tile h5>a .glyphicon.tile:hover,div.logo-tile h6>a .glyphicon.tile:active,div.logo-tile h6>a .glyphicon.tile:hover,div.logo-tile li>a .glyphicon.tile:active,div.logo-tile li>a .glyphicon.tile:hover,div.logo-tile p>a .glyphicon.tile:active,div.logo-tile p>a .glyphicon.tile:hover,div.logo-tile td>a .glyphicon.tile:active,div.logo-tile td>a .glyphicon.tile:hover{color:#4e4e4e}div.logo-tile ul.nav-sidebar>li.active>a{color:#000}div.logo-tile ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}#pre-footer,div.logo-tile.dark .lead a{font-weight:300}div.logo-tile ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}div.logo-tile ul.nav-sidebar>li>a:hover{color:#000}div.logo-tile ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}div.logo-tile ul.dropdown-menu>li>a:hover{color:#fff}div.logo-tile.subnav .navbar-brand,div.logo-tile.subnav .navbar-brand a{color:#000}div.logo-tile.subnav li>a{color:#aaa}div.logo-tile.subnav li>a.active{color:#000}div.logo-tile.subnav li>a:hover{color:#5b5b5b}div.logo-tile .sidebar strong,div.logo-tile.subnav .navbar-toggle{color:#000}div.logo-tile.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.subnav .navbar-collapse{border-top-color:#e7e6e6}div.logo-tile.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}div.logo-tile .sidebar a strong,div.logo-tile .sidebar a strong:active,div.logo-tile .sidebar a strong:link,div.logo-tile .sidebar a strong:visited{color:#0089bc}div.logo-tile .sidebar a strong:hover{color:#005170}div.logo-tile cite.bubble strong{color:#414141}div.logo-tile cite.bubble a:active,div.logo-tile cite.bubble a:link,div.logo-tile cite.bubble a:visited{color:#0089bc}div.logo-tile cite.bubble a:hover{color:#005170}div.logo-tile blockquote,div.logo-tile blockquote p,div.logo-tile blockquote ul>li{color:#747474}div.logo-tile.dark,div.logo-tile.dark .h1,div.logo-tile.dark .h2,div.logo-tile.dark .h3,div.logo-tile.dark .h4,div.logo-tile.dark .h5,div.logo-tile.dark .h6,div.logo-tile.dark h1,div.logo-tile.dark h2,div.logo-tile.dark h3,div.logo-tile.dark h4,div.logo-tile.dark h5,div.logo-tile.dark h6,div.logo-tile.dark.subnav .navbar-brand{color:#fff}div.logo-tile.dark{background-color:#2d3339}div.logo-tile.dark .span>a,div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{-webkit-transition:.2s color;transition:.2s color}div.logo-tile.dark.separated{border-bottom-color:#0b0d0e}div.logo-tile.dark address>a,div.logo-tile.dark em>a,div.logo-tile.dark h1>a,div.logo-tile.dark h2>a,div.logo-tile.dark h3>a,div.logo-tile.dark h4>a,div.logo-tile.dark h5>a,div.logo-tile.dark h6>a,div.logo-tile.dark li>a,div.logo-tile.dark p>a,div.logo-tile.dark td>a{color:#fff;text-decoration:underline}div.logo-tile.dark address>a:hover,div.logo-tile.dark em>a:hover,div.logo-tile.dark h1>a:hover,div.logo-tile.dark h2>a:hover,div.logo-tile.dark h3>a:hover,div.logo-tile.dark h4>a:hover,div.logo-tile.dark h5>a:hover,div.logo-tile.dark h6>a:hover,div.logo-tile.dark li>a:hover,div.logo-tile.dark p>a:hover,div.logo-tile.dark td>a:hover,div.logo-tile.dark.subnav .navbar-brand a{text-decoration:none}div.logo-tile.dark.subnav li>a{color:#6c7a89}div.logo-tile.dark.subnav li>a.active,div.logo-tile.dark.subnav li>a:hover{color:#fff}div.logo-tile.dark.subnav .navbar-toggle{color:#000}div.logo-tile.dark.subnav .navbar-toggle:hover{background-color:transparent}div.logo-tile.dark.subnav .navbar-collapse{border-top-color:#000}div.logo-tile.dark.subnav .subnav-divider{border-bottom:1px solid #2d3339}div.logo-tile.dark .form-control{border:0!important}div.logo-tile img{display:block;margin:0 auto}div.logo-tile p{margin-top:30px;margin-bottom:0;text-align:center}#main-nav{z-index:9002}#main-nav span{color:#e6e6e6}#navbar-logo{padding:6px 0 6px 15px}.mobile-badge{display:block}.mobile-badge-apple{margin-left:auto;margin-right:0}#pre-footer{padding:30px 0;background-color:#222;color:#fff;text-align:center;font-family:Lato,sans-serif;font-size:21px}#pre-footer a{-webkit-transition:.2s all;transition:.2s all;color:#a6a6a6}#pre-footer a:active,#pre-footer a:hover{color:#f2f2f2;text-decoration:none}@media screen and (min-width:768px){#navbar-logo{padding-left:0;padding-right:0}#pre-footer span{font-size:24px;line-height:38px}}@media screen and (min-width:992px){#pre-footer span{font-size:30px}}.resumator-basic-widget .resumator-jobs-text>p{margin-bottom:30px}.resumator-basic-widget .resumator-jobs-text li,.resumator-basic-widget .resumator-jobs-text>p{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6em;color:#747474}.btn,.resumator-basic-widget .resumator-job-title,div#os-tabs span{font-family:Lato,sans-serif}.resumator-basic-widget .resumator-jobs-text strong{color:#414141}.resumator-basic-widget .resumator-job-title{line-height:1.1;margin-top:11px;margin-bottom:11px;font-size:16px;font-size:21px;color:#000;padding-top:30px!important;font-weight:400;border-top-color:#e7e6e6}.resumator-basic-widget .resumator-job-title .small,.resumator-basic-widget .resumator-job-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.resumator-basic-widget .resumator-job-title+.lead{padding-top:10px}.resumator-basic-widget .resumator-job-view-details{margin-bottom:30px}.resumator-basic-widget .resumator-job-link{margin-bottom:30px!important;font-size:16px}.resumator-basic-widget .resumator-job-link:active,.resumator-basic-widget .resumator-job-link:link,.resumator-basic-widget .resumator-job-link:visited{color:#0089bc}.resumator-basic-widget .resumator-job-link:hover{color:#005170}.resumator-basic-widget input[type=button]{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.42857143;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:Lato,sans-serif;font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all;color:#fff!important;text-decoration:none!important;background-color:#3BB878}.resumator-basic-widget input[type=button].active.focus,.resumator-basic-widget input[type=button].active:focus,.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:active.focus,.resumator-basic-widget input[type=button]:active:focus,.resumator-basic-widget input[type=button]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.resumator-basic-widget input[type=button].focus,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{color:#333;text-decoration:none}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button][disabled],fieldset[disabled] .resumator-basic-widget input[type=button]{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active,.resumator-basic-widget input[type=button]:focus,.resumator-basic-widget input[type=button]:hover{-webkit-box-shadow:none;box-shadow:none;text-decoration:none;color:#fff;background-color:#35a56b;outline:0}.resumator-basic-widget input[type=button].active,.resumator-basic-widget input[type=button]:active{background-image:none;background-color:#2f915f}.resumator-basic-widget input[type=button].disabled,.resumator-basic-widget input[type=button].disabled.active,.resumator-basic-widget input[type=button].disabled:active,.resumator-basic-widget input[type=button].disabled:focus,.resumator-basic-widget input[type=button].disabled:hover,.resumator-basic-widget input[type=button][disabled],.resumator-basic-widget input[type=button][disabled].active,.resumator-basic-widget input[type=button][disabled]:active,.resumator-basic-widget input[type=button][disabled]:focus,.resumator-basic-widget input[type=button][disabled]:hover,fieldset[disabled] .resumator-basic-widget input[type=button],fieldset[disabled] .resumator-basic-widget input[type=button].active,fieldset[disabled] .resumator-basic-widget input[type=button]:active,fieldset[disabled] .resumator-basic-widget input[type=button]:focus,fieldset[disabled] .resumator-basic-widget input[type=button]:hover{color:#e6e6e6;background-color:#3BB878}.resumator-basic-widget input[type=button] .caret,.resumator-basic-widget input[type=button] caret-right{border-top-color:#fff}.resumator-basic-widget input[type=button].btn-border{border-style:solid;border-color:#2f915f;border-width:0 0 2px}.sidebar-modal-footer-close{text-align:center}.sidebar-modal-footer-close a{display:block}#sidebar-modal .modal-header *{line-height:20px}.t{display:none}.toc-bar{text-align:center}@media screen and (min-width:992px){.toc-bar{display:none}}#___gcse_0{margin-top:60px}.h3{padding-top:40px}.row-content:first-of-type .h3:nth-child(1){padding-top:0}#search-results{margin-top:40px}.btn{font-weight:400;border:0;-webkit-transition:.2s all;transition:.2s all}.btn.active,.btn:active,.btn:focus,.btn:hover{-webkit-box-shadow:none;box-shadow:none;outline:0;text-decoration:none}.btn-accent,.btn-action,.btn-action-alt,.btn-blue,.btn-funky,.btn-green,.btn-light-gray,.btn-orange,.btn-sand,.btn-standard,.btn-subdued,.btn-white{text-decoration:none!important}div#os-tabs .btn{border:1px solid #dadada;padding:10px;width:200px;background-color:#fff;color:#000}.btn-accent.btn-border,.btn-action-alt.btn-border,.btn-action.btn-border,.btn-blue.btn-border,.btn-funky.btn-border,.btn-green.btn-border,.btn-light-gray.btn-border,.btn-orange.btn-border,.btn-sand.btn-border,.btn-standard.btn-border,.btn-subdued.btn-border,.btn-white.btn-border{border-style:solid;border-width:0 0 2px}.algolia-autocomplete,.algolia-autocomplete .aa-hint,.algolia-autocomplete .aa-input,.btn-full,.hit-body,.search-form{width:100%}div#os-tabs .btn.current{outline:0;border-color:#9ecaed;-webkit-box-shadow:0 0 10px #9ecaed;box-shadow:0 0 10px #9ecaed;max-height:inherit}.linuxinstall,.macinstall,.windowsinstall{font-size:1.08rem}.btn-half-circle{border-bottom-left-radius:30px;border-bottom-right-radius:30px;min-width:50px;max-width:50px}.btn-white{color:#fff!important;background-color:#3BB878}.btn-white.active,.btn-white:active,.btn-white:focus,.btn-white:hover{color:#fff;background-color:#35a56b;outline:0}.btn-white.active,.btn-white:active{background-color:#2f915f}.btn-white.disabled,.btn-white.disabled.active,.btn-white.disabled:active,.btn-white.disabled:focus,.btn-white.disabled:hover,.btn-white[disabled],.btn-white[disabled].active,.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,fieldset[disabled] .btn-white,fieldset[disabled] .btn-white.active,fieldset[disabled] .btn-white:active,fieldset[disabled] .btn-white:focus,fieldset[disabled] .btn-white:hover{color:#e6e6e6;background-color:#3BB878}.btn-white .caret,.btn-white caret-right{border-top-color:#fff}.btn-white.btn-border{border-color:#2f915f}.btn-green{color:#fff!important;background-color:#3BB878}.btn-green.active,.btn-green:active,.btn-green:focus,.btn-green:hover{color:#fff;background-color:#35a56b;outline:0}.btn-green.active,.btn-green:active{background-color:#2f915f}.btn-green.disabled,.btn-green.disabled.active,.btn-green.disabled:active,.btn-green.disabled:focus,.btn-green.disabled:hover,.btn-green[disabled],.btn-green[disabled].active,.btn-green[disabled]:active,.btn-green[disabled]:focus,.btn-green[disabled]:hover,fieldset[disabled] .btn-green,fieldset[disabled] .btn-green.active,fieldset[disabled] .btn-green:active,fieldset[disabled] .btn-green:focus,fieldset[disabled] .btn-green:hover{color:#e6e6e6;background-color:#3BB878}.btn-green .caret,.btn-green caret-right{border-top-color:#fff}.btn-green.btn-border{border-color:#2f915f}.btn-funky{color:#fff!important;background-color:#c67fcf}.btn-funky.active,.btn-funky:active,.btn-funky:focus,.btn-funky:hover{color:#fff;background-color:#be6cc8;outline:0}.btn-funky.active,.btn-funky:active{background-color:#b55ac1}.btn-funky.disabled,.btn-funky.disabled.active,.btn-funky.disabled:active,.btn-funky.disabled:focus,.btn-funky.disabled:hover,.btn-funky[disabled],.btn-funky[disabled].active,.btn-funky[disabled]:active,.btn-funky[disabled]:focus,.btn-funky[disabled]:hover,fieldset[disabled] .btn-funky,fieldset[disabled] .btn-funky.active,fieldset[disabled] .btn-funky:active,fieldset[disabled] .btn-funky:focus,fieldset[disabled] .btn-funky:hover{color:#e6e6e6;background-color:#c67fcf}.btn-funky .caret,.btn-funky caret-right{border-top-color:#fff}.btn-funky.btn-border{border-color:#b55ac1}.btn-blue{color:#fff!important;background-color:#2d8ec6}.btn-blue.active,.btn-blue:active,.btn-blue:focus,.btn-blue:hover{color:#fff;background-color:#287fb1;outline:0}.btn-blue.active,.btn-blue:active{background-color:#24709c}.btn-blue.disabled,.btn-blue.disabled.active,.btn-blue.disabled:active,.btn-blue.disabled:focus,.btn-blue.disabled:hover,.btn-blue[disabled],.btn-blue[disabled].active,.btn-blue[disabled]:active,.btn-blue[disabled]:focus,.btn-blue[disabled]:hover,fieldset[disabled] .btn-blue,fieldset[disabled] .btn-blue.active,fieldset[disabled] .btn-blue:active,fieldset[disabled] .btn-blue:focus,fieldset[disabled] .btn-blue:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-blue .caret,.btn-blue caret-right{border-top-color:#fff}.btn-blue.btn-border{border-color:#24709c}.btn-light-gray{color:#fff!important;background-color:#3BB878}.btn-light-gray.active,.btn-light-gray:active,.btn-light-gray:focus,.btn-light-gray:hover{color:#fff;background-color:#35a56b;outline:0}.btn-light-gray.active,.btn-light-gray:active{background-color:#2f915f}.btn-light-gray.disabled,.btn-light-gray.disabled.active,.btn-light-gray.disabled:active,.btn-light-gray.disabled:focus,.btn-light-gray.disabled:hover,.btn-light-gray[disabled],.btn-light-gray[disabled].active,.btn-light-gray[disabled]:active,.btn-light-gray[disabled]:focus,.btn-light-gray[disabled]:hover,fieldset[disabled] .btn-light-gray,fieldset[disabled] .btn-light-gray.active,fieldset[disabled] .btn-light-gray:active,fieldset[disabled] .btn-light-gray:focus,fieldset[disabled] .btn-light-gray:hover{color:#e6e6e6;background-color:#3BB878}.btn-light-gray .caret,.btn-light-gray caret-right{border-top-color:#fff}.btn-light-gray.btn-border{border-color:#2f915f}.btn-sand{color:#fff!important;background-color:#3BB878}.btn-sand.active,.btn-sand:active,.btn-sand:focus,.btn-sand:hover{color:#fff;background-color:#35a56b;outline:0}.btn-sand.active,.btn-sand:active{background-color:#2f915f}.btn-sand.disabled,.btn-sand.disabled.active,.btn-sand.disabled:active,.btn-sand.disabled:focus,.btn-sand.disabled:hover,.btn-sand[disabled],.btn-sand[disabled].active,.btn-sand[disabled]:active,.btn-sand[disabled]:focus,.btn-sand[disabled]:hover,fieldset[disabled] .btn-sand,fieldset[disabled] .btn-sand.active,fieldset[disabled] .btn-sand:active,fieldset[disabled] .btn-sand:focus,fieldset[disabled] .btn-sand:hover{color:#e6e6e6;background-color:#3BB878}.btn-sand .caret,.btn-sand caret-right{border-top-color:#fff}.btn-sand.btn-border{border-color:#2f915f}.btn-brown{color:#fff!important;text-decoration:none!important;background-color:#C2BA7A}.btn-brown.active,.btn-brown:active,.btn-brown:focus,.btn-brown:hover{color:#fff;background-color:#bab169;outline:0}.btn-brown.active,.btn-brown:active{background-color:#b2a857}.btn-brown.disabled,.btn-brown.disabled.active,.btn-brown.disabled:active,.btn-brown.disabled:focus,.btn-brown.disabled:hover,.btn-brown[disabled],.btn-brown[disabled].active,.btn-brown[disabled]:active,.btn-brown[disabled]:focus,.btn-brown[disabled]:hover,fieldset[disabled] .btn-brown,fieldset[disabled] .btn-brown.active,fieldset[disabled] .btn-brown:active,fieldset[disabled] .btn-brown:focus,fieldset[disabled] .btn-brown:hover{color:#e6e6e6;background-color:#C2BA7A}.btn-brown .caret,.btn-brown caret-right{border-top-color:#fff}.btn-brown.btn-border{border-style:solid;border-color:#b2a857;border-width:0 0 2px}.btn-orange{color:#fff!important;background-color:#FFAC5F}.btn-orange.active,.btn-orange:active,.btn-orange:focus,.btn-orange:hover{color:#fff;background-color:#ff9f45;outline:0}.btn-orange.active,.btn-orange:active{background-color:#ff922c}.btn-orange.disabled,.btn-orange.disabled.active,.btn-orange.disabled:active,.btn-orange.disabled:focus,.btn-orange.disabled:hover,.btn-orange[disabled],.btn-orange[disabled].active,.btn-orange[disabled]:active,.btn-orange[disabled]:focus,.btn-orange[disabled]:hover,fieldset[disabled] .btn-orange,fieldset[disabled] .btn-orange.active,fieldset[disabled] .btn-orange:active,fieldset[disabled] .btn-orange:focus,fieldset[disabled] .btn-orange:hover{color:#e6e6e6;background-color:#FFAC5F}.btn-orange .caret,.btn-orange caret-right{border-top-color:#fff}.btn-orange.btn-border{border-color:#ff922c}.btn-action{color:#fff!important;background-color:#3BB878}.btn-action.active,.btn-action:active,.btn-action:focus,.btn-action:hover{color:#fff;background-color:#35a56b;outline:0}.btn-action.active,.btn-action:active{background-color:#2f915f}.btn-action.disabled,.btn-action.disabled.active,.btn-action.disabled:active,.btn-action.disabled:focus,.btn-action.disabled:hover,.btn-action[disabled],.btn-action[disabled].active,.btn-action[disabled]:active,.btn-action[disabled]:focus,.btn-action[disabled]:hover,fieldset[disabled] .btn-action,fieldset[disabled] .btn-action.active,fieldset[disabled] .btn-action:active,fieldset[disabled] .btn-action:focus,fieldset[disabled] .btn-action:hover{color:#e6e6e6;background-color:#3BB878}.btn-action .caret,.btn-action caret-right{border-top-color:#fff}.btn-action.btn-border{border-color:#2f915f}.btn-action-alt{color:#000!important;background-color:#fff}.btn-action-alt.active,.btn-action-alt:active,.btn-action-alt:focus,.btn-action-alt:hover{color:#000;background-color:#f2f2f2;outline:0}.btn-action-alt.active,.btn-action-alt:active{background-color:#e6e6e6}.btn-action-alt.disabled,.btn-action-alt.disabled.active,.btn-action-alt.disabled:active,.btn-action-alt.disabled:focus,.btn-action-alt.disabled:hover,.btn-action-alt[disabled],.btn-action-alt[disabled].active,.btn-action-alt[disabled]:active,.btn-action-alt[disabled]:focus,.btn-action-alt[disabled]:hover,fieldset[disabled] .btn-action-alt,fieldset[disabled] .btn-action-alt.active,fieldset[disabled] .btn-action-alt:active,fieldset[disabled] .btn-action-alt:focus,fieldset[disabled] .btn-action-alt:hover{color:#000;background-color:#fff}.btn-action-alt .caret,.btn-action-alt caret-right{border-top-color:#000}.btn-action-alt.btn-border{border-color:#e6e6e6}.btn-accent{color:#fff!important;background-color:#00aeef}.btn-accent.active,.btn-accent:active,.btn-accent:focus,.btn-accent:hover{color:#fff;background-color:#009bd6;outline:0}.btn-accent.active,.btn-accent:active{background-color:#0089bc}.btn-accent.disabled,.btn-accent.disabled.active,.btn-accent.disabled:active,.btn-accent.disabled:focus,.btn-accent.disabled:hover,.btn-accent[disabled],.btn-accent[disabled].active,.btn-accent[disabled]:active,.btn-accent[disabled]:focus,.btn-accent[disabled]:hover,fieldset[disabled] .btn-accent,fieldset[disabled] .btn-accent.active,fieldset[disabled] .btn-accent:active,fieldset[disabled] .btn-accent:focus,fieldset[disabled] .btn-accent:hover{color:#e6e6e6;background-color:#00aeef}.btn-accent .caret,.btn-accent caret-right{border-top-color:#fff}.btn-accent.btn-border{border-color:#0089bc}.btn-standard{color:#fff!important;background-color:#2d8ec6}.btn-standard.active,.btn-standard:active,.btn-standard:focus,.btn-standard:hover{color:#fff;background-color:#287fb1;outline:0}.btn-standard.active,.btn-standard:active{background-color:#24709c}.btn-standard.disabled,.btn-standard.disabled.active,.btn-standard.disabled:active,.btn-standard.disabled:focus,.btn-standard.disabled:hover,.btn-standard[disabled],.btn-standard[disabled].active,.btn-standard[disabled]:active,.btn-standard[disabled]:focus,.btn-standard[disabled]:hover,fieldset[disabled] .btn-standard,fieldset[disabled] .btn-standard.active,fieldset[disabled] .btn-standard:active,fieldset[disabled] .btn-standard:focus,fieldset[disabled] .btn-standard:hover{color:#e6e6e6;background-color:#2d8ec6}.btn-standard .caret,.btn-standard caret-right{border-top-color:#fff}.btn-standard.btn-border{border-color:#24709c}.btn-subdued{color:#000!important;background-color:#eee}.btn-subdued.active,.btn-subdued:active,.btn-subdued:focus,.btn-subdued:hover{color:#000;background-color:#e2e2e2;outline:0}.btn-subdued.active,.btn-subdued:active{background-color:#d5d5d5}.btn-subdued.disabled,.btn-subdued.disabled.active,.btn-subdued.disabled:active,.btn-subdued.disabled:focus,.btn-subdued.disabled:hover,.btn-subdued[disabled],.btn-subdued[disabled].active,.btn-subdued[disabled]:active,.btn-subdued[disabled]:focus,.btn-subdued[disabled]:hover,fieldset[disabled] .btn-subdued,fieldset[disabled] .btn-subdued.active,fieldset[disabled] .btn-subdued:active,fieldset[disabled] .btn-subdued:focus,fieldset[disabled] .btn-subdued:hover{color:#000;background-color:#eee}.btn-subdued .caret,.btn-subdued caret-right{border-top-color:#000}.btn-subdued.btn-border{border-color:#d5d5d5}li.list-group-item{padding:0}#ds-search-modal{margin-top:65px;z-index:9999}#ds-search-modal a{display:block;padding:10px 15px}#ds-search-modal a:active,#ds-search-modal a:link,#ds-search-modal a:visited{color:#0089bc}#ds-search-modal a:hover{color:#005170}#ds-search-input{padding:3px;border:1px solid #E4E4E4;border-radius:6px;background-color:#fff}#ds-search-input input{border:0;-webkit-box-shadow:none;box-shadow:none}#ds-search-input button{margin:2px 0 0;background:0 0;-webkit-box-shadow:none;box-shadow:none;border:0;color:#666;padding:0 8px 0 10px;border-left:solid 1px #ccc}#ds-search-input button:hover{border:0;-webkit-box-shadow:none;box-shadow:none;border-left:solid 1px #ccc}#ds-search-input .glyphicon-search{font-size:23px}#ds-search-input ul li:hover{background-color:#e6e6e6}.search-deprecated{font-size:9px;background-color:#FFAC5F;height:43px;color:#fff;border-radius:3px;padding:4px;margin-left:5px;vertical-align:middle}.hits,.search-icon{position:absolute;z-index:10}.search-box{padding-left:35px}.search-icon{top:.85em;left:.85em}.hits{top:50px;left:0}.hit-body{background:#fff;color:#747474;border:.5px solid #e7e6e6;padding:1em}.hit-body:hover{background:#edf7fe;color:#fff}.hit-body a,.hit-body a:hover{color:#747474;text-decoration:none}.hit-body a{display:inline-block}.algolia-autocomplete .aa-hint{color:#999}.algolia-autocomplete .aa-dropdown-menu{width:100%;background-color:#fff;border:1px solid #cecccc;border-top:none}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion{cursor:pointer;padding:10px 12px}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor{background-color:#edf7fe;color:#343434}.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em{font-weight:700;font-style:normal}.chroma .ge,.chroma .sh{font-style:italic}.library-article-blurb{padding-top:15px;padding-bottom:15px}.library-section-app{padding-top:30px}.library-breadcrumb-search{padding:20px 15px 55px}#library-main-search{margin-top:20px;height:45px}#library-main-search button,#library-main-search input{height:42px}.library-breadcrumb{background-color:#fff;padding:30px 0 0}@media screen and (min-width:768px){.library-breadcrumb{padding:30px 0 60px}}#library-search-status+.lead,.library-search-result-title+.lead{padding-top:10px}.library-breadcrumb>li{display:block}@media screen and (min-width:768px){.library-breadcrumb>li{display:inline-block}div.library-tile{min-height:220px}}.library-breadcrumb>li+li:before{content:"\00BB\00a0";color:#9a9a9a}.library-breadcrumb>.active{color:#9a9a9a}.library-spinner{width:60px;height:60px;margin:0 auto;position:relative;border-left:3px solid #eee;border-right:3px solid #eee;border-bottom:3px solid #eee;border-top:3px solid #555;border-radius:100%;-webkit-animation:rotation .4s infinite ease-in-out;animation:rotation .4s infinite ease-in-out}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.library-search-result{margin-bottom:60px}.library-search-result:last-child{margin-bottom:0}#library-search-status,.library-search-result-title{margin-top:11px;margin-bottom:11px;font-weight:400;font-family:Lato,sans-serif}.library-search-result small{display:block}.library-search-result-title{line-height:1.1;color:inherit;font-size:20px;font-size:25px}.library-search-result-title .small,.library-search-result-title small{font-weight:400;line-height:1;color:#777;font-size:75%}.library-search-result-desc{color:#9a9a9a}#library-search-status{line-height:1.1;color:inherit;font-size:16px;font-size:21px;text-align:center}#library-search-status .small,#library-search-status small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile p,div.library-tile.active p,div.library-tile:active p,div.library-tile:focus p,div.library-tile:hover p{color:#747474}.library-pager li{display:none}#library-page-num{display:block;padding-top:10px}.library-categories-row{margin-left:-15px;margin-right:-15px;margin-top:60px}.library-category-articles{padding-left:20px}.library-category-articles+.library-category-title{margin-top:60px}.library-category-title{padding-bottom:10px;border-bottom:1px solid #e7e6e6}div.library-tile{background-color:#ebeff0;padding:30px;margin-bottom:30px}div.library-tile.active,div.library-tile:active,div.library-tile:focus,div.library-tile:hover{background-color:#edf7fe}div.library-tile h2.tile-title{color:#000}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:14px;font-size:19px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}@media screen and (min-width:992px){.library-category-title{width:80%}div.library-tile .tile-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;margin-bottom:11px;font-size:20px;font-size:25px;font-weight:400}div.library-tile .tile-title .small,div.library-tile .tile-title small{font-weight:400;line-height:1;color:#777;font-size:75%}div.library-tile .tile-title+.lead{padding-top:10px}}@media screen and (min-width:1200px){.first-section .container{max-width:1170px}}#article-body{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;color:#333}@media screen and (min-width:768px){#article-body{padding-bottom:60px}}#article-body li{font-size:17px;font-size:1.08rem}#article-body .h1,#article-body .h2,#article-body .h3,#article-body .h4,#article-body .h5,#article-body .h6,#article-body h1,#article-body h2,#article-body h3,#article-body h4,#article-body h5,#article-body h6{word-wrap:break-word;margin-top:3.125rem}#article-body .h1+.h1,#article-body .h1+.h2,#article-body .h1+.h3,#article-body .h1+.h4,#article-body .h1+.h5,#article-body .h1+.h6,#article-body .h1+h1,#article-body .h1+h2,#article-body .h1+h3,#article-body .h1+h4,#article-body .h1+h5,#article-body .h1+h6,#article-body .h2+.h1,#article-body .h2+.h2,#article-body .h2+.h3,#article-body .h2+.h4,#article-body .h2+.h5,#article-body .h2+.h6,#article-body .h2+h1,#article-body .h2+h2,#article-body .h2+h3,#article-body .h2+h4,#article-body .h2+h5,#article-body .h2+h6,#article-body .h3+.h1,#article-body .h3+.h2,#article-body .h3+.h3,#article-body .h3+.h4,#article-body .h3+.h5,#article-body .h3+.h6,#article-body .h3+h1,#article-body .h3+h2,#article-body .h3+h3,#article-body .h3+h4,#article-body .h3+h5,#article-body .h3+h6,#article-body .h4+.h1,#article-body .h4+.h2,#article-body .h4+.h3,#article-body .h4+.h4,#article-body .h4+.h5,#article-body .h4+.h6,#article-body .h4+h1,#article-body .h4+h2,#article-body .h4+h3,#article-body .h4+h4,#article-body .h4+h5,#article-body .h4+h6,#article-body .h5+.h1,#article-body .h5+.h2,#article-body .h5+.h3,#article-body .h5+.h4,#article-body .h5+.h5,#article-body .h5+.h6,#article-body .h5+h1,#article-body .h5+h2,#article-body .h5+h3,#article-body .h5+h4,#article-body .h5+h5,#article-body .h5+h6,#article-body .h6+.h1,#article-body .h6+.h2,#article-body .h6+.h3,#article-body .h6+.h4,#article-body .h6+.h5,#article-body .h6+.h6,#article-body .h6+h1,#article-body .h6+h2,#article-body .h6+h3,#article-body .h6+h4,#article-body .h6+h5,#article-body .h6+h6,#article-body h1+.h1,#article-body h1+.h2,#article-body h1+.h3,#article-body h1+.h4,#article-body h1+.h5,#article-body h1+.h6,#article-body h1+h1,#article-body h1+h2,#article-body h1+h3,#article-body h1+h4,#article-body h1+h5,#article-body h1+h6,#article-body h2+.h1,#article-body h2+.h2,#article-body h2+.h3,#article-body h2+.h4,#article-body h2+.h5,#article-body h2+.h6,#article-body h2+h1,#article-body h2+h2,#article-body h2+h3,#article-body h2+h4,#article-body h2+h5,#article-body h2+h6,#article-body h3+.h1,#article-body h3+.h2,#article-body h3+.h3,#article-body h3+.h4,#article-body h3+.h5,#article-body h3+.h6,#article-body h3+h1,#article-body h3+h2,#article-body h3+h3,#article-body h3+h4,#article-body h3+h5,#article-body h3+h6,#article-body h4+.h1,#article-body h4+.h2,#article-body h4+.h3,#article-body h4+.h4,#article-body h4+.h5,#article-body h4+.h6,#article-body h4+h1,#article-body h4+h2,#article-body h4+h3,#article-body h4+h4,#article-body h4+h5,#article-body h4+h6,#article-body h5+.h1,#article-body h5+.h2,#article-body h5+.h3,#article-body h5+.h4,#article-body h5+.h5,#article-body h5+.h6,#article-body h5+h1,#article-body h5+h2,#article-body h5+h3,#article-body h5+h4,#article-body h5+h5,#article-body h5+h6,#article-body h6+.h1,#article-body h6+.h2,#article-body h6+.h3,#article-body h6+.h4,#article-body h6+.h5,#article-body h6+.h6,#article-body h6+h1,#article-body h6+h2,#article-body h6+h3,#article-body h6+h4,#article-body h6+h5,#article-body h6+h6{margin-top:0}#article-body .h1 a,#article-body .h2 a,#article-body .h3 a,#article-body .h4 a,#article-body .h5 a,#article-body .h6 a,#article-body h1 a,#article-body h2 a,#article-body h3 a,#article-body h4 a,#article-body h5 a,#article-body h6 a{padding-left:10px;opacity:0}#article-body .h1:hover a,#article-body .h2:hover a,#article-body .h3:hover a,#article-body .h4:hover a,#article-body .h5:hover a,#article-body .h6:hover a,#article-body h1:hover a,#article-body h2:hover a,#article-body h3:hover a,#article-body h4:hover a,#article-body h5:hover a,#article-body h6:hover a{opacity:1;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}#article-body .h1,#article-body h1{font-size:38px;font-size:2.375rem}#article-body .h2,#article-body h2{font-size:33px;font-size:2.0625rem}#article-body .h3,#article-body h3{margin-top:2.5rem;font-size:28px;font-size:1.75rem}#article-body .h4,#article-body h4{font-size:23px;font-size:1.4375rem}#article-body .h5,#article-body h5{font-size:20px;font-size:1.25rem}#article-body .h6,#article-body h6{font-size:18px;font-size:1.125rem}#article-body li ol,#article-body li ul,#article-body li+li{margin-top:10px}#article-body li ol li,#article-body li ul li{margin-top:5px}#article-body li blockquote,#article-body li img{margin:20px 0}#article-body li ol+p,#article-body li ul+p{margin-top:20px}#article-body code{font-size:14px}#article-body img{display:block;max-width:100%;height:auto;margin:0 auto}#article-body table:not([class]){width:100%;max-width:100%;margin-bottom:22px}#article-body table:not([class])>tbody>tr>td,#article-body table:not([class])>tbody>tr>th,#article-body table:not([class])>tfoot>tr>td,#article-body table:not([class])>tfoot>tr>th,#article-body table:not([class])>thead>tr>td,#article-body table:not([class])>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}#article-body table:not([class])>caption+thead>tr:first-child>td,#article-body table:not([class])>caption+thead>tr:first-child>th,#article-body table:not([class])>colgroup+thead>tr:first-child>td,#article-body table:not([class])>colgroup+thead>tr:first-child>th,#article-body table:not([class])>thead:first-child>tr:first-child>td,#article-body table:not([class])>thead:first-child>tr:first-child>th{border-top:0}#article-body table:not([class])>tbody+tbody{border-top:2px solid #ddd}#article-body table:not([class]) .table{background-color:#fff}#article-body table:not([class])>thead>tr>th{font-family:Lato,sans-serif;padding:17px 10px;vertical-align:middle;text-align:left;color:#555;background-color:#fff;border-bottom:2px solid #00aeef;font-weight:400;font-size:18px}#article-body table:not([class])>tbody>tr:first-child{border-top:none}#article-body table:not([class])>tbody>tr:last-child{border-bottom:1px solid #e7e6e6}#article-body table:not([class])>tbody>tr>td{padding:17px 10px;vertical-align:middle;text-align:left;width:0;color:#747474}.email-signup,.library-rss,.library-sidebar-extra,.library-signup{text-align:center}#article-body table:not([class])>tbody>tr>td:last-child{border-right:none}#article-body table:not([class])>tbody>tr>td.large{font-size:20px;color:#000}#article-body table:not([class])>tbody>tr>td.large small{display:block;font-size:16px;color:#747474}#article-body table:not([class])>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.doc-time{color:#9a9a9a}.doc-time a:active,.doc-time a:link,.doc-time a:visited{color:#0089bc}.doc-time a:hover{color:#005170}.doc-title{margin-top:0!important;margin-bottom:5px;font-size:40px}.doc-license{font-size:87%;font-size:14px;padding-top:45px;color:#9a9a9a}.doc-sidebar-inner{background-color:#edf7fe;color:#747474;padding:15px;font-size:14px}.doc-sidebar-inner .lead a{font-weight:300}.doc-sidebar-inner .span>a,.doc-sidebar-inner address>a,.doc-sidebar-inner em>a,.doc-sidebar-inner h1>a,.doc-sidebar-inner h2>a,.doc-sidebar-inner h3>a,.doc-sidebar-inner h4>a,.doc-sidebar-inner h5>a,.doc-sidebar-inner h6>a,.doc-sidebar-inner li>a,.doc-sidebar-inner p>a,.doc-sidebar-inner td>a{-webkit-transition:.2s color;transition:.2s color}.doc-sidebar-inner .nav li>a,.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:hover{text-decoration:none}.doc-sidebar-inner.separated{border-bottom-color:#a5d7fa}.doc-sidebar-inner .h1,.doc-sidebar-inner .h2,.doc-sidebar-inner .h3,.doc-sidebar-inner .h4,.doc-sidebar-inner .h5,.doc-sidebar-inner .h6,.doc-sidebar-inner h1,.doc-sidebar-inner h2,.doc-sidebar-inner h3,.doc-sidebar-inner h4,.doc-sidebar-inner h5,.doc-sidebar-inner h6{color:#000}.doc-sidebar-inner.jumbotron .h1,.doc-sidebar-inner.jumbotron h1{color:#343434}.doc-sidebar-inner.jumbotron .h2,.doc-sidebar-inner.jumbotron .h3,.doc-sidebar-inner.jumbotron .h4,.doc-sidebar-inner.jumbotron .h5,.doc-sidebar-inner.jumbotron .h6,.doc-sidebar-inner.jumbotron h2,.doc-sidebar-inner.jumbotron h3,.doc-sidebar-inner.jumbotron h4,.doc-sidebar-inner.jumbotron h5,.doc-sidebar-inner.jumbotron h6{color:#747474}.doc-sidebar-inner .span>a:active,.doc-sidebar-inner .span>a:link,.doc-sidebar-inner .span>a:visited,.doc-sidebar-inner address>a:active,.doc-sidebar-inner address>a:link,.doc-sidebar-inner address>a:visited,.doc-sidebar-inner em>a:active,.doc-sidebar-inner em>a:link,.doc-sidebar-inner em>a:visited,.doc-sidebar-inner h1>a:active,.doc-sidebar-inner h1>a:link,.doc-sidebar-inner h1>a:visited,.doc-sidebar-inner h2>a:active,.doc-sidebar-inner h2>a:link,.doc-sidebar-inner h2>a:visited,.doc-sidebar-inner h3>a:active,.doc-sidebar-inner h3>a:link,.doc-sidebar-inner h3>a:visited,.doc-sidebar-inner h4>a:active,.doc-sidebar-inner h4>a:link,.doc-sidebar-inner h4>a:visited,.doc-sidebar-inner h5>a:active,.doc-sidebar-inner h5>a:link,.doc-sidebar-inner h5>a:visited,.doc-sidebar-inner h6>a:active,.doc-sidebar-inner h6>a:link,.doc-sidebar-inner h6>a:visited,.doc-sidebar-inner li>a:active,.doc-sidebar-inner li>a:link,.doc-sidebar-inner li>a:visited,.doc-sidebar-inner p>a:active,.doc-sidebar-inner p>a:link,.doc-sidebar-inner p>a:visited,.doc-sidebar-inner td>a:active,.doc-sidebar-inner td>a:link,.doc-sidebar-inner td>a:visited{color:#0089bc}.doc-sidebar-inner .span>a:hover,.doc-sidebar-inner address>a:hover,.doc-sidebar-inner em>a:hover,.doc-sidebar-inner h1>a:hover,.doc-sidebar-inner h2>a:hover,.doc-sidebar-inner h3>a:hover,.doc-sidebar-inner h4>a:hover,.doc-sidebar-inner h5>a:hover,.doc-sidebar-inner h6>a:hover,.doc-sidebar-inner li>a:hover,.doc-sidebar-inner p>a:hover,.doc-sidebar-inner td>a:hover{color:#005170}.doc-sidebar-inner .span>a .glyphicon.tile,.doc-sidebar-inner address>a .glyphicon.tile,.doc-sidebar-inner em>a .glyphicon.tile,.doc-sidebar-inner h1>a .glyphicon.tile,.doc-sidebar-inner h2>a .glyphicon.tile,.doc-sidebar-inner h3>a .glyphicon.tile,.doc-sidebar-inner h4>a .glyphicon.tile,.doc-sidebar-inner h5>a .glyphicon.tile,.doc-sidebar-inner h6>a .glyphicon.tile,.doc-sidebar-inner li>a .glyphicon.tile,.doc-sidebar-inner p>a .glyphicon.tile,.doc-sidebar-inner td>a .glyphicon.tile{-webkit-transition:.2s all;transition:.2s all;color:#000}.doc-sidebar-inner .span>a .glyphicon.tile:active,.doc-sidebar-inner .span>a .glyphicon.tile:hover,.doc-sidebar-inner address>a .glyphicon.tile:active,.doc-sidebar-inner address>a .glyphicon.tile:hover,.doc-sidebar-inner em>a .glyphicon.tile:active,.doc-sidebar-inner em>a .glyphicon.tile:hover,.doc-sidebar-inner h1>a .glyphicon.tile:active,.doc-sidebar-inner h1>a .glyphicon.tile:hover,.doc-sidebar-inner h2>a .glyphicon.tile:active,.doc-sidebar-inner h2>a .glyphicon.tile:hover,.doc-sidebar-inner h3>a .glyphicon.tile:active,.doc-sidebar-inner h3>a .glyphicon.tile:hover,.doc-sidebar-inner h4>a .glyphicon.tile:active,.doc-sidebar-inner h4>a .glyphicon.tile:hover,.doc-sidebar-inner h5>a .glyphicon.tile:active,.doc-sidebar-inner h5>a .glyphicon.tile:hover,.doc-sidebar-inner h6>a .glyphicon.tile:active,.doc-sidebar-inner h6>a .glyphicon.tile:hover,.doc-sidebar-inner li>a .glyphicon.tile:active,.doc-sidebar-inner li>a .glyphicon.tile:hover,.doc-sidebar-inner p>a .glyphicon.tile:active,.doc-sidebar-inner p>a .glyphicon.tile:hover,.doc-sidebar-inner td>a .glyphicon.tile:active,.doc-sidebar-inner td>a .glyphicon.tile:hover{color:#4e4e4e}.doc-sidebar-inner ul.nav-sidebar>li.active>a{color:#000}.doc-sidebar-inner ul.nav-sidebar>li.header>a{color:#626262;font-weight:800}.doc-sidebar-inner ul.nav-sidebar>li>a{color:#8e8e8e;-webkit-transition:.1s all;transition:.1s all}.doc-sidebar-inner ul.nav-sidebar>li>a:hover{color:#000}.doc-sidebar-inner ul.dropdown-menu>li>a:link{-webkit-transition:none;transition:none;text-decoration:none}.doc-sidebar-inner ul.dropdown-menu>li>a:hover{color:#fff}.doc-sidebar-inner.subnav{opacity:.96}.doc-sidebar-inner.subnav .navbar-brand{color:#000}.doc-sidebar-inner.subnav .navbar-brand a{text-decoration:none;color:#000}.doc-sidebar-inner.subnav li>a{color:#aaa}.doc-sidebar-inner.subnav li>a.active{color:#000}.doc-sidebar-inner.subnav li>a:hover{color:#5b5b5b}.doc-sidebar-inner .sidebar strong,.doc-sidebar-inner.subnav .navbar-toggle{color:#000}.doc-sidebar-inner.subnav .navbar-toggle:hover{background-color:transparent}.doc-sidebar-inner.subnav .navbar-collapse{border-top-color:#e7e6e6}.doc-sidebar-inner.subnav .subnav-divider{border-bottom:1px solid #e7e6e6}.doc-sidebar-inner .sidebar a strong,.doc-sidebar-inner .sidebar a strong:active,.doc-sidebar-inner .sidebar a strong:link,.doc-sidebar-inner .sidebar a strong:visited{color:#0089bc}.doc-sidebar-inner .sidebar a strong:hover{color:#005170}.doc-sidebar-inner cite.bubble strong{color:#414141}.doc-sidebar-inner cite.bubble a:active,.doc-sidebar-inner cite.bubble a:link,.doc-sidebar-inner cite.bubble a:visited{color:#0089bc}.doc-sidebar-inner cite.bubble a:hover{color:#005170}.doc-sidebar-inner blockquote,.doc-sidebar-inner blockquote p,.doc-sidebar-inner blockquote ul>li{color:#747474}.doc-sidebar-inner+.doc-sidebar-inner{margin-top:20px}#doc-sidebar-title{font-family:Lato,sans-serif;line-height:1.1;color:inherit;margin-top:11px;font-size:14px;font-size:19px;font-weight:400;margin-bottom:30px}#doc-sidebar-title .small,#doc-sidebar-title small{font-weight:400;line-height:1;color:#777;font-size:75%}#doc-sidebar-title+.lead{padding-top:10px}.sidebar-library nav>ul{border:0;margin:0;padding:0}.sidebar-library nav>ul>li{margin-left:0}.sidebar-library nav>ul>li>ul{border:0;padding-left:0}.sidebar-library nav>ul>li>ul>li{padding-left:0;display:block;line-height:20px;margin-top:20px;margin-bottom:20px}.sidebar-library nav>ul>li>ul>li>a{font-weight:800}.alert-banner a,.sidebar-library nav>ul>li>ul>li ul>li>a{font-weight:400}.sidebar-library nav>ul>li>ul>li ul>li{margin-top:2px;margin-bottom:2px;padding-left:10px}.sidebar-library nav>ul>li ul>li>ul>li>a{font-size:14px}.library-sidebar-extra h6{margin:5px auto}.library-sidebar-extra p{font-size:12px;margin-bottom:0}.library-sidebar-extra .fa{font-size:40px;color:#000}.library-github{vertical-align:middle;margin-bottom:15px;margin-top:15px}.library-github strong{font-size:1.2em}.library-github i{font-size:1.35em}.library-github p{display:inline-block;font-size:.8em;margin-left:7px}.contributed-by{float:right;margin-top:3px}.updated{float:left}.doc-time:after{content:"";display:table}.library-signup{margin-top:40px}.library-signup h6{margin:5px auto}.library-signup p{font-size:12px;margin-bottom:0}.library-signup .fa{font-size:40px;color:#000}.library-rss{margin-top:4px}.library-rss a{font-size:14px}.library-rss a:hover{color:#737373}#img-modal-image{max-width:1200px;max-height:700px;margin:auto}.modal-full{width:90%;padding-top:90px}.modal-body{overflow:scroll}div#search{height:57px}.gsc-input-box,td.gsc-input{height:45px!important}input.gsc-input{height:36px!important}.gsc-search-button{background-color:#2d8ec6;padding-top:2px}.gsc-modal-background-image{background-color:#333!important}table.gsc-table-result>tbody>tr>td{padding-left:8px;padding-right:8px}.gsc-search-box-tools .gsc-search-box .gsc-input{padding-right:0!important}div.gsc-input-box,div.gsc-input-box-focus{border-color:#4fa5d7}div.gsc-input-box-focus,div.gsc-input-box-hover{-webkit-box-shadow:none;box-shadow:none}div.gsc-control-cse{font-family:Helvetica,Arial,sans-serif}input.gsc-search-button,input.gsc-search-button:focus,input.gsc-search-button:hover{background-color:#2d8ec6!important;background-image:url(https://www.google.com/uds/css/v2/search_box_icon.png)!important;background-position:50% 50%;background-repeat:no-repeat;height:36px!important;border-color:#2d8ec6!important;-webkit-filter:none;filter:none}span.gscb_a{margin-top:13px!important}li.library-article-item{border:none;padding:16px 24px}li.library-article-item:nth-child(odd){background-color:#ebeff0}#signup-form{margin-top:16px}#frontpage_upcoming_webinar{background:#2d8ec6}#frontpage_upcoming_webinar_text a{color:#fff;height:50px;line-height:50px;vertical-align:middle}.email-signup{margin-top:30px}.create-account{margin-top:10px}.signup-top{background:#eee;padding:13px;display:inline-block;margin-bottom:8px;width:100%}.hs-richtext,.hubspot-form .input{padding-bottom:20px}@media only screen and (min-width:1200px){.signup-top>div.row>div:first-child{padding-top:4px}}@media only screen and (max-width:768px){.signup-top>div.row>div:last-child{text-align:left;margin-top:8px}}@media only screen and (min-width:768px){.signup-top>div.row>div:last-child{text-align:right;margin-top:0}}.container .contribute,.container .contribute .money{text-align:center}.signup-top span{font-family:Lato,sans-serif;font-size:18px;vertical-align:middle}.signup-top form{display:inline}.hs_recaptcha{float:right;margin:10px 0 10px 10px;padding-left:0}.hubspot-container{background-color:#ebeff0;width:80%}.hubspot-form input{display:block;height:40px;width:100%}.hubspot-form input[type=submit]{padding-bottom:0;display:block;float:left;height:40px;width:50%;margin:10px 10px 0 auto}.hubspot-form{width:100%;margin:0 auto;padding:40px 40px 25px}.hs-button{min-height:75px;font-size:1.5em;border:none;background-color:#3BB878;color:#fff}.hs-button:hover{background-color:#2f925f}.container .contribute img{padding-bottom:10px}h1.contribute{padding-bottom:40px}.contrib-header,.samples{padding-bottom:20px}.contribute{margin-left:0;padding-left:0}.compensation{text-align:left}.compensation-footer{text-align:left;padding-top:40px}.primary{margin-bottom:0;padding-bottom:0}.current{padding-bottom:20px;padding-top:20px}.sample-header{margin-left:0;margin-bottom:20px}.subtitle{padding-top:40px;margin:0}.row-content{margin-bottom:0}#doc-sidebar-container{position:webkit-sticky;position:-webkit-sticky;position:sticky;top:10px}#doc-sidebar-container #doc-sidebar{margin-top:10px;max-width:100%}#doc-sidebar-container #doc-sidebar-toc li.active>a{color:#005170}#doc-sidebar-container #doc-sidebar-toc .toc-long ul>li>ul>li>ul{display:none}.social-share>a{padding:6px 10px}.social-share .btn-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.social-share .share-group{float:left;max-width:59px;margin-top:12.5px!important;min-width:200px}.social-share .share-group ul{float:right;list-style:none;margin:0;min-width:61px;padding:0}.social-share .share-group .share{min-width:17px}.social-share .share-group li{display:block;font-size:18px;list-style:none;margin-bottom:3px;margin-left:4px;margin-top:3px}.social-share .share-group .btn-common{width:51px;color:#FFF!important}.social-share .share-group .btn-twitter{background-color:#39C!important;width:51px;color:#FFF!important}.social-share .share-group .btn-facebook{background-color:#3D5B96!important;width:51px;color:#FFF!important}.social-share .share-group .btn-hacker-news{background-color:#f60!important;width:51px;color:#FFF!important}#disqus_thread{margin-top:40px}.copy-code{position:absolute;padding-top:.25rem;right:1.4rem;opacity:0}#article-body .disclosure-note div.btn-copy>.copy-code,blockquote div.btn-copy>.copy-code{padding-top:.01rem;right:2.2rem}#article-body .disclosure-note .glyphicon.glyphicon-copy{font-size:1.6rem;color:#a6a6a6}blockquote div.btn-copy .glyphicon.glyphicon-copy{color:#a6a6a6}.copy-code:hover{opacity:1}.glyphicon.glyphicon-copy{font-size:1.6rem}.btn-copy:hover .glyphicon{color:#B2D7FF}.form_elem_email{color:#000}.alert-banner{font-size:22px;background-color:#7c9fb3;text-align:center;margin-bottom:30px;padding:10px 0}.alert-banner a{font-family:Lato,sans-serif;color:rgba(255,255,255,.8);display:block}.alert-banner a:hover{text-decoration:none;color:#fff}.alert-banner i{padding:0 15px}.sub-menu-wrap{max-width:1170px;margin:0 auto;padding-left:15px;padding-right:15px}.sub-menu-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #e7e6e6;width:100%;-webkit-font-smoothing:initial}.with-subnavigation{margin-top:30px}.breadcrumb-row.with-subnavigation,.pad-xs.with-subnavigation{margin-top:0!important}#library-main-search{margin-bottom:0}.sub-menu-wrapper__title{padding:21px 0;margin:11px 0;-webkit-font-smoothing:antialiased;font-family:"Trebuchet MS",Helvetica,sans-serif;font-weight:300;font-size:24px;line-height:22px}.chroma .cs,.chroma .gh,.chroma .gs,.chroma .gu,.chroma .kt,.chroma .nc,.chroma .ne,.chroma .nt{font-weight:700}.sub-menu-wrapper__title a:link,.sub-menu-wrapper__title a:visited{color:#000;text-decoration:none}.sub-menu-wrapper__title a:hover{color:#000}.sub-menu{font-family:Lato,sans-serif;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;top:1px}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.sub-menu{top:-2px}}}.sub-menu li{display:inline-block}.chroma .hl,.chroma .lnt{display:block}.sub-menu-wrapper .sub-menu li:first-child a{margin-left:0}.sub-menu li:last-child a{margin-right:0}.sub-menu a:link,.sub-menu a:visited{color:#aaa;padding-top:21px;padding-bottom:21px;font-size:15px;line-height:15px;margin:13px 12px 0}.sub-menu a.active,.sub-menu a:hover{color:#000}@media (max-width:768px){.sub-menu,.sub-menu li{display:block}.sub-menu{width:100%}.sub-menu-wrapper{padding-bottom:20px}.sub-menu-wrapper .sub-menu li a{margin:0}.some-space.first-section.with-subnavigation{padding-bottom:30px}}@media screen and (min-width:992px){.navbar .nav-home{top:1px}}@media screen and (min-width:768px){.navbar.navbar-default{height:auto}.navbar .navbar-nav>li>a{padding-bottom:20px}}.chroma{background-color:#eed}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;overflow:auto;display:block}.chroma .ln,.chroma .lnt{margin-right:.4em;padding:0 .4em}.chroma .hl{background-color:#ffc;width:100%}.chroma .k,.chroma .kc,.chroma .kd,.chroma .kn,.chroma .kp,.chroma .kr{color:#8b008b;font-weight:700}.chroma .kt{color:#00688b}.chroma .na,.chroma .nb{color:#658b00}.chroma .nc{color:#008b45}.chroma .no{color:#00688b}.chroma .nd{color:#707a7c}.chroma .ne,.chroma .nf,.chroma .nn{color:#008b45}.chroma .nt{color:#8b008b}.chroma .nv{color:#00688b}.chroma .dl,.chroma .s,.chroma .s2,.chroma .sa,.chroma .sb,.chroma .sc,.chroma .sd,.chroma .se{color:#cd5555}.chroma .sh{color:#1c7e71}.chroma .si{color:#cd5555}.chroma .sx{color:#cb6c20}.chroma .sr{color:#1c7e71}.chroma .s1,.chroma .ss{color:#cd5555}.chroma .il,.chroma .m,.chroma .mb,.chroma .mf,.chroma .mh,.chroma .mi,.chroma .mo{color:#b452cd}.chroma .ow{color:#8b008b}.chroma .c,.chroma .c1,.chroma .ch,.chroma .cm{color:#228b22}.chroma .cs{color:#8b008b}.chroma .cp,.chroma .cpf{color:#1e889b}.chroma .gd,.chroma .gr{color:#a00}.chroma .gh{color:navy}.chroma .gi{color:#0a0}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gu{color:purple}.chroma .gt{color:#a00}.chroma .w{color:#bbb} \ No newline at end of file