From 1824bc2a5834a2336ced5398642629a5d0c718f8 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 15:57:56 -0500 Subject: [PATCH 01/38] Outline draft --- .../index.md | 292 ++++++++++++++++++ 1 file changed, 292 insertions(+) create mode 100644 docs/troubleshooting/troubleshoot-a-connection-problem/index.md diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md new file mode 100644 index 00000000000..6cf2cbadda8 --- /dev/null +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -0,0 +1,292 @@ +--- +author: + name: Linode + email: docs@linode.com +description: "Troubleshooting steps for when you can't connect to your Linode." +keywords: ['linux','reboot','lish'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2019-01-02 +modified: 2019-01-02 +modified_by: + name: Linode +title: "How to Troubleshoot a Connection Problem" +--- + +EDITOR's NOTE: This takes from the [Access Your Linode After Maintenance](https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot) guide and re-structures things. This could serve as an update to that guide (and we could alias from there to here). I don't think there's really much difference between these two guides. + +Or, we could write this guide, and then insert it as a shortguide in the Access Your Linode After Maintenance guide (replacing the bulk of the content in it), then add some extra context at the top of that guide (before the shortguide insertion), and include other context after the shortguide (like linking to the Reboot Survival Guide/offering precautions and preparations for future possible maintenance). + +EDITOR'S NOTE: Some of these sections only include commands for systemd or Debian etc. Final version of this guide should optimally include commands for all recent-ish distros. + +Sometimes through the course of updating or altering a Linode you might be unable to connect to your Linode through SSH or through other services you may run. The following are steps to regain access to your Linode should you lose access to those services. + +{{< note >}} +Linode is not responsible for the configuration or installation of software on your Linode, etc. Could link to the newly edited Support guide for more information, or a link to the TOS. + +Also say something like: +Various parts of this guide involve running diagnostic troubleshooting commands on your Linode, which can produce clues about the root of your connection issues. Several parts of this guide highlight frequent causes of connection issues and the diagnostic command output they correspond to. If the diagnostic information you've gathered does not match a solution presented here, consider searching the [Linode Community Site](link) for similar issues. Or, post a new question in the Community Site and include your commands' output. +{{< /note >}} + +## Before You Begin + +There are a few core troubleshooting tools you should familiarize yourself with that will be useful when diagnosing connection problems. + +### Using the Linode Shell (Lish) + +[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Because Lish does not establish a network connection to your Linode, you can use it when networking is down or SSH isn't available. Lish is a valuable tool + +Include instructions here for using Lish, either by linking to Lish guide or embedding them directly. Perhaps embed instructions for using the web console and link to the dedicated guide for terminal connections and other Lish usage. + +{{< note >}} +Include note that all commands in this guide should be executed from Lish, unless SSH access is available, or otherwise specified by the guide (such as when running MTRs from your local computer). +{{< /note >}} + +### Install MTR + +MTR is a troubleshooting tool that can diagnose network routing issues that may exist between your computer and your Linode. Review Linode's MTR guide for instructions on [installing the tool](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) on your computer. + +## Is your Linode Running? + +Login to the Linode Manager and inspect the Linode's dashboard. If the Linode is powered off, turn it on. + +{{< note >}} +If the Linode is running and you can access SSH, but not other services, move down to the [troubleshooting other services](#troubleshoot-other-services) section. +{{< /note >}} + +### Inspect the Lish Console + +If the Linode is listed as running, open the Lish console and look for a login prompt. If a login prompt exists, try logging in with your root user credentials (or other Linux user credentials). + +{{< note >}} +The root user is available in Lish even if root user login is disabled in your SSH configuration. +{{< /note >}} + +If you can login at the Lish console, move on to [checking basic network connectivity](#check-basic-network-connectivity). + +If you do not see a login prompt, your Linode may have [basic issues with booting](#troubleshoot-booting-issues). + +## Troubleshoot Booting Issues + +If your Linode isn't booting normally, you will not be able to rely on the Lish console as you would normally. To continue, you will need to reboot your Linode into *Rescue Mode*, which is a special recovery environment that Linode provides. Entering Rescue Mode will boot the Finnix recovery distribution, and you will be able to mount your normal Linux images from this environment. + +Review the Rescue and Rebuild guide for instructions on [booting into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). Then, connect to Rescue Mode via the Lish console as you would normally. + +### Perform a File System Check + +If your Linode can't boot, then it may have experienced filesystem corruption. Review the Rescue and Rebuild guide for instructions on [running a filesystem check](/docs/troubleshooting/rescue-and-rebuild/#performing-a-file-system-check). + +{{< caution >}} +Never run a filesystem check on a disk that is mounted. +{{< /caution >}} + +### Inspect System and Kernel Logs + +Rescue Mode is capable of mounting your Linux image so that you can investigate further. Furthermore, you can also *change root* within Rescue Mode, which will make Rescue Mode working environment emulate your normal Linux image. This means your files and logs will appear where you normally expect them, and you will be able to work with tools like your standard package manager and other system utilities. To proceed, review the Rescue and Rebuild guide's instructions on [changing root](/docs/troubleshooting/rescue-and-rebuild/#change-root). + +Include instructions for how to review system (e.g. `journalctl`) and kernel logs (`dmesg`) for various distros. Suggest that users search the Linode Community site for messages they find for further troubleshooting help. + +| Distribution | System Logs | Kernel Logs | +| ------------- |-------------| -----| +| CentOS 6 | Inspect `/var/log/messages` | Run `dmesg` +| CentOS 7+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | +| Debian 8+ and Ubuntu 16.04+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | +| Arch | Insert commands and logs files here | Whatever it is | + +### Quick Tip for Ubuntu and Debian Systems + +After you have changed root, the following command may help with issues related to your packages' configuration: + + dpkg --configure -a + +After running this command, try rebooting your Linode into your normal configuration profile. + +## Check Basic Network Connectivity + +Networking issues can have two causes: your Linode may not be responding to network requests normally, or there may be a network routing issue between you and your Linode. + +### Check for Network Route Issues + +To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). + +If your report shows no packet loss along the route, but 100% packet loss at your Linode, that indicates an issue with your Linode's networking configuration. Move to the next section to continue troubleshooting. + +If your report shows significant packet loss starting part-way through the route, there may be an issue between your internet service provider and Linode's upstream network peers. To confirm this issue, run another test originating from your Linode (by logging in with Lish and running the MTR command from the Linode) to your home computer's IP address. To find out what your local IP is, visit a website like https://www.whatismyip.com/. + +Once you have finished generating these reports, open a Linode support ticket with the results. Linode Support will try to help further diagnose the routing issue. + +### Try Enabling Network Helper + +If your Linode's networking is down, a quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool and then reboot. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. + +- If Network Helper was already enabled, continue to the next sections. +- If you enable it and reboot, try running another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode). If the report shows no packet loss, but you still can't access SSH or other services, this indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) +- If networking is still down after enabling Network Helper, continue to the next sections. + +### Run Standard Diagnostic Commands + +Include instructions for running standard diagnostic commands on different distros, and include expected output. Example commands for Debian 8/9: + + cat /etc/network/interfaces + systemctl status networking.service + ip a + ip r + +### Errors from the networking Service + +If the output from the status of your `networking` service shows an error like `Failed to start Raise network interfaces`, review your logs for further clues: + + sudo systemctl status networking.service -l + sudo journalctl -u networking --no-pager | tail -20 + +#### Sendmail + +If the output from your networking service logs show an error similar to the following, it is likely that a broken Sendmail update is at fault: + +{{< output >}} +/etc/network/if-up.d/sendmail: 44: .: Can't open /usr/share/sendmail/dynamic run-parts: /etc/network/if-up.d/sendmail exited with return code 2 +{{< /output >}} + +The sendmail issue can usually be resolved by running the following two commands: + + sudo mv /etc/network/if-up.d/sendmail ~ + ifdown -a && ifup -a + +You can read more about the SendMail bug at the following link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873978 + +#### iptables + +Malformed rules in your iptables ruleset can sometimes cause issues for your network scripts. An error similar to the following will generally appear in your logs: + +{{< output >}} +Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: failed to exec /etc/network/if- Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: /etc/network/if-up.d/iptables e +{{< /output >}} + +### Was your Interface Renamed? + +When viewing the output of the `interfaces` file, or the output from your `ip` commands, if you notice your interfaces have been renamed to something other than `eth0` (for example, `ensp`) this may be due to the latest version of systemd (226-1+ as of writing this guide). Specifically, [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) may be renaming your interfaces. + +1. Disable the use of Predictable Network Interface Names with these commands: + + ln -s /dev/null /etc/systemd/network/99-default.link + ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules + +1. Reboot your Linode for the changes to take effect. + +### Privacy Extensions for IPv6 + +If you are only unable to connect via IPv6, then your Linode may be using an incorrect IPv6 address. Compare the global IPv6 address that appears in the output from your `ip a` command with the value shown in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. If they don't match, then your distribution may be using privacy extensions to generate an incorrect address. + +Include instructions for how to fix this (search kb for privacy extensions) + +### Review Firewall Rules + +If your interface is up but your networking is still down, your firewall may be blocking all connections, including basic ping requests. + +Include instructions for inspecting and dumping firewall rules for iptables and ip6tables. Example commands and text: + + sudo iptables-save + +If you are unable to determine if a specific rule is causing a problem, you can save your iptables to a backup and flush your rules: + + sudo iptables-save > /tmp/iptables.txt + sudo iptables -P INPUT ACCEPT + sudo iptables -P FORWARD ACCEPT + sudo iptables -P OUTPUT ACCEPT + sudo iptables -t nat -F + sudo iptables -t mangle -F + sudo iptables -F + sudo iptables -X + +Guide: https://www.linode.com/docs/security/firewalls/control-network-traffic-with-iptables/ + +Include links to troubleshooting firewalld and other firewall utilities. + +## Troubleshoot SSH + +### Review SSH Service Status and Logs + +Check on status: + + sudo systemctl status ssh -l + +If it's not running, try restarting it: + + sudo systemctl restart ssh + +If it won't run, check for error messages: + + sudo journalctl -u ssh --no-pager | tail -20 + +### Review SSH Login Attempts + +[Use the `less` command](/docs/quick-answers/linux/how-to-use-less/) to inspect your authorization logs: + + sudo less /var/log/auth.log # Ubuntu/Debian + sudo less /var/log/secure # CentOS + +### Attempt to Connect to SSH in Verbose Mode + +SSH into your server from your local computer in verbose mode: + + ssh -vvv @ + +This will give exacting details about why the SSH connection is not working, and may be useful. + +{{< disclosure-note "Example output from a successful connection" >}} +Include example successful connection output here +{{< /disclosure-note >}} + +### Is SSH Running on another Port? + +Run `netstat` on your Linode to check which port is used by SSH: + + sudo netstat -plntu + +SSH runs on 22 by default, but you may have changed it in your SSH config. Include instructions here for changing the config, or specifying the port in the SSH client command. + +### Is Root Login Permitted? + +Describe how root logins can be disabled in the SSH config, where to check on that (see command below), and what to adjust to turn it back on if it's disabled: + +egrep -i 'permit' /etc/ssh/sshd_config + +### Are Password Logins Accepted? + +Describe how password logins can be enabled/disabled, where to check on that (see command below), and what to adjust to turn it back on if it's disabled: + +egrep -i 'password' /etc/ssh/sshd_config + +### Is your Public Key Stored on the Server? + +Include instructions for checking which SSH private keys are on the client computer vs. which are on the Linode. Refer back to verbose mode to show which keys were tried by the client/server. + +### Is your Firewall Blocking SSH? + +Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches SSH (22 by default but could be custom). + +## Troubleshoot Other Services + +If you can establish an SSH connection, but some of your other services aren't working, here's more troubleshooting goodness: + +### Check if the Service is Running + +EDITOR's NOTE: Also include instructions for non-systemd systems + +On systemd systems, check the logs for the service. Example: + + sudo systemctl status mysql -l + sudo journalctl -u mysql + +Try restarting the service: + + sudo systemctl restart mysql + +For Apache issues, review the [Troubleshooting Common Apache Issues](/docs/troubleshooting/troubleshooting-common-apache-issues/) + +### Check if the Service is Enabled at Boot + +Take instructions from https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot + +### Is your Firewall Blocking the Service? + +Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file From c4379f46cab87c23fe490663dfb5ca603bf12d99 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:02:29 -0500 Subject: [PATCH 02/38] Update to SSH section --- .../troubleshoot-a-connection-problem/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index 6cf2cbadda8..f65b54b750f 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -203,6 +203,10 @@ Include links to troubleshooting firewalld and other firewall utilities. ## Troubleshoot SSH +EDITOR's NOTE: Some example output can be found in https://www.linode.com/community/questions/400/why-cant-i-connect-to-my-linode-via-ssh + +We may need to include more new example output here thats not in that community question. It could be good to insert those into disclosure-notes (Attempt to Connect to SSH in Verbose Mode section shows how to do that). + ### Review SSH Service Status and Logs Check on status: From 7328a2eb47966ea27b011767ad46f7a47771be0b Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:09:16 -0500 Subject: [PATCH 03/38] Update MTR section --- .../troubleshoot-a-connection-problem/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index f65b54b750f..544279837fa 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -106,6 +106,8 @@ Networking issues can have two causes: your Linode may not be responding to netw ### Check for Network Route Issues +EDITOR'S NOTE: include example MTR output in disclosure-note blocks to illsutrate 100% packet loss at Linode vs. packet loss along route (might be harder to generate an example for that. Maybe take from a previous ticket where we ran a report against a Linode IP, potentially from the nlnog ring network?) + To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). If your report shows no packet loss along the route, but 100% packet loss at your Linode, that indicates an issue with your Linode's networking configuration. Move to the next section to continue troubleshooting. @@ -114,6 +116,10 @@ If your report shows significant packet loss starting part-way through the route Once you have finished generating these reports, open a Linode support ticket with the results. Linode Support will try to help further diagnose the routing issue. +{{< note >}} +If you are located in China, there is a chance that your IP has been blacklisted by the GFW (Great Firewall of China). Because this is a systemic issue, Linode is no longer in the process of swapping IP addresses for affected Linodes. You can point the reader to the instructions found here: https://www.linode.com/community/questions/17192/ssh-refused +{{< /note >}} + ### Try Enabling Network Helper If your Linode's networking is down, a quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool and then reboot. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. From 15cad0e56adcfa68b4f36469fbbcf390f0cd9cec Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:16:50 -0500 Subject: [PATCH 04/38] Application log locations --- .../troubleshoot-a-connection-problem/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index 544279837fa..52ae0cdcd1e 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -297,6 +297,21 @@ For Apache issues, review the [Troubleshooting Common Apache Issues](/docs/troub Take instructions from https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot +### Review Application Logs + +EDITOR'S NOTE: Not sure if we should include this section, but possibly: + +Show locations for common application logs maintained outside of the system logs, e.g.: + +MySQL: /var/log/mysql + the slow queries log +Show how to turn slow queries log on + +PHP: /var/log/php, or check phpinfo() from web browser to see where log file is + +Apache: See dedicated apache guide + +NGINX: /var/log/nginx, or check log location in nginx config + ### Is your Firewall Blocking the Service? Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file From 550b07ea1815cea0724d1546cec5c3ca5f1179ee Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:29:24 -0500 Subject: [PATCH 05/38] Update to iptables section of basic networking troubleshooting --- .../troubleshoot-a-connection-problem/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index 52ae0cdcd1e..f2c983c41cb 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -167,6 +167,13 @@ Malformed rules in your iptables ruleset can sometimes cause issues for your net Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: failed to exec /etc/network/if- Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: /etc/network/if-up.d/iptables e {{< /output >}} +You can run the following commands to resolve this issue. + + sudo mv /etc/network/if-up.d/iptables ~ + ifdown -a && ifup -a + +Please note that your firewall will be down at this point, so you will need to re-enable it manually. + ### Was your Interface Renamed? When viewing the output of the `interfaces` file, or the output from your `ip` commands, if you notice your interfaces have been renamed to something other than `eth0` (for example, `ensp`) this may be due to the latest version of systemd (226-1+ as of writing this guide). Specifically, [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) may be renaming your interfaces. From 497bb3d0a6d022b2522082f947b069ffef190300 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:33:50 -0500 Subject: [PATCH 06/38] New editor's note at top to describe overall troubleshooting progression --- docs/troubleshooting/troubleshoot-a-connection-problem/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index f2c983c41cb..6ebb516aa17 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -12,6 +12,8 @@ modified_by: title: "How to Troubleshoot a Connection Problem" --- +EDITOR'S NOTE: This outline attempts to cover connection issues logically in ascending order: booting issues -> basic connectivity (routing or network interface issues) -> SSH -> other services (http, mysql, etc) + EDITOR's NOTE: This takes from the [Access Your Linode After Maintenance](https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot) guide and re-structures things. This could serve as an update to that guide (and we could alias from there to here). I don't think there's really much difference between these two guides. Or, we could write this guide, and then insert it as a shortguide in the Access Your Linode After Maintenance guide (replacing the bulk of the content in it), then add some extra context at the top of that guide (before the shortguide insertion), and include other context after the shortguide (like linking to the Reboot Survival Guide/offering precautions and preparations for future possible maintenance). From 77c9eab2e2dc6b5bb8e170872c0ac4e8f7c14592 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Wed, 2 Jan 2019 16:38:19 -0500 Subject: [PATCH 07/38] Using netstat to troubleshoot other services --- .../troubleshoot-a-connection-problem/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index 6ebb516aa17..b4c5fefd6f8 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -321,6 +321,14 @@ Apache: See dedicated apache guide NGINX: /var/log/nginx, or check log location in nginx config +### Check which IP Addresses and Ports your Services Are Bound To + +Include instructions for using `netstat -plntu` to see which processes are listening on which ports and which addresses. Possible example problems: + +- Web server is only listening on the IPv4 address, not also the IPv6 address (which is a common problem for users trying to connect to a website via a cell phone, as those networks seem to prefer IPv6). + +- Service not listening on a standard port. Include markdown table of common services+ports + ### Is your Firewall Blocking the Service? Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file From 476c55608de0144ac27823e3c0072f86191ff5eb Mon Sep 17 00:00:00 2001 From: nmelehan Date: Sat, 5 Jan 2019 19:11:29 -0500 Subject: [PATCH 08/38] Instructions for full disk problems --- .../index.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md index b4c5fefd6f8..d12413d7288 100644 --- a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md +++ b/docs/troubleshooting/troubleshoot-a-connection-problem/index.md @@ -321,6 +321,26 @@ Apache: See dedicated apache guide NGINX: /var/log/nginx, or check log location in nginx config +### Is your Disk Full? + +If you're having issues with your database service, one common reason a database might not run as expected is if your disk is full. To check on your current disk usage, run the `df` command: + + df -h + +{{< note >}} +Note about how this is not the same thing as the reported unallocated space in the Linode Manager. +{{< /note >}} + +Include instructions for how to resolve this situation: + +- Free up space on your disk by locating and removing files you don't need, using a tool like du or ncdu + +- Resize the disk if you have any unallocated space on your Linode + +- Upgrade your Linode (either through a free upgrade if one is available or by resizing to a higher tier) and then resize your disk to use the newly available space. + +Or, consider putting those instructions into a new "How to Free Up Space on Your Linode" guide and then link to it. + ### Check which IP Addresses and Ports your Services Are Bound To Include instructions for using `netstat -plntu` to see which processes are listening on which ports and which addresses. Possible example problems: From fba1e3479a0f8f42d213ca5e804bd422ac195411 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Mon, 21 Jan 2019 15:20:57 -0500 Subject: [PATCH 09/38] Renamed slug of new SSH/web servers/other services troubleshooting guide --- .../index.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/troubleshooting/{troubleshoot-a-connection-problem => troubleshooting-ssh-web-servers-and-other-services}/index.md (100%) diff --git a/docs/troubleshooting/troubleshoot-a-connection-problem/index.md b/docs/troubleshooting/troubleshooting-ssh-web-servers-and-other-services/index.md similarity index 100% rename from docs/troubleshooting/troubleshoot-a-connection-problem/index.md rename to docs/troubleshooting/troubleshooting-ssh-web-servers-and-other-services/index.md From 20861e312961ee6f415074cee4029a54f23836d4 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Mon, 21 Jan 2019 16:42:55 -0500 Subject: [PATCH 10/38] Renaming guide to just be 'Troubleshooting SSH' There will be three guides: Troubleshooting Basic Connectivity Issues Troubleshooting SSH Troubleshooting Web Servers, Databases, and Other Services --- .../index.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/troubleshooting/{troubleshooting-ssh-web-servers-and-other-services => troubleshooting-ssh}/index.md (100%) diff --git a/docs/troubleshooting/troubleshooting-ssh-web-servers-and-other-services/index.md b/docs/troubleshooting/troubleshooting-ssh/index.md similarity index 100% rename from docs/troubleshooting/troubleshooting-ssh-web-servers-and-other-services/index.md rename to docs/troubleshooting/troubleshooting-ssh/index.md From fca1cdaed728c8f4275853c4a9811deb9c45c194 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Mon, 21 Jan 2019 17:11:46 -0500 Subject: [PATCH 11/38] Created drafts for new guides: Troubleshooting Basic Connectivity Issues Troubleshooting Web Servers Databases and Other Services --- .../index.md | 213 ++++++++++++++ .../troubleshooting-ssh/index.md | 269 +----------------- .../index.md | 83 ++++++ 3 files changed, 300 insertions(+), 265 deletions(-) create mode 100644 docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md create mode 100644 docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md diff --git a/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md b/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md new file mode 100644 index 00000000000..9f8468f633a --- /dev/null +++ b/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md @@ -0,0 +1,213 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'Troubleshooting steps to access your Linode after maintenance has been applied to your host.' +keywords: ['linux','reboot','lish'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2019-01-21 +modified: 2019-01-21 +modified_by: + name: Linode +title: "Troubleshooting Basic Connectivity Issues" +--- + +EDITOR'S NOTE: This outline attempts to cover connection issues logically in ascending order: booting issues -> basic connectivity (routing or network interface issues) -> SSH -> other services (http, mysql, etc) + +EDITOR'S NOTE: Some of these sections only include commands for systemd or Debian etc. Final version of this guide should optimally include commands for all recent-ish distros. + +Sometimes through the course of updating or altering a Linode you might be unable to connect to your Linode through SSH or through other services you may run. The following are steps to regain access to your Linode should you lose access to those services. + +{{< note >}} +Linode is not responsible for the configuration or installation of software on your Linode, etc. Could link to the newly edited Support guide for more information, or a link to the TOS. + +Also say something like: +Various parts of this guide involve running diagnostic troubleshooting commands on your Linode, which can produce clues about the root of your connection issues. Several parts of this guide highlight frequent causes of connection issues and the diagnostic command output they correspond to. If the diagnostic information you've gathered does not match a solution presented here, consider searching the [Linode Community Site](link) for similar issues. Or, post a new question in the Community Site and include your commands' output. +{{< /note >}} + +## Before You Begin + +There are a few core troubleshooting tools you should familiarize yourself with that will be useful when diagnosing connection problems. + +### Using the Linode Shell (Lish) + +[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Because Lish does not establish a network connection to your Linode, you can use it when networking is down or SSH isn't available. Lish is a valuable tool + +Include instructions here for using Lish, either by linking to Lish guide or embedding them directly. Perhaps embed instructions for using the web console and link to the dedicated guide for terminal connections and other Lish usage. + +{{< note >}} +Include note that all commands in this guide should be executed from Lish, unless SSH access is available, or otherwise specified by the guide (such as when running MTRs from your local computer). +{{< /note >}} + +### Install MTR + +MTR is a troubleshooting tool that can diagnose network routing issues that may exist between your computer and your Linode. Review Linode's MTR guide for instructions on [installing the tool](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) on your computer. + +## Is your Linode Running? + +Login to the Linode Manager and inspect the Linode's dashboard. If the Linode is powered off, turn it on. + +{{< note >}} +If the Linode is running and you can access SSH, but not other services, move down to the [troubleshooting other services](#troubleshoot-other-services) section. +{{< /note >}} + +### Inspect the Lish Console + +If the Linode is listed as running, open the Lish console and look for a login prompt. If a login prompt exists, try logging in with your root user credentials (or other Linux user credentials). + +{{< note >}} +The root user is available in Lish even if root user login is disabled in your SSH configuration. +{{< /note >}} + +If you can login at the Lish console, move on to [checking basic network connectivity](#check-basic-network-connectivity). + +If you do not see a login prompt, your Linode may have [basic issues with booting](#troubleshoot-booting-issues). + +## Troubleshoot Booting Issues + +If your Linode isn't booting normally, you will not be able to rely on the Lish console as you would normally. To continue, you will need to reboot your Linode into *Rescue Mode*, which is a special recovery environment that Linode provides. Entering Rescue Mode will boot the Finnix recovery distribution, and you will be able to mount your normal Linux images from this environment. + +Review the Rescue and Rebuild guide for instructions on [booting into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). Then, connect to Rescue Mode via the Lish console as you would normally. + +### Perform a File System Check + +If your Linode can't boot, then it may have experienced filesystem corruption. Review the Rescue and Rebuild guide for instructions on [running a filesystem check](/docs/troubleshooting/rescue-and-rebuild/#performing-a-file-system-check). + +{{< caution >}} +Never run a filesystem check on a disk that is mounted. +{{< /caution >}} + +### Inspect System and Kernel Logs + +Rescue Mode is capable of mounting your Linux image so that you can investigate further. Furthermore, you can also *change root* within Rescue Mode, which will make Rescue Mode working environment emulate your normal Linux image. This means your files and logs will appear where you normally expect them, and you will be able to work with tools like your standard package manager and other system utilities. To proceed, review the Rescue and Rebuild guide's instructions on [changing root](/docs/troubleshooting/rescue-and-rebuild/#change-root). + +Include instructions for how to review system (e.g. `journalctl`) and kernel logs (`dmesg`) for various distros. Suggest that users search the Linode Community site for messages they find for further troubleshooting help. + +| Distribution | System Logs | Kernel Logs | +| ------------- |-------------| -----| +| CentOS 6 | Inspect `/var/log/messages` | Run `dmesg` +| CentOS 7+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | +| Debian 8+ and Ubuntu 16.04+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | +| Arch | Insert commands and logs files here | Whatever it is | + +### Quick Tip for Ubuntu and Debian Systems + +After you have changed root, the following command may help with issues related to your packages' configuration: + + dpkg --configure -a + +After running this command, try rebooting your Linode into your normal configuration profile. + +## Check Basic Network Connectivity + +Networking issues can have two causes: your Linode may not be responding to network requests normally, or there may be a network routing issue between you and your Linode. + +### Check for Network Route Issues + +EDITOR'S NOTE: include example MTR output in disclosure-note blocks to illsutrate 100% packet loss at Linode vs. packet loss along route (might be harder to generate an example for that. Maybe take from a previous ticket where we ran a report against a Linode IP, potentially from the nlnog ring network?) + +To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). + +If your report shows no packet loss along the route, but 100% packet loss at your Linode, that indicates an issue with your Linode's networking configuration. Move to the next section to continue troubleshooting. + +If your report shows significant packet loss starting part-way through the route, there may be an issue between your internet service provider and Linode's upstream network peers. To confirm this issue, run another test originating from your Linode (by logging in with Lish and running the MTR command from the Linode) to your home computer's IP address. To find out what your local IP is, visit a website like https://www.whatismyip.com/. + +Once you have finished generating these reports, open a Linode support ticket with the results. Linode Support will try to help further diagnose the routing issue. + +{{< note >}} +If you are located in China, there is a chance that your IP has been blacklisted by the GFW (Great Firewall of China). Because this is a systemic issue, Linode is no longer in the process of swapping IP addresses for affected Linodes. You can point the reader to the instructions found here: https://www.linode.com/community/questions/17192/ssh-refused +{{< /note >}} + +### Try Enabling Network Helper + +If your Linode's networking is down, a quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool and then reboot. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. + +- If Network Helper was already enabled, continue to the next sections. +- If you enable it and reboot, try running another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode). If the report shows no packet loss, but you still can't access SSH or other services, this indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) +- If networking is still down after enabling Network Helper, continue to the next sections. + +### Run Standard Diagnostic Commands + +Include instructions for running standard diagnostic commands on different distros, and include expected output. Example commands for Debian 8/9: + + cat /etc/network/interfaces + systemctl status networking.service + ip a + ip r + +### Errors from the networking Service + +If the output from the status of your `networking` service shows an error like `Failed to start Raise network interfaces`, review your logs for further clues: + + sudo systemctl status networking.service -l + sudo journalctl -u networking --no-pager | tail -20 + +#### Sendmail + +If the output from your networking service logs show an error similar to the following, it is likely that a broken Sendmail update is at fault: + +{{< output >}} +/etc/network/if-up.d/sendmail: 44: .: Can't open /usr/share/sendmail/dynamic run-parts: /etc/network/if-up.d/sendmail exited with return code 2 +{{< /output >}} + +The sendmail issue can usually be resolved by running the following two commands: + + sudo mv /etc/network/if-up.d/sendmail ~ + ifdown -a && ifup -a + +You can read more about the SendMail bug at the following link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873978 + +#### iptables + +Malformed rules in your iptables ruleset can sometimes cause issues for your network scripts. An error similar to the following will generally appear in your logs: + +{{< output >}} +Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: failed to exec /etc/network/if- Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: /etc/network/if-up.d/iptables e +{{< /output >}} + +You can run the following commands to resolve this issue. + + sudo mv /etc/network/if-up.d/iptables ~ + ifdown -a && ifup -a + +Please note that your firewall will be down at this point, so you will need to re-enable it manually. + +### Was your Interface Renamed? + +When viewing the output of the `interfaces` file, or the output from your `ip` commands, if you notice your interfaces have been renamed to something other than `eth0` (for example, `ensp`) this may be due to the latest version of systemd (226-1+ as of writing this guide). Specifically, [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) may be renaming your interfaces. + +1. Disable the use of Predictable Network Interface Names with these commands: + + ln -s /dev/null /etc/systemd/network/99-default.link + ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules + +1. Reboot your Linode for the changes to take effect. + +### Privacy Extensions for IPv6 + +If you are only unable to connect via IPv6, then your Linode may be using an incorrect IPv6 address. Compare the global IPv6 address that appears in the output from your `ip a` command with the value shown in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. If they don't match, then your distribution may be using privacy extensions to generate an incorrect address. + +Include instructions for how to fix this (search kb for privacy extensions) + +### Review Firewall Rules + +If your interface is up but your networking is still down, your firewall may be blocking all connections, including basic ping requests. + +Include instructions for inspecting and dumping firewall rules for iptables and ip6tables. Example commands and text: + + sudo iptables-save + +If you are unable to determine if a specific rule is causing a problem, you can save your iptables to a backup and flush your rules: + + sudo iptables-save > /tmp/iptables.txt + sudo iptables -P INPUT ACCEPT + sudo iptables -P FORWARD ACCEPT + sudo iptables -P OUTPUT ACCEPT + sudo iptables -t nat -F + sudo iptables -t mangle -F + sudo iptables -F + sudo iptables -X + +Guide: https://www.linode.com/docs/security/firewalls/control-network-traffic-with-iptables/ + +Include links to troubleshooting firewalld and other firewall utilities. \ No newline at end of file diff --git a/docs/troubleshooting/troubleshooting-ssh/index.md b/docs/troubleshooting/troubleshooting-ssh/index.md index d12413d7288..5283ce5a340 100644 --- a/docs/troubleshooting/troubleshooting-ssh/index.md +++ b/docs/troubleshooting/troubleshooting-ssh/index.md @@ -5,19 +5,15 @@ author: description: "Troubleshooting steps for when you can't connect to your Linode." keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2019-01-02 -modified: 2019-01-02 +published: 2019-01-21 +modified: 2019-01-21 modified_by: name: Linode -title: "How to Troubleshoot a Connection Problem" +title: "Troubleshooting SSH" --- EDITOR'S NOTE: This outline attempts to cover connection issues logically in ascending order: booting issues -> basic connectivity (routing or network interface issues) -> SSH -> other services (http, mysql, etc) -EDITOR's NOTE: This takes from the [Access Your Linode After Maintenance](https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot) guide and re-structures things. This could serve as an update to that guide (and we could alias from there to here). I don't think there's really much difference between these two guides. - -Or, we could write this guide, and then insert it as a shortguide in the Access Your Linode After Maintenance guide (replacing the bulk of the content in it), then add some extra context at the top of that guide (before the shortguide insertion), and include other context after the shortguide (like linking to the Reboot Survival Guide/offering precautions and preparations for future possible maintenance). - EDITOR'S NOTE: Some of these sections only include commands for systemd or Debian etc. Final version of this guide should optimally include commands for all recent-ish distros. Sometimes through the course of updating or altering a Linode you might be unable to connect to your Linode through SSH or through other services you may run. The following are steps to regain access to your Linode should you lose access to those services. @@ -29,193 +25,6 @@ Also say something like: Various parts of this guide involve running diagnostic troubleshooting commands on your Linode, which can produce clues about the root of your connection issues. Several parts of this guide highlight frequent causes of connection issues and the diagnostic command output they correspond to. If the diagnostic information you've gathered does not match a solution presented here, consider searching the [Linode Community Site](link) for similar issues. Or, post a new question in the Community Site and include your commands' output. {{< /note >}} -## Before You Begin - -There are a few core troubleshooting tools you should familiarize yourself with that will be useful when diagnosing connection problems. - -### Using the Linode Shell (Lish) - -[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Because Lish does not establish a network connection to your Linode, you can use it when networking is down or SSH isn't available. Lish is a valuable tool - -Include instructions here for using Lish, either by linking to Lish guide or embedding them directly. Perhaps embed instructions for using the web console and link to the dedicated guide for terminal connections and other Lish usage. - -{{< note >}} -Include note that all commands in this guide should be executed from Lish, unless SSH access is available, or otherwise specified by the guide (such as when running MTRs from your local computer). -{{< /note >}} - -### Install MTR - -MTR is a troubleshooting tool that can diagnose network routing issues that may exist between your computer and your Linode. Review Linode's MTR guide for instructions on [installing the tool](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) on your computer. - -## Is your Linode Running? - -Login to the Linode Manager and inspect the Linode's dashboard. If the Linode is powered off, turn it on. - -{{< note >}} -If the Linode is running and you can access SSH, but not other services, move down to the [troubleshooting other services](#troubleshoot-other-services) section. -{{< /note >}} - -### Inspect the Lish Console - -If the Linode is listed as running, open the Lish console and look for a login prompt. If a login prompt exists, try logging in with your root user credentials (or other Linux user credentials). - -{{< note >}} -The root user is available in Lish even if root user login is disabled in your SSH configuration. -{{< /note >}} - -If you can login at the Lish console, move on to [checking basic network connectivity](#check-basic-network-connectivity). - -If you do not see a login prompt, your Linode may have [basic issues with booting](#troubleshoot-booting-issues). - -## Troubleshoot Booting Issues - -If your Linode isn't booting normally, you will not be able to rely on the Lish console as you would normally. To continue, you will need to reboot your Linode into *Rescue Mode*, which is a special recovery environment that Linode provides. Entering Rescue Mode will boot the Finnix recovery distribution, and you will be able to mount your normal Linux images from this environment. - -Review the Rescue and Rebuild guide for instructions on [booting into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). Then, connect to Rescue Mode via the Lish console as you would normally. - -### Perform a File System Check - -If your Linode can't boot, then it may have experienced filesystem corruption. Review the Rescue and Rebuild guide for instructions on [running a filesystem check](/docs/troubleshooting/rescue-and-rebuild/#performing-a-file-system-check). - -{{< caution >}} -Never run a filesystem check on a disk that is mounted. -{{< /caution >}} - -### Inspect System and Kernel Logs - -Rescue Mode is capable of mounting your Linux image so that you can investigate further. Furthermore, you can also *change root* within Rescue Mode, which will make Rescue Mode working environment emulate your normal Linux image. This means your files and logs will appear where you normally expect them, and you will be able to work with tools like your standard package manager and other system utilities. To proceed, review the Rescue and Rebuild guide's instructions on [changing root](/docs/troubleshooting/rescue-and-rebuild/#change-root). - -Include instructions for how to review system (e.g. `journalctl`) and kernel logs (`dmesg`) for various distros. Suggest that users search the Linode Community site for messages they find for further troubleshooting help. - -| Distribution | System Logs | Kernel Logs | -| ------------- |-------------| -----| -| CentOS 6 | Inspect `/var/log/messages` | Run `dmesg` -| CentOS 7+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | -| Debian 8+ and Ubuntu 16.04+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | -| Arch | Insert commands and logs files here | Whatever it is | - -### Quick Tip for Ubuntu and Debian Systems - -After you have changed root, the following command may help with issues related to your packages' configuration: - - dpkg --configure -a - -After running this command, try rebooting your Linode into your normal configuration profile. - -## Check Basic Network Connectivity - -Networking issues can have two causes: your Linode may not be responding to network requests normally, or there may be a network routing issue between you and your Linode. - -### Check for Network Route Issues - -EDITOR'S NOTE: include example MTR output in disclosure-note blocks to illsutrate 100% packet loss at Linode vs. packet loss along route (might be harder to generate an example for that. Maybe take from a previous ticket where we ran a report against a Linode IP, potentially from the nlnog ring network?) - -To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). - -If your report shows no packet loss along the route, but 100% packet loss at your Linode, that indicates an issue with your Linode's networking configuration. Move to the next section to continue troubleshooting. - -If your report shows significant packet loss starting part-way through the route, there may be an issue between your internet service provider and Linode's upstream network peers. To confirm this issue, run another test originating from your Linode (by logging in with Lish and running the MTR command from the Linode) to your home computer's IP address. To find out what your local IP is, visit a website like https://www.whatismyip.com/. - -Once you have finished generating these reports, open a Linode support ticket with the results. Linode Support will try to help further diagnose the routing issue. - -{{< note >}} -If you are located in China, there is a chance that your IP has been blacklisted by the GFW (Great Firewall of China). Because this is a systemic issue, Linode is no longer in the process of swapping IP addresses for affected Linodes. You can point the reader to the instructions found here: https://www.linode.com/community/questions/17192/ssh-refused -{{< /note >}} - -### Try Enabling Network Helper - -If your Linode's networking is down, a quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool and then reboot. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. - -- If Network Helper was already enabled, continue to the next sections. -- If you enable it and reboot, try running another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode). If the report shows no packet loss, but you still can't access SSH or other services, this indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) -- If networking is still down after enabling Network Helper, continue to the next sections. - -### Run Standard Diagnostic Commands - -Include instructions for running standard diagnostic commands on different distros, and include expected output. Example commands for Debian 8/9: - - cat /etc/network/interfaces - systemctl status networking.service - ip a - ip r - -### Errors from the networking Service - -If the output from the status of your `networking` service shows an error like `Failed to start Raise network interfaces`, review your logs for further clues: - - sudo systemctl status networking.service -l - sudo journalctl -u networking --no-pager | tail -20 - -#### Sendmail - -If the output from your networking service logs show an error similar to the following, it is likely that a broken Sendmail update is at fault: - -{{< output >}} -/etc/network/if-up.d/sendmail: 44: .: Can't open /usr/share/sendmail/dynamic run-parts: /etc/network/if-up.d/sendmail exited with return code 2 -{{< /output >}} - -The sendmail issue can usually be resolved by running the following two commands: - - sudo mv /etc/network/if-up.d/sendmail ~ - ifdown -a && ifup -a - -You can read more about the SendMail bug at the following link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873978 - -#### iptables - -Malformed rules in your iptables ruleset can sometimes cause issues for your network scripts. An error similar to the following will generally appear in your logs: - -{{< output >}} -Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: failed to exec /etc/network/if- Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: /etc/network/if-up.d/iptables e -{{< /output >}} - -You can run the following commands to resolve this issue. - - sudo mv /etc/network/if-up.d/iptables ~ - ifdown -a && ifup -a - -Please note that your firewall will be down at this point, so you will need to re-enable it manually. - -### Was your Interface Renamed? - -When viewing the output of the `interfaces` file, or the output from your `ip` commands, if you notice your interfaces have been renamed to something other than `eth0` (for example, `ensp`) this may be due to the latest version of systemd (226-1+ as of writing this guide). Specifically, [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) may be renaming your interfaces. - -1. Disable the use of Predictable Network Interface Names with these commands: - - ln -s /dev/null /etc/systemd/network/99-default.link - ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules - -1. Reboot your Linode for the changes to take effect. - -### Privacy Extensions for IPv6 - -If you are only unable to connect via IPv6, then your Linode may be using an incorrect IPv6 address. Compare the global IPv6 address that appears in the output from your `ip a` command with the value shown in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. If they don't match, then your distribution may be using privacy extensions to generate an incorrect address. - -Include instructions for how to fix this (search kb for privacy extensions) - -### Review Firewall Rules - -If your interface is up but your networking is still down, your firewall may be blocking all connections, including basic ping requests. - -Include instructions for inspecting and dumping firewall rules for iptables and ip6tables. Example commands and text: - - sudo iptables-save - -If you are unable to determine if a specific rule is causing a problem, you can save your iptables to a backup and flush your rules: - - sudo iptables-save > /tmp/iptables.txt - sudo iptables -P INPUT ACCEPT - sudo iptables -P FORWARD ACCEPT - sudo iptables -P OUTPUT ACCEPT - sudo iptables -t nat -F - sudo iptables -t mangle -F - sudo iptables -F - sudo iptables -X - -Guide: https://www.linode.com/docs/security/firewalls/control-network-traffic-with-iptables/ - -Include links to troubleshooting firewalld and other firewall utilities. - ## Troubleshoot SSH EDITOR's NOTE: Some example output can be found in https://www.linode.com/community/questions/400/why-cant-i-connect-to-my-linode-via-ssh @@ -281,74 +90,4 @@ Include instructions for checking which SSH private keys are on the client compu ### Is your Firewall Blocking SSH? -Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches SSH (22 by default but could be custom). - -## Troubleshoot Other Services - -If you can establish an SSH connection, but some of your other services aren't working, here's more troubleshooting goodness: - -### Check if the Service is Running - -EDITOR's NOTE: Also include instructions for non-systemd systems - -On systemd systems, check the logs for the service. Example: - - sudo systemctl status mysql -l - sudo journalctl -u mysql - -Try restarting the service: - - sudo systemctl restart mysql - -For Apache issues, review the [Troubleshooting Common Apache Issues](/docs/troubleshooting/troubleshooting-common-apache-issues/) - -### Check if the Service is Enabled at Boot - -Take instructions from https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot - -### Review Application Logs - -EDITOR'S NOTE: Not sure if we should include this section, but possibly: - -Show locations for common application logs maintained outside of the system logs, e.g.: - -MySQL: /var/log/mysql + the slow queries log -Show how to turn slow queries log on - -PHP: /var/log/php, or check phpinfo() from web browser to see where log file is - -Apache: See dedicated apache guide - -NGINX: /var/log/nginx, or check log location in nginx config - -### Is your Disk Full? - -If you're having issues with your database service, one common reason a database might not run as expected is if your disk is full. To check on your current disk usage, run the `df` command: - - df -h - -{{< note >}} -Note about how this is not the same thing as the reported unallocated space in the Linode Manager. -{{< /note >}} - -Include instructions for how to resolve this situation: - -- Free up space on your disk by locating and removing files you don't need, using a tool like du or ncdu - -- Resize the disk if you have any unallocated space on your Linode - -- Upgrade your Linode (either through a free upgrade if one is available or by resizing to a higher tier) and then resize your disk to use the newly available space. - -Or, consider putting those instructions into a new "How to Free Up Space on Your Linode" guide and then link to it. - -### Check which IP Addresses and Ports your Services Are Bound To - -Include instructions for using `netstat -plntu` to see which processes are listening on which ports and which addresses. Possible example problems: - -- Web server is only listening on the IPv4 address, not also the IPv6 address (which is a common problem for users trying to connect to a website via a cell phone, as those networks seem to prefer IPv6). - -- Service not listening on a standard port. Include markdown table of common services+ports - -### Is your Firewall Blocking the Service? - -Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file +Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches SSH (22 by default but could be custom). \ No newline at end of file diff --git a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md new file mode 100644 index 00000000000..68fd5025d38 --- /dev/null +++ b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md @@ -0,0 +1,83 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'Troubleshooting steps to access your Linode after maintenance has been applied to your host.' +keywords: ['linux','reboot','lish'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2019-01-21 +modified: 2019-01-21 +modified_by: + name: Linode +title: "Troubleshooting Web Servers, Databases, and Other Services" +--- + +## Troubleshoot Other Services + +If you can establish an SSH connection, but some of your other services aren't working, here's more troubleshooting goodness: + +### Check if the Service is Running + +EDITOR's NOTE: Also include instructions for non-systemd systems + +On systemd systems, check the logs for the service. Example: + + sudo systemctl status mysql -l + sudo journalctl -u mysql + +Try restarting the service: + + sudo systemctl restart mysql + +For Apache issues, review the [Troubleshooting Common Apache Issues](/docs/troubleshooting/troubleshooting-common-apache-issues/) + +### Check if the Service is Enabled at Boot + +Take instructions from https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot + +### Review Application Logs + +EDITOR'S NOTE: Not sure if we should include this section, but possibly: + +Show locations for common application logs maintained outside of the system logs, e.g.: + +MySQL: /var/log/mysql + the slow queries log +Show how to turn slow queries log on + +PHP: /var/log/php, or check phpinfo() from web browser to see where log file is + +Apache: See dedicated apache guide + +NGINX: /var/log/nginx, or check log location in nginx config + +### Is your Disk Full? + +If you're having issues with your database service, one common reason a database might not run as expected is if your disk is full. To check on your current disk usage, run the `df` command: + + df -h + +{{< note >}} +Note about how this is not the same thing as the reported unallocated space in the Linode Manager. +{{< /note >}} + +Include instructions for how to resolve this situation: + +- Free up space on your disk by locating and removing files you don't need, using a tool like du or ncdu + +- Resize the disk if you have any unallocated space on your Linode + +- Upgrade your Linode (either through a free upgrade if one is available or by resizing to a higher tier) and then resize your disk to use the newly available space. + +Or, consider putting those instructions into a new "How to Free Up Space on Your Linode" guide and then link to it. + +### Check which IP Addresses and Ports your Services Are Bound To + +Include instructions for using `netstat -plntu` to see which processes are listening on which ports and which addresses. Possible example problems: + +- Web server is only listening on the IPv4 address, not also the IPv6 address (which is a common problem for users trying to connect to a website via a cell phone, as those networks seem to prefer IPv6). + +- Service not listening on a standard port. Include markdown table of common services+ports + +### Is your Firewall Blocking the Service? + +Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file From 09ef7fefa94cdf7b76e18ea2872d50679f3eaaf5 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Fri, 25 Jan 2019 09:07:04 -0500 Subject: [PATCH 12/38] Drafts for new troubleshooting guides Finished drafts for new guides: Troubleshooting Basic Connection Issues Troubleshooting SSH Troubleshooting Web Servers, Databases, and Other Services Updated the "Troubleshooting" (/docs/troubleshooting/troubleshooting) guide to link to the other troubleshooting guides, and renamed it to Troubleshooting Overview --- .../index.md | 372 +++++++++++++----- .../troubleshooting-ssh/index.md | 248 ++++++++++-- .../index.md | 198 ++++++++-- docs/troubleshooting/troubleshooting/index.md | 243 ++---------- 4 files changed, 690 insertions(+), 371 deletions(-) diff --git a/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md b/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md index 9f8468f633a..23d9c44f5c7 100644 --- a/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md +++ b/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md @@ -2,179 +2,340 @@ author: name: Linode email: docs@linode.com -description: 'Troubleshooting steps to access your Linode after maintenance has been applied to your host.' +description: 'Troubleshooting steps to help restore basic connectivity to your Linode when it is unresponsive.' keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2019-01-21 -modified: 2019-01-21 +published: 2019-01-25 +modified: 2019-01-25 modified_by: name: Linode -title: "Troubleshooting Basic Connectivity Issues" +title: "Troubleshooting Basic Connection Issues" --- -EDITOR'S NOTE: This outline attempts to cover connection issues logically in ascending order: booting issues -> basic connectivity (routing or network interface issues) -> SSH -> other services (http, mysql, etc) +This guide presents troubleshooting strategies for Linodes that are unresponsive to any network access. One reason that a Linode may be unresponsive is if you recently performed a distribution upgrade or other broad software updates to your Linode, as those changes can lead to unexpected problems for your core system components. -EDITOR'S NOTE: Some of these sections only include commands for systemd or Debian etc. Final version of this guide should optimally include commands for all recent-ish distros. +Or, your server may be unresponsive after maintenance was applied by Linode to your server's host (frequently, this is correlated with software/distribution upgrades performed on your deployment prior to the host maintenance). This guide is designed as a useful resource for either of these scenarios. -Sometimes through the course of updating or altering a Linode you might be unable to connect to your Linode through SSH or through other services you may run. The following are steps to regain access to your Linode should you lose access to those services. +If you can [ping](/docs/tools-reference/linux-system-administration-basics/#the-ping-command) your Linode, but you cannot access SSH or other services, this guide will not assist with troubleshooting those services. Instead, refer to the [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) or [Troubleshooting Web Servers, Databases, and Other Services](/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/) guides. -{{< note >}} -Linode is not responsible for the configuration or installation of software on your Linode, etc. Could link to the newly edited Support guide for more information, or a link to the TOS. +{{< disclosure-note "Where to go for help outside this guide" >}} +This guide explains how to use different troubleshooting commands on your Linode. These commands can produce diagnostic information and logs that may expose the root of your connection issues. For some specific examples of diagnostic information, this guide also explains the corresponding cause of the issue and presents solutions for it. -Also say something like: -Various parts of this guide involve running diagnostic troubleshooting commands on your Linode, which can produce clues about the root of your connection issues. Several parts of this guide highlight frequent causes of connection issues and the diagnostic command output they correspond to. If the diagnostic information you've gathered does not match a solution presented here, consider searching the [Linode Community Site](link) for similar issues. Or, post a new question in the Community Site and include your commands' output. -{{< /note >}} +If the information and logs you gather do not match a solution outlined here, consider searching the [Linode Community Site](https://www.linode.com/community/questions/) for posts that match your system's symptoms. Or, post a new question in the Community Site and include your commands' output. + +Linode is not responsible for the configuration or installation of software on your Linode. Refer to Linode's [Scope of Support](/docs/platform/billing-and-support/support/#scope-of-support) for a description of which issues Linode Support can help with. +{{< /disclosure-note >}} ## Before You Begin -There are a few core troubleshooting tools you should familiarize yourself with that will be useful when diagnosing connection problems. +There are a few core troubleshooting tools you should familiarize yourself with that are used when diagnosing connection problems. -### Using the Linode Shell (Lish) +### The Linode Shell (Lish) -[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Because Lish does not establish a network connection to your Linode, you can use it when networking is down or SSH isn't available. Lish is a valuable tool +[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Lish does not establish a network connection to your Linode, so you can use it when your networking is down or SSH is inaccessible. Much of your troubleshooting for basic connection issues will be performed from the Lish console. -Include instructions here for using Lish, either by linking to Lish guide or embedding them directly. Perhaps embed instructions for using the web console and link to the dedicated guide for terminal connections and other Lish usage. +To learn about Lish in more detail, and for instructions on how to connect to your Linode via Lish, review the [Using the Linode Shell (Lish)](/docs/platform/manager/using-the-linode-shell-lish/) guide. In particular, [using your web browser](/docs/platform/manager/using-the-linode-shell-lish/#use-a-web-browser) is a fast and simple way to access Lish. -{{< note >}} -Include note that all commands in this guide should be executed from Lish, unless SSH access is available, or otherwise specified by the guide (such as when running MTRs from your local computer). -{{< /note >}} +### MTR -### Install MTR +When your network traffic leaves your computer for your Linode, it travels through a series of routers that are administered by your internet service provider, by Linode's transit providers, and by the various organizations that form the [Internet's backbone](https://en.wikipedia.org/wiki/Internet_backbone). It is possible to analyze the route that your traffic takes for possible service interruptions using a tool called [MTR](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/). -MTR is a troubleshooting tool that can diagnose network routing issues that may exist between your computer and your Linode. Review Linode's MTR guide for instructions on [installing the tool](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) on your computer. +MTR is similar to the [traceroute](https://en.wikipedia.org/wiki/Traceroute) tool, in that it will trace and display your traffic's route. MTR also runs several iterations of its tracing algorithim, which means that it can report statistics like average packet loss and latency over the period that the MTR test runs. -## Is your Linode Running? +Review the installation instructions in Linode's [Diagnosing Network Issues with MTR](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) guide and install MTR on your computer. -Login to the Linode Manager and inspect the Linode's dashboard. If the Linode is powered off, turn it on. +## Is your Linode Running? -{{< note >}} -If the Linode is running and you can access SSH, but not other services, move down to the [troubleshooting other services](#troubleshoot-other-services) section. -{{< /note >}} +Log in to the Linode Manager and inspect the Linode's dashboard. If the Linode is powered off, [turn it on](/docs/getting-started/#boot-your-linode). ### Inspect the Lish Console -If the Linode is listed as running, open the Lish console and look for a login prompt. If a login prompt exists, try logging in with your root user credentials (or other Linux user credentials). +If the Linode is listed as running in the Manager, or after you boot it from the Manager, open the Lish console and look for a login prompt. If a login prompt exists, try logging in with your root user credentials (or any other Linux user credentials that you previously created on the server). {{< note >}} The root user is available in Lish even if root user login is disabled in your SSH configuration. {{< /note >}} -If you can login at the Lish console, move on to [checking basic network connectivity](#check-basic-network-connectivity). +1. If you can log in at the Lish console, move on to [diagnosing network connection issues](#diagnosing-network-connection-issues). -If you do not see a login prompt, your Linode may have [basic issues with booting](#troubleshoot-booting-issues). + If you see a log in prompt, but you have forgotten the credentials for your Linode, follow the instructions for [resetting your root password](/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/) and then attempt to log in at the Lish console again. + +2. If you do not see a login prompt, your Linode may have [issues with booting](#troubleshoot-booting-issues). ## Troubleshoot Booting Issues -If your Linode isn't booting normally, you will not be able to rely on the Lish console as you would normally. To continue, you will need to reboot your Linode into *Rescue Mode*, which is a special recovery environment that Linode provides. Entering Rescue Mode will boot the Finnix recovery distribution, and you will be able to mount your normal Linux images from this environment. +If your Linode isn't booting normally, you will not be able to rely on the Lish console to troubleshoot your deployment directly. To continue, you will first need to reboot your Linode into [Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#rescuing), which is a special recovery environment that Linode provides. + +When you boot into Rescue Mode, you are booting your Linode into the [Finnix recovery Linux distribution](https://www.finnix.org). This Finnix image includes a working network configuration, and you will be able to mount your Linode's disks from this environment, which means that you can access your files. -Review the Rescue and Rebuild guide for instructions on [booting into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). Then, connect to Rescue Mode via the Lish console as you would normally. +1. Review the Rescue and Rebuild guide for instructions and [boot into Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). If your Linode does not reboot into Rescue Mode successfully, please [contact Linode Support](/docs/platform/billing-and-support/support/#contacting-linode-support). + +1. Connect to Rescue Mode via the Lish console as you would normally. You will not be required to enter a username or password to start using the Lish console while in Rescue Mode. ### Perform a File System Check -If your Linode can't boot, then it may have experienced filesystem corruption. Review the Rescue and Rebuild guide for instructions on [running a filesystem check](/docs/troubleshooting/rescue-and-rebuild/#performing-a-file-system-check). +If your Linode can't boot, then it may have experienced filesystem corruption. + +1. Review the Rescue and Rebuild guide for instructions on [running a filesystem check](/docs/troubleshooting/rescue-and-rebuild/#performing-a-file-system-check). -{{< caution >}} + {{< caution >}} Never run a filesystem check on a disk that is mounted. {{< /caution >}} +1. If your filesystem check reports errors that cannot be fixed, you may need to [rebuild your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). + +1. If the filesystem check reports errors that it has fixed, try rebooting your Linode under your normal [configuration profile](/docs/platform/disk-images/disk-images-and-configuration-profiles/#configuration-profiles). After you reboot, you may find that your connection issues are resolved. If you still cannot connect as normal, restart the troubleshooting process from the [beginning of this guide](#is-your-linode-running). + +1. If the filesystem check does not report any errors, there may be another reason for your booting issues. Continue to [inspecting your system and kernel logs](#inspect-system-and-kernel-logs). + ### Inspect System and Kernel Logs -Rescue Mode is capable of mounting your Linux image so that you can investigate further. Furthermore, you can also *change root* within Rescue Mode, which will make Rescue Mode working environment emulate your normal Linux image. This means your files and logs will appear where you normally expect them, and you will be able to work with tools like your standard package manager and other system utilities. To proceed, review the Rescue and Rebuild guide's instructions on [changing root](/docs/troubleshooting/rescue-and-rebuild/#change-root). +In addition to being able to mount your Linode's disks, you can also *change root* (sometimes abbreviated at *chroot*) within Rescue Mode. *Chrooting* will make Rescue Mode's working environment emulate your normal Linux distribution. This means your files and logs will appear where you normally expect them, and you will be able to work with tools like your standard package manager and other system utilities. + +To proceed, review the Rescue and Rebuild guide's instructions on [changing root](/docs/troubleshooting/rescue-and-rebuild/#change-root). Once you have chrooted, you can then investigate your Linode's logs for messages that may describe the cause of your booting issues. -Include instructions for how to review system (e.g. `journalctl`) and kernel logs (`dmesg`) for various distros. Suggest that users search the Linode Community site for messages they find for further troubleshooting help. +In systemd Linux distributions (like Debian 8+, Ubuntu 16.04+, CentOS 7+, and recent releases of Arch), you can run the [`journalctl` command](/docs/quick-answers/linux/how-to-use-journalctl/) to view system and kernel logs. In these and other distributions, you may also find system log messages in the following files: -| Distribution | System Logs | Kernel Logs | -| ------------- |-------------| -----| -| CentOS 6 | Inspect `/var/log/messages` | Run `dmesg` -| CentOS 7+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | -| Debian 8+ and Ubuntu 16.04+ | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | Run `dmesg` | -| Arch | Insert commands and logs files here | Whatever it is | +- `/var/log/messages` + +- `/var/log/syslog` + +- `/var/log/kern.log` + +- `/var/log/dmesg` + +You can use the [`less` command](/docs/quick-answers/linux/how-to-use-less/) to review the contents of these files (e.g. `less /var/log/syslog`). Try pasting your messages into a search engine or searching for your messages in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. If it becomes difficult to find a solution, you may need to [rebuild your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). ### Quick Tip for Ubuntu and Debian Systems -After you have changed root, the following command may help with issues related to your packages' configuration: +After you have chrooted inside Rescue Mode, the following command may help with issues related to your package manager's configuration: dpkg --configure -a -After running this command, try rebooting your Linode into your normal configuration profile. +After running this command, try rebooting your Linode into your normal configuration profile. If your issues persist, you may need to investigate and research your system logs further, or consider [rebuilding your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). + +## Diagnose Network Connection Issues -## Check Basic Network Connectivity +If you can boot your Linode normally and access the Lish console, you can continue investigating network issues. Networking issues may have two causes: -Networking issues can have two causes: your Linode may not be responding to network requests normally, or there may be a network routing issue between you and your Linode. +- There may be a network routing problem between you and your Linode, or: -### Check for Network Route Issues +- If the traffic is properly routed, your Linode's network configuration may be malfunctioning. -EDITOR'S NOTE: include example MTR output in disclosure-note blocks to illsutrate 100% packet loss at Linode vs. packet loss along route (might be harder to generate an example for that. Maybe take from a previous ticket where we ran a report against a Linode IP, potentially from the nlnog ring network?) +### Check for Network Route Problems -To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). +To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). It is useful to run your MTR report for 100 cycles in order to get a good sample size (note that running a report with this many cycles can take more time to complete). This recommended command includes other helpful options: -If your report shows no packet loss along the route, but 100% packet loss at your Linode, that indicates an issue with your Linode's networking configuration. Move to the next section to continue troubleshooting. + mtr -rwbzc 100 -i 0.2 -rw 198.51.100.0 -If your report shows significant packet loss starting part-way through the route, there may be an issue between your internet service provider and Linode's upstream network peers. To confirm this issue, run another test originating from your Linode (by logging in with Lish and running the MTR command from the Linode) to your home computer's IP address. To find out what your local IP is, visit a website like https://www.whatismyip.com/. +Once you have generated this report, compare it with the following example scenarios. -Once you have finished generating these reports, open a Linode support ticket with the results. Linode Support will try to help further diagnose the routing issue. +{{< note >}} +If you are located in China, and the output of your MTR report shows *high packet loss* or an *improperly configured router*, then your IP address may have been blacklisted by the GFW (Great Firewall of China). Linode is not able to change your IP address if it has been blacklisted by the GFW. If you have this issue, review this [community post](https://www.linode.com/community/questions/17192/ssh-refused) for troubleshooting help. +{{< /note >}} + +- **High Packet Loss** + + root@localhost:~# mtr --report www.google.com + HOST: localhost Loss% Snt Last Avg Best Wrst StDev + 1. 63.247.74.43 0.0% 10 0.3 0.6 0.3 1.2 0.3 + 2. 63.247.64.157 0.0% 10 0.4 1.0 0.4 6.1 1.8 + 3. 209.51.130.213 60.0% 10 0.8 2.7 0.8 19.0 5.7 + 4. aix.pr1.atl.google.com 60.0% 10 6.7 6.8 6.7 6.9 0.1 + 5. 72.14.233.56 50.0% 10 7.2 8.3 7.1 16.4 2.9 + 6. 209.85.254.247 40.0% 10 39.1 39.4 39.1 39.7 0.2 + 7. 64.233.174.46 40.0% 10 39.6 40.4 39.4 46.9 2.3 + 8. gw-in-f147.1e100.net 40.0% 10 39.6 40.5 39.5 46.7 2.2 + + This example report shows high persistent packet to the end of the route loss starting mid-way through the route at hop 3, which indicates an issue with the router at hop 3. If your report looks like this, [open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. + + {{< note >}} +If your route only shows packet loss at certain routers, and not through to the end of the route, then it is likely that those routers are purposefully limiting ICMP responses. This is generally not a problem for your connection. Linode's MTR guide provides more context for [packet loss issues](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#verify-packet-loss). +{{< /note >}} + + If your report looks like this, [open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. As well, Linode's MTR guide provides more context for [packet loss issues](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#verify-packet-loss). + +- **Improperly Configured Router** + + root@localhost:~# mtr --report www.google.com + HOST: localhost Loss% Snt Last Avg Best Wrst StDev + 1. 63.247.74.43 0.0% 10 0.3 0.6 0.3 1.2 0.3 + 2. 63.247.64.157 0.0% 10 0.4 1.0 0.4 6.1 1.8 + 3. 209.51.130.213 0.0% 10 0.8 2.7 0.8 19.0 5.7 + 4. aix.pr1.atl.google.com 0.0% 10 6.7 6.8 6.7 6.9 0.1 + 5. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + 6. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + 7. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + 8. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + 9. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + 10. ??? 0.0% 10 0.0 0.0 0.0 0.0 0.0 + + If your report shows question marks instead of the hostnames (or IP addresses) of the routers, and if these question marks persist to the end of the route, then the report indicates an improperly configured router. If your report looks like this, [open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. + + {{< note >}} +If your route only shows question marks for certain routers, and not through to the end of the route, then it is likely that those routers are purposefully blocking ICMP responses. This is generally not a problem for your connection. Linode's MTR guide provides more information about [router configuration issues](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#an-isp-router-is-not-configured-properly). +{{< /note >}} + +- **Destination Host Networking Improperly Configured** + + root@localhost:~# mtr --report www.google.com + HOST: localhost Loss% Snt Last Avg Best Wrst StDev + 1. 63.247.74.43 0.0% 10 0.3 0.6 0.3 1.2 0.3 + 2. 63.247.64.157 0.0% 10 0.4 1.0 0.4 6.1 1.8 + 3. 209.51.130.213 0.0% 10 0.8 2.7 0.8 19.0 5.7 + 4. aix.pr1.atl.google.com 0.0% 10 6.7 6.8 6.7 6.9 0.1 + 5. 72.14.233.56 0.0% 10 7.2 8.3 7.1 16.4 2.9 + 6. 209.85.254.247 0.0% 10 39.1 39.4 39.1 39.7 0.2 + 7. 64.233.174.46 0.0% 10 39.6 40.4 39.4 46.9 2.3 + 8. gw-in-f147.1e100.net 100.0 10 0.0 0.0 0.0 0.0 0.0 + + If your report shows no or low packet loss (or non-persistent packet loss isolated to certain routers) until the end of the route, and 100% loss at your Linode, then the report indicates that your Linode's network interface is not configured correctly. If your report looks like this, move down to [confirming network configuration issues from Rescue Mode](#confirm-network-configuration-issues-from-rescue-mode). {{< note >}} -If you are located in China, there is a chance that your IP has been blacklisted by the GFW (Great Firewall of China). Because this is a systemic issue, Linode is no longer in the process of swapping IP addresses for affected Linodes. You can point the reader to the instructions found here: https://www.linode.com/community/questions/17192/ssh-refused +If your report does not look like any of the previous examples, read through the [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/) for other potential scenarios. {{< /note >}} +### Confirm Network Configuration Issues from Rescue Mode + +If your MTR indicates a configuration issue within your Linode, you can confirm the problem by using Rescue Mode: + +1. Reboot your Linode into [Rescue Mode](/docs/troubleshooting/rescue-and-rebuild/#booting-into-rescue-mode). + +1. Run another MTR report from your computer to your Linode's IP address. + +1. As noted earlier, Rescue Mode boots with a working network configuration. If your new MTR report does not show the same packet loss that it did before, this result confirms that your deployment's network configuration needs to be fixed. Continue to [troubleshooting network configuration issues](#troubleshoot-network-configuration-issues). + +1. If your new MTR report still shows the same packet loss at your Linode, this result indicates issues outside of your configuration. [Open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. + +### Open a Support Ticket with your MTR Results + +Before opening a support ticket, you should also generate a *reverse MTR*. A reverse MTR is a report which you run from your Linode and which targets your local IP address. To run an MTR from your Linode, open and log in to your Lish console. To find out what your local IP is, visit a website like https://www.whatismyip.com/. + +Once you have generated your original MTR and your reverse MTR, [open a Linode support ticket](/docs/platform/billing-and-support/support/#contacting-linode-support), and include your reports and a description of the troubleshooting you've performed so far. Linode Support will try to help further diagnose the routing issue. + +## Troubleshoot Network Configuration Issues + +If you have determined that your network configuration is the cause of the problem, review the following troubleshooting suggestions. + +If you make any changes in an attempt to fix the issue, you can test those changes with these steps: + +1. Run another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode) from your computer to your Linode's IP. + +1. If the report shows no packet loss, but you still can't access SSH or other services, this result indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) + +1. If the report still shows the same packet loss, review the remaining troubleshooting suggestions in this section. + +If the recommendations in this section do not resolve your issue, try pasting your [diagnostic commands' output](#run-diagnostic-commands) into a search engine or searching for your output in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. If it becomes difficult to find a solution, you may need to [rebuild your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). + ### Try Enabling Network Helper -If your Linode's networking is down, a quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool and then reboot. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. +A quick fix may be to enable Linode's [Network Helper](/docs/platform/network-helper/) tool. Network Helper will attempt to generate the appropriate static networking configuration for your Linux distribution. After you enable Network Helper, reboot your Linode for the changes take effect. If Network Helper was already enabled, continue to the remaining troubleshooting suggestions in this section. + +### Did You Upgrade to Ubuntu 18.04+ From an Earlier Version? + +If you performed an inline upgrade from an earlier version of Ubuntu to Ubuntu 18.04+, you may need to enable the `systemd-networkd` service: + + sudo systemctl enable systemd-networkd + +Afterwards, reboot your Linode. + +### Run Diagnostic Commands + +To collect more information about your network configuration, collect output from the diagnostic commands appropriate for your distribution: + +{{< disclosure-note "Network diagnostic commands" >}} +- **Debian 7, Ubuntu 14.04** + + sudo service network status + cat /etc/network/interfaces + ip a + ip r + sudo ifdown eth0 && sudo ifup eth0 + +- **Debian 8 and 9, Ubuntu 16.04** + + sudo systemctl status networking.service -l + sudo journalctl -u networking --no-pager | tail -20 + cat /etc/network/interfaces + ip a + ip r + sudo ifdown eth0 && sudo ifup eth0 + +- **Ubuntu 18.04** + + sudo networkctl status + sudo systemctl status systemd-networkd -l + sudo journalctl -u systemd-networkd --no-pager | tail -20 + cat /etc/systemd/network/05-eth0.network + ip a + ip r + sudo netplan apply -- If Network Helper was already enabled, continue to the next sections. -- If you enable it and reboot, try running another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode). If the report shows no packet loss, but you still can't access SSH or other services, this indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) -- If networking is still down after enabling Network Helper, continue to the next sections. +- **Arch, CoreOS** -### Run Standard Diagnostic Commands + sudo systemctl status systemd-networkd -l + sudo journalctl -u systemd-networkd --no-pager | tail -20 + cat /etc/systemd/network/05-eth0.network + ip a + ip r -Include instructions for running standard diagnostic commands on different distros, and include expected output. Example commands for Debian 8/9: +- **CentOS 6** - cat /etc/network/interfaces - systemctl status networking.service - ip a - ip r + sudo service network status + cat /etc/sysconfig/network-scripts/ifcfg-eth0 + ip a + ip r + sudo ifdown eth0 && sudo ifup eth0 -### Errors from the networking Service +- **CentOS 7, Fedora** -If the output from the status of your `networking` service shows an error like `Failed to start Raise network interfaces`, review your logs for further clues: + sudo systemctl status NetworkManager -l + sudo journalctl -u NetworkManager --no-pager | tail -20 + sudo nmcli + cat /etc/sysconfig/network-scripts/ifcfg-eth0 + ip a + ip r + sudo ifdown eth0 && sudo ifup eth0 +{{< /disclosure-note >}} - sudo systemctl status networking.service -l - sudo journalctl -u networking --no-pager | tail -20 +### Inspect Error Messages + +Your commands' output may show error messages, including generic errors like `Failed to start Raise network interfaces`. There may also be more specific errors that appear. Two common errors that can appear are related to Sendmail and iptables: #### Sendmail -If the output from your networking service logs show an error similar to the following, it is likely that a broken Sendmail update is at fault: +If you find message similar to the following, it is likely that a broken Sendmail update is at fault: {{< output >}} /etc/network/if-up.d/sendmail: 44: .: Can't open /usr/share/sendmail/dynamic run-parts: /etc/network/if-up.d/sendmail exited with return code 2 {{< /output >}} -The sendmail issue can usually be resolved by running the following two commands: +The Sendmail issue can usually be resolved by running the following command and restarting your Linode: sudo mv /etc/network/if-up.d/sendmail ~ ifdown -a && ifup -a -You can read more about the SendMail bug at the following link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873978 +{{< note >}} +Read more about the Sendmail bug [here](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873978). +{{< /note >}} #### iptables -Malformed rules in your iptables ruleset can sometimes cause issues for your network scripts. An error similar to the following will generally appear in your logs: +Malformed rules in your iptables ruleset can sometimes cause issues for your network scripts. An error similar to the following can appear in your logs if this is the case: {{< output >}} Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: failed to exec /etc/network/if- Apr 06 01:03:17 xlauncher ifup[6359]: run-parts: /etc/network/if-up.d/iptables e {{< /output >}} -You can run the following commands to resolve this issue. +Run the following command and restart your Linode to resolve this issue: sudo mv /etc/network/if-up.d/iptables ~ - ifdown -a && ifup -a -Please note that your firewall will be down at this point, so you will need to re-enable it manually. +Please note that your firewall will be down at this point, so you will need to re-enable it manually. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide for help with managing iptables. ### Was your Interface Renamed? -When viewing the output of the `interfaces` file, or the output from your `ip` commands, if you notice your interfaces have been renamed to something other than `eth0` (for example, `ensp`) this may be due to the latest version of systemd (226-1+ as of writing this guide). Specifically, [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) may be renaming your interfaces. +In your commands' output, you might notice that your 'eth0' interface is missing and replaced with another name (for example, `ensp` or `ensp0`). This behavior can be caused by systemd's [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) feature. 1. Disable the use of Predictable Network Interface Names with these commands: @@ -183,31 +344,58 @@ When viewing the output of the `interfaces` file, or the output from your `ip` c 1. Reboot your Linode for the changes to take effect. -### Privacy Extensions for IPv6 +### Review Firewall Rules -If you are only unable to connect via IPv6, then your Linode may be using an incorrect IPv6 address. Compare the global IPv6 address that appears in the output from your `ip a` command with the value shown in the [Remote Access tab](/docs/platform/manager/remote-access/) of your Linode's dashboard. If they don't match, then your distribution may be using privacy extensions to generate an incorrect address. +If your interface is up but your networking is still down, your firewall (which is likely implemented by the `iptables` software) may be blocking all connections, including basic ping requests. To review your current firewall ruleset, run: -Include instructions for how to fix this (search kb for privacy extensions) + sudo iptables-save # displays IPv4 rules + sudo ip6tables-save # displays IPv6 rules -### Review Firewall Rules +{{< note >}} +Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: + + sudo ufw status + sudo firewall-cmd --state + +Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. +{{< /note >}} + +Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. + +### Disable Firewall Rules + +In addition to analyzing your firewall ruleset, you can also temporarily disable your firewall to test if it is interfering with your connections. Leaving your firewall disabled increases your security risk, so we recommend re-enabling afterward it with a modified ruleset that will accept your connections. Review [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) for help with this subject. + +1. Create a temporary backup of your current iptables: + + sudo iptables-save > ~/iptables.txt + +1. Set the `INPUT`, `FORWARD` and `OUTPUT` packet policies as `ACCEPT`: + + sudo iptables -P INPUT ACCEPT + sudo iptables -P FORWARD ACCEPT + sudo iptables -P OUTPUT ACCEPT + +1. Flush the `nat` table that is consulted when a packet that creates a new connection is encountered: + + sudo iptables -t nat -F + +1. Flush the `mangle` table that is used for specialized packet alteration: + + sudo iptables -t mangle -F + +1. Flush all the chains in the table: -If your interface is up but your networking is still down, your firewall may be blocking all connections, including basic ping requests. + sudo iptables -F -Include instructions for inspecting and dumping firewall rules for iptables and ip6tables. Example commands and text: +1. Delete every non-built-in chain in the table: - sudo iptables-save + sudo iptables -X -If you are unable to determine if a specific rule is causing a problem, you can save your iptables to a backup and flush your rules: +1. Repeat these steps with the `ip6tables` command to flush your IPv6 rules. Be sure to assign a different name to the file you save your IPv6 rules to (e.g. `~/ip6tables.txt`). - sudo iptables-save > /tmp/iptables.txt - sudo iptables -P INPUT ACCEPT - sudo iptables -P FORWARD ACCEPT - sudo iptables -P OUTPUT ACCEPT - sudo iptables -t nat -F - sudo iptables -t mangle -F - sudo iptables -F - sudo iptables -X +## Next Steps -Guide: https://www.linode.com/docs/security/firewalls/control-network-traffic-with-iptables/ +If you are able to restore basic networking, but you still can't access SSH or other services, refer to the [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) or [Troubleshooting Web Servers, Databases, and Other Services](/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/) guides. -Include links to troubleshooting firewalld and other firewall utilities. \ No newline at end of file +If your connection issues were the result of maintenance performed by Linode, review the [Reboot Survival Guide](/docs/uptime/reboot-survival-guide/) for methods to prepare a Linode for any future maintenance. \ No newline at end of file diff --git a/docs/troubleshooting/troubleshooting-ssh/index.md b/docs/troubleshooting/troubleshooting-ssh/index.md index 5283ce5a340..c0bbef1cfab 100644 --- a/docs/troubleshooting/troubleshooting-ssh/index.md +++ b/docs/troubleshooting/troubleshooting-ssh/index.md @@ -2,92 +2,256 @@ author: name: Linode email: docs@linode.com -description: "Troubleshooting steps for when you can't connect to your Linode." +description: "Troubleshooting steps for when you can't connect to your Linode via SSH." keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2019-01-21 -modified: 2019-01-21 +published: 2019-01-25 +modified: 2019-01-25 modified_by: name: Linode title: "Troubleshooting SSH" --- -EDITOR'S NOTE: This outline attempts to cover connection issues logically in ascending order: booting issues -> basic connectivity (routing or network interface issues) -> SSH -> other services (http, mysql, etc) +This guide presents troubleshooting strategies for when you can't connect to your Linode via SSH. If you currently cannot [ping](/docs/tools-reference/linux-system-administration-basics/#the-ping-command) your Linode, then your server also likely has more basic connection issues. If this is the case, you should instead follow the [Troubleshooting Basic Connection Issues](/docs/troubleshooting/troubleshooting-basic-connection-issues/) guide. If you restore basic networking to your Linode but still can't access SSH, return to this guide. -EDITOR'S NOTE: Some of these sections only include commands for systemd or Debian etc. Final version of this guide should optimally include commands for all recent-ish distros. +If you can access SSH but not other services, refer to the [Troubleshooting Web Servers, Databases, and Other Services](/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/) guide. -Sometimes through the course of updating or altering a Linode you might be unable to connect to your Linode through SSH or through other services you may run. The following are steps to regain access to your Linode should you lose access to those services. +{{< disclosure-note "Where to go for help outside this guide" >}} +This guide explains how to use different troubleshooting commands on your Linode. These commands can produce diagnostic information and logs that may expose the root of your connection issues. For some specific examples of diagnostic information, this guide also explains the corresponding cause of the issue and presents solutions for it. -{{< note >}} -Linode is not responsible for the configuration or installation of software on your Linode, etc. Could link to the newly edited Support guide for more information, or a link to the TOS. +If the information and logs you gather do not match a solution outlined here, consider searching the [Linode Community Site](https://www.linode.com/community/questions/) for posts that match your system's symptoms. Or, post a new question in the Community Site and include your commands' output. -Also say something like: -Various parts of this guide involve running diagnostic troubleshooting commands on your Linode, which can produce clues about the root of your connection issues. Several parts of this guide highlight frequent causes of connection issues and the diagnostic command output they correspond to. If the diagnostic information you've gathered does not match a solution presented here, consider searching the [Linode Community Site](link) for similar issues. Or, post a new question in the Community Site and include your commands' output. -{{< /note >}} +Linode is not responsible for the configuration or installation of software on your Linode. Refer to Linode's [Scope of Support](/docs/platform/billing-and-support/support/#scope-of-support) for a description of which issues Linode Support can help with. +{{< /disclosure-note >}} -## Troubleshoot SSH +## Before You Begin -EDITOR's NOTE: Some example output can be found in https://www.linode.com/community/questions/400/why-cant-i-connect-to-my-linode-via-ssh +Before troubleshooting your SSH service, familiarize yourself with the Linode Shell: -We may need to include more new example output here thats not in that community question. It could be good to insert those into disclosure-notes (Attempt to Connect to SSH in Verbose Mode section shows how to do that). +### The Linode Shell (Lish) -### Review SSH Service Status and Logs +[*Lish*](/docs/platform/manager/using-the-linode-shell-lish/) is a shell that provides access to your Linode's serial console. Lish does not establish a network connection to your Linode, so you can use it when your networking is down or SSH is inaccessible. While troubleshooting SSH, all commands you enter on your Linode will be performed from the Lish console. -Check on status: +To learn about Lish in more detail, and for instructions on how to connect to your Linode via Lish, review the [Using the Linode Shell (Lish)](/docs/platform/manager/using-the-linode-shell-lish/) guide. In particular, [using your web browser](/docs/platform/manager/using-the-linode-shell-lish/#use-a-web-browser) is a fast and simple way to access Lish. - sudo systemctl status ssh -l +### Forgotten your Password? -If it's not running, try restarting it: +If you have forgotten your Linux user's password, you will not be able to log in with Lish. You can reset the root password for your Linode with [these instructions](/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/). If you are logged in as root, you can change the password of another user with the `passwd` command: - sudo systemctl restart ssh + passwd -If it won't run, check for error messages: +If you reset your password and can log in with Lish, try logging in with SSH, as that may have been the cause of your connection problems. - sudo journalctl -u ssh --no-pager | tail -20 +## Troubleshoot Unresponsive SSH Connections -### Review SSH Login Attempts +If your SSH connection attempts are timing out or are being immediately rejected, then your SSH daemon may not be running, or your firewall may be blocking SSH connections. This section will help troubleshoot these issues. -[Use the `less` command](/docs/quick-answers/linux/how-to-use-less/) to inspect your authorization logs: +If your connections are *not* timing out or being rejected, or if you are able to resolve these issues but you still can't access SSH because of rejected login attempts, then continue to [troubleshooting rejected SSH logins](#troubleshooting-rejected-SSH-logins). - sudo less /var/log/auth.log # Ubuntu/Debian - sudo less /var/log/secure # CentOS +### Is SSH Running? -### Attempt to Connect to SSH in Verbose Mode +1. To check on the status of your SSH daemon, run: -SSH into your server from your local computer in verbose mode: + | Distribution | Command                                            | + | ------------ | ------- | + | systemd systems (Arch, Ubuntu 16.04+, Debian 8+, CentOS 7+, etc) | `sudo systemctl status sshd -l` | + | CentOS 6 | `sudo service sshd status` | + | Ubuntu 14.04, Debian 7 | `sudo service ssh status` | - ssh -vvv @ +1. If the command reports the service is running, review the [Is SSH Running on a Non-Standard Port?](#is-ssh-running-on-a-non-standard-port) section. -This will give exacting details about why the SSH connection is not working, and may be useful. +1. If the command reports the service is not running, then try restarting it: -{{< disclosure-note "Example output from a successful connection" >}} -Include example successful connection output here -{{< /disclosure-note >}} + | Distribution | Command | + | ------------ | ------- | + | systemd systems | `sudo systemctl restart sshd` | + | CentOS 6 | `sudo service sshd restart` | + | Ubuntu 14.04, Debian 7 | `sudo service ssh restart` | + +1. Check the status of the service again. If it's still not running, view the logs for the service: + + | Distribution | Command | + | ------------ | ------- | + | systemd systems | `sudo journalctl -u sshd -u ssh` | + | CentOS 6 | `less /var/log/secure` | + | Ubuntu 14.04, Debian 7 | `less /var/log/auth.log` | + + {{< note >}} +Review the [journalctl](/docs/quick-answers/linux/how-to-use-journalctl/) and [less](/docs/quick-answers/linux/how-to-use-less/) guides for help with navigating your logs when using those commands. +{{< /note >}} + +1. Review the [Is Another Service Bound on the Same Port?](#is-another-service-bound-on-the-same-port) section. Then: + + - If you can start the SSH service successfully, but your connections still time out or are rejected, then [review your firewall rules](#review-firewall-rules). -### Is SSH Running on another Port? + - If you can't get the service to start, try pasting your logs into a search engine or searching for your logs in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. + +### Is SSH Running on a Non-Standard Port? Run `netstat` on your Linode to check which port is used by SSH: - sudo netstat -plntu + sudo netstat -plntu | grep ssh + tcp 0 0 0.0.0.0:41 0.0.0.0:* LISTEN 4433/sshd + tcp6 0 0 :::41 :::* LISTEN 4433/sshd + +This example output shows that SSH is running on port 41. You can connect to SSH by manually specifying this port: + + ssh username@192.0.2.4 -p 41 + +Alternatively, you can [bind SSH](#bind-ssh-to-a-port-number) on the standard port (22). + +### Is Another Service Bound on the Same Port? + +Check your SSH logs for a message that looks like: + +{{< output >}} +Jan 23 10:29:52 localhost sshd[4370]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. +{{< /output >}} + +This error indicates that another service on your system is already using the same port that SSH binds to, and so SSH can't start. To resolve this issue, choose one of the following solutions. + +- **Bind SSH to a different port** + + Follow instructions for [setting SSH's port number](#bind-ssh-to-a-port-number), and specify a different number than the one that was already in-use. + +- **Stop the other service** + + 1. Use the `netstat` command to discover which other process is using the same port: + + sudo netstat -plntu | grep :22 + + tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 4433/some-other-service + tcp6 0 0 :::22 :::* LISTEN 4433/some-other-service + + 1. Stop and disable that other service: + + sudo systemctl stop some-other-service + sudo systemctl disable some-other-service + + Or, [kill](/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes-on-linux/) the process using the process ID listed next to the process name in the output from `netstat`. + +- **Assign a different port to the other service** + + 1. Use the `netstat` command to find out what service is bound to the same port: + + 1. Then, change the configuration for that service to use a different port. + + 1. Restart SSH. + +### Bind SSH to a Port Number + +1. Open `/etc/ssh/sshd_config` in your editor. Search for a line in this file that declares the port for SSH: + + {{< file "/etc/ssh/sshd_config" >}} +#Port 22 +{{< /file >}} + +1. Uncomment this line and provide a different number. + +1. Save the file and restart the SSH service. + +### Review Firewall Rules + +If your service is running but your connections still fail, your firewall (which is likely implemented by the `iptables` software) may be blocking the connections. To review your current firewall ruleset, run: -SSH runs on 22 by default, but you may have changed it in your SSH config. Include instructions here for changing the config, or specifying the port in the SSH client command. + sudo iptables-save # displays IPv4 rules + sudo ip6tables-save # displays IPv6 rules + +{{< note >}} +Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: + + sudo ufw status + sudo firewall-cmd --state + +Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. +{{< /note >}} + +A rule which allows incoming SSH traffic could look like this: + +{{< output >}} +-A INPUT -p tcp -m tcp --dport 22 -m conntrack --ctstate NEW -j ACCEPT +{{< /output >}} + +Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. + +### Disable Firewall Rules + +In addition to analyzing your firewall ruleset, you can also temporarily disable your firewall to test if it is interfering with your connections. Leaving your firewall disabled increases your security risk, so we recommend re-enabling afterward it with a modified ruleset that will accept your connections. Review [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) for help with this subject. + +1. Create a temporary backup of your current iptables: + + sudo iptables-save > ~/iptables.txt + +1. Set the `INPUT`, `FORWARD` and `OUTPUT` packet policies as `ACCEPT`: + + sudo iptables -P INPUT ACCEPT + sudo iptables -P FORWARD ACCEPT + sudo iptables -P OUTPUT ACCEPT + +1. Flush the `nat` table that is consulted when a packet that creates a new connection is encountered: + + sudo iptables -t nat -F + +1. Flush the `mangle` table that is used for specialized packet alteration: + + sudo iptables -t mangle -F + +1. Flush all the chains in the table: + + sudo iptables -F + +1. Delete every non-built-in chain in the table: + + sudo iptables -X + +1. Repeat these steps with the `ip6tables` command to flush your IPv6 rules. Be sure to assign a different name to the file you save your IPv6 rules to (e.g. `~/ip6tables.txt`). + +## Troubleshoot Rejected SSH Logins + +If SSH is listening and accepting connections but is rejecting login attempts, review these instructions: ### Is Root Login Permitted? -Describe how root logins can be disabled in the SSH config, where to check on that (see command below), and what to adjust to turn it back on if it's disabled: +SSH can be configured to disable logins for the root user. To check your SSH configuration, run: + + grep PermitRootLogin /etc/ssh/sshd_config + +If the value of the `PermitRootLogin` is `no`, then try logging in with another user. Or, set the value in `/etc/ssh/sshd_config` to `yes`, restart SSH, and try logging in as root again. -egrep -i 'permit' /etc/ssh/sshd_config +{{< note >}} +This option can also be set with the value `without-password`. If this value is used, root logins are accepted with public key authentication. +{{< /note >}} ### Are Password Logins Accepted? -Describe how password logins can be enabled/disabled, where to check on that (see command below), and what to adjust to turn it back on if it's disabled: +SSH can be configured to not accept passwords and instead accept public key authentication. To check your SSH configuration, run: -egrep -i 'password' /etc/ssh/sshd_config + grep PasswordAuthentication /etc/ssh/sshd_config + +If the value of the `PasswordAuthentication` is `no`, [create a keypair](/docs/security/securing-your-server/#create-an-authentication-key-pair). Or, set the value in `/etc/ssh/sshd_config` to `yes`, restart SSH, and try logging in with your password again. ### Is your Public Key Stored on the Server? -Include instructions for checking which SSH private keys are on the client computer vs. which are on the Linode. Refer back to verbose mode to show which keys were tried by the client/server. +If you prefer to use public key authentication, but your login attempts with your key are not working, double-check that the server has your public key. To check which keys are recognized for your user, run: + + cat ~/.ssh/authorized_keys + +If your public key is not listed in this file, add it to the file on a new line. + +On some systems, your authorized keys file may be listed in a different location. Run this command to show where your file is located: + + grep AuthorizedKeysFile /etc/ssh/sshd_config + +### Collect Login Attempt Logs + +If the previous troubleshooting steps do not resolve your issues, collect more information about how your logins are failing: + +- View your login attempts in the log files described in step 4 of [Is SSH Running?](#is-ssh-running). In particular, you can search these logs for your local IP address, and the results will show what error messages were recorded for your logins. To find out what your local IP is, visit a website like https://www.whatismyip.com/. + +- Use your SSH client in verbose mode, which will show details for each part of the connection process. Verbose mode is invoked by passing the `-v` option. Passing more than one `v` increases the verbosity, up to three `v`s: -### Is your Firewall Blocking SSH? + ssh -v username@192.0.2.4 + ssh -vv username@192.0.2.4 + ssh -vvv username@192.0.2.4 -Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches SSH (22 by default but could be custom). \ No newline at end of file +Try pasting your logs into a search engine or searching for your logs in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. \ No newline at end of file diff --git a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md index 68fd5025d38..fcadd806208 100644 --- a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md +++ b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md @@ -2,82 +2,206 @@ author: name: Linode email: docs@linode.com -description: 'Troubleshooting steps to access your Linode after maintenance has been applied to your host.' +description: 'Troubleshooting steps for when you can't connect to a service that your Linode runs.' keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2019-01-21 -modified: 2019-01-21 +published: 2019-01-25 +modified: 2019-01-25 modified_by: name: Linode title: "Troubleshooting Web Servers, Databases, and Other Services" --- -## Troubleshoot Other Services +This guide presents troubleshooting strategies for when you can't connect to your web server, database, or other service that your Linode runs. This guide assumes that you have access to SSH. If you can't log in with SSH, review [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) and then return to this guide. -If you can establish an SSH connection, but some of your other services aren't working, here's more troubleshooting goodness: +{{< disclosure-note "Where to go for help outside this guide" >}} +This guide explains how to use different troubleshooting commands on your Linode. These commands can produce diagnostic information and logs that may expose the root of your connection issues. For some specific examples of diagnostic information, this guide also explains the corresponding cause of the issue and presents solutions for it. + +If the information and logs you gather do not match a solution outlined here, consider searching the [Linode Community Site](https://www.linode.com/community/questions/) for posts that match your system's symptoms. Or, post a new question in the Community Site and include your commands' output. + +Linode is not responsible for the configuration or installation of software on your Linode. Refer to Linode's [Scope of Support](/docs/platform/billing-and-support/support/#scope-of-support) for a description of which issues Linode Support can help with. +{{< /disclosure-note >}} + +## General Troubleshooting Strategies + +This section highlights troubleshooting strategies that apply to every service: ### Check if the Service is Running -EDITOR's NOTE: Also include instructions for non-systemd systems +The service may not be running. Check the status of the service: -On systemd systems, check the logs for the service. Example: +| Distribution | Command                                                                | +| ------------ | ------- | +| systemd systems (Arch, Ubuntu 16.04+, Debian 8+, CentOS 7+, etc) | `sudo systemctl status -l` | +| sysvinit systems (CentOS 6, Ubuntu 14.04, Debian 7, etc) | `sudo service status` | - sudo systemctl status mysql -l - sudo journalctl -u mysql +### Restart the Service -Try restarting the service: +If the service isn't running, try restarting it: - sudo systemctl restart mysql +| Distribution | Command | +| ------------ | ------- | +| systemd systems | `sudo systemctl restart ` | +| sysvinit systems | `sudo service restart` | -For Apache issues, review the [Troubleshooting Common Apache Issues](/docs/troubleshooting/troubleshooting-common-apache-issues/) +### Enable the Service -### Check if the Service is Enabled at Boot +If your system was recently rebooted, and the service didn't start automatically at boot, then it may not be enabled. The output of your Enable the service to prevent this from happening in the future: -Take instructions from https://www.linode.com/docs/troubleshooting/disaster-recovery-guide/#did-all-of-your-services-start-after-reboot +| Distribution | Command | +| ------------ | ------- | +| systemd systems | `sudo systemctl enable ` | +| sysvinit systems | `sudo chkconfig on` | -### Review Application Logs +### Check which IP Addresses and Ports your Services are Bound To -EDITOR'S NOTE: Not sure if we should include this section, but possibly: +Your service may be listening on an unexpected port, or it may not be bound to your public IP address (or whatever address is desirable). To view which address and ports and service is bound on, run the `netstat` command with these options: -Show locations for common application logs maintained outside of the system logs, e.g.: + sudo netstat -plntu -MySQL: /var/log/mysql + the slow queries log -Show how to turn slow queries log on +Review the application's documentation for help with setting the address and port it should bind to. -PHP: /var/log/php, or check phpinfo() from web browser to see where log file is +{{< note >}} +One notable example is if a service is only bound to a public IPv4 address and not also an IPv6 address. If a user connects to your Linode over IPv6, they will not be able to access the service. +{{< /note >}} -Apache: See dedicated apache guide +### Analyze Service Logs -NGINX: /var/log/nginx, or check log location in nginx config +If your service doesn't start normally, review your system logs and the logs for the service. Your system logs may be in the following locations: -### Is your Disk Full? +| Distribution | System Logs | +| ------------ | ------- | +| systemd systems | [Run `journalctl`](/docs/quick-answers/linux/how-to-use-journalctl/) | +| Ubuntu 14.04, Debian 7 | `/var/log/syslog` | +| CentOS 6 | `/var/log/messages` | -If you're having issues with your database service, one common reason a database might not run as expected is if your disk is full. To check on your current disk usage, run the `df` command: +Your service's log location will vary by the application, but they are often stored within `/var/log`. [The `less` command](/docs/quick-answers/linux/how-to-use-less/) is a useful tool for browsing through your logs. - df -h +Try pasting your log messages into a search engine or searching for your messages in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. If it becomes difficult to find a solution, you may need to [rebuild your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). + +### Review Firewall Rules + +If your service is running but your connections still fail, your firewall (which is likely implemented by the `iptables` software) may be blocking the connections. To review your current firewall ruleset, run: + + sudo iptables-save # displays IPv4 rules + sudo ip6tables-save # displays IPv6 rules + +{{< note >}} +Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: + + sudo ufw status + sudo firewall-cmd --state + +Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. +{{< /note >}} + +For example, a rule which allows incoming HTTP traffic could look like this: + +{{< output >}} +-A INPUT -p tcp -m tcp --dport 80 -m conntrack --ctstate NEW -j ACCEPT +{{< /output >}} + +Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. + +### Disable Firewall Rules + +In addition to analyzing your firewall ruleset, you can also temporarily disable your firewall to test if it is interfering with your connections. Leaving your firewall disabled increases your security risk, so we recommend re-enabling afterward it with a modified ruleset that will accept your connections. Review [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) for help with this subject. + +1. Create a temporary backup of your current iptables: + + sudo iptables-save > ~/iptables.txt + +1. Set the `INPUT`, `FORWARD` and `OUTPUT` packet policies as `ACCEPT`: + + sudo iptables -P INPUT ACCEPT + sudo iptables -P FORWARD ACCEPT + sudo iptables -P OUTPUT ACCEPT + +1. Flush the `nat` table that is consulted when a packet that creates a new connection is encountered: + + sudo iptables -t nat -F + +1. Flush the `mangle` table that is used for specialized packet alteration: + + sudo iptables -t mangle -F + +1. Flush all the chains in the table: + + sudo iptables -F + +1. Delete every non-built-in chain in the table: + + sudo iptables -X + +1. Repeat these steps with the `ip6tables` command to flush your IPv6 rules. Be sure to assign a different name to the file you save your IPv6 rules to (e.g. `~/ip6tables.txt`). + +## Troubleshoot Web Servers + +If your web server is not running or if connections are timing out, review the [general troubleshooting strategies](#general-troubleshooting-strategies). {{< note >}} -Note about how this is not the same thing as the reported unallocated space in the Linode Manager. +Troubleshooting specific to Apache is outlined in [Troubleshooting Common Apache Issues](http://localhost:1313/docs/troubleshooting/troubleshooting-common-apache-issues/#check-virtual-host-definitions). {{< /note >}} -Include instructions for how to resolve this situation: +If your web server is responding with an error code, your troubleshooting will vary by what code is returned. For more detailed information about each request that's failing, read your web server's logs. Here are some commands that can help you find your web server's logs: + +- **Apache:** + + grep ErrorLog -r /etc/apache2 # On Ubuntu, Debian + grep ErrorLog -r /etc/httpd # On CentOS, Fedora, RHEL + +- **NGINX:** + + grep error_log -r /etc/nginx + +### Frequent Error Codes + +- **HTTP 401 Unauthorized, HTTP 403 Forbidden** + + The requesting user did not have sufficient permission or access to the requested URL. Review your web server authorization and access control configuration: + + - [Apache - Access Control](https://httpd.apache.org/docs/2.4/howto/access.html) -- Free up space on your disk by locating and removing files you don't need, using a tool like du or ncdu + - [Apache - Authentication and Authorization](https://httpd.apache.org/docs/2.4/howto/auth.html) -- Resize the disk if you have any unallocated space on your Linode + - [NGINX - Restricting Access with HTTP Basic Authentication](https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/) -- Upgrade your Linode (either through a free upgrade if one is available or by resizing to a higher tier) and then resize your disk to use the newly available space. +- **HTTP 404 Not Found** + + The URL that a user requested could not be found by the web server. Review your web server configuraiton and make sure your website files are stored in the right location on your filesystem: + + - [Apache - Mapping URLs to Filesystem Locations](https://httpd.apache.org/docs/2.4/urlmapping.html) + + - [NGINX - How nginx processes a request](http://nginx.org/en/docs/http/request_processing.html) + +- **HTTP 500, 502, 503, 504** + + The web server requested a resource from a process it depends on, but the process did not respond as expected. For example, if a database query need to be performed for a web request, but the database isn't running, then a 50X code will be returned. To troubleshoot these issues, investigate the service that the web server depends on. + +### Troubleshoot Databases + +### Is your Disk Full? + +One common reason that a database may not start is if your disk is full. To check how much disk space you are using, run: + + df -h + +{{< note >}} +This reported disk usage is not the same as the reported storage usage in the Linode Manager. The storage usage in the Linode Manager refers to how much of the the disk space you pay for is allocated to your Linode's disks. The output of `df -h` shows how full those disks are. +{{< /note >}} -Or, consider putting those instructions into a new "How to Free Up Space on Your Linode" guide and then link to it. +You have several options for resolving disk space issues: -### Check which IP Addresses and Ports your Services Are Bound To +- Free up space on your disk by locating and removing files you don't need, using a tool like [ncdu](https://dev.yorhel.nl/ncdu). -Include instructions for using `netstat -plntu` to see which processes are listening on which ports and which addresses. Possible example problems: +- If you have any unallocated space on your Linode (storage that you pay for already but which isn't assigned to your disk), [resize your disk](/docs/quick-answers/linode-platform/resize-a-linode-disk/) to take advantage of the space. -- Web server is only listening on the IPv4 address, not also the IPv6 address (which is a common problem for users trying to connect to a website via a cell phone, as those networks seem to prefer IPv6). +- [Upgrade your Linode](/docs/platform/disk-images/resizing-a-linode/) to a higher-tier resource plan and then resize your disk to use the newly available space. If your Linode has a pending free upgrade for your storage space, you can choose to take this free upgrade to solve the issue. -- Service not listening on a standard port. Include markdown table of common services+ports + -### Is your Firewall Blocking the Service? +### Database Performance Troubleshooting -Link back to [Review Firewall Rules](#review-firewall-rules) back in basic connectivity section, add some context about looking for rules on the port that matches your service (e.g. 80 for HTTP). \ No newline at end of file +If your database is running but returning slowly, research how to opimize the database software for the resources your Linode has. If you run MySQL or MariaDB, read [How to Optimize MySQL Performance Using MySQLTuner](/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/). \ No newline at end of file diff --git a/docs/troubleshooting/troubleshooting/index.md b/docs/troubleshooting/troubleshooting/index.md index a45e6f9232a..ba95c76b7eb 100644 --- a/docs/troubleshooting/troubleshooting/index.md +++ b/docs/troubleshooting/troubleshooting/index.md @@ -2,86 +2,46 @@ author: name: Linode email: docs@linode.com -description: Our guide to performing basic troubleshooting. +description: An overview of different troubleshooting topics. keywords: ['troubleshooting'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['quick-start-troubleshooting/'] -modified: 2017-03-06 +modified: 2019-01-25 modified_by: - name: Nick Brewer + name: Linode published: 2012-04-05 -title: Troubleshooting +title: Troubleshooting Overview --- We know it's frustrating when you run into problems with your Linode. That's why we've created this introductory troubleshooting checklist. Use it to diagnose and resolve basic issues with your Linode through a process of elimination. Here's how: - Select the issue that best describes your problem -- Follow the troubleshooting steps in the order they are presented -- Once you've identified a problem, try fixing it with the suggested solutions -- If you can't find your problem in this guide, take a look at the [troubleshooting manuals](/docs/troubleshooting/) - -If the issue you're experiencing isn't listed here, or if the recommended solution doesn't help, please feel free to [contact our Support team](/docs/platform/billing-and-support/support/). - -## Linode is Slow or Unresponsive - -Use the following checklist if your Linode is running slowly or is completely unresponsive when you try to connect. - -### Is the Linode powered on? - -You can turn off a Linode, just like a physical computer. If you attempt to connect to your Linode when it's powered off, nothing will happen. To start troubleshooting, verify that your Linode is powered on. Here's how to check: - -1. Log in to the [Linode Manager](https://manager.linode.com). -2. Click the **Linode** tab. A list of your Linodes appears. -3. Select a Linode. The Linode's dashboard appears, as shown below. - - [![Check Linode boot status.](952-troubleshooting1-1-small.png)](953-troubleshooting1-1.png) - -4. Review the *Server Status* box on the sidebar to determine whether or not the server is powered on. -5. If the server is powered off, click the **Boot** button to turn it on. Wait a couple of minutes for the server to boot. - -If your Linode is already powered on, please continue to the next section. - -### Can you ping the Linode? -Now that you've established that your Linode is turned on, you should verify that it is connected to the Internet and responding to ICMP packets. Here's how: - -1. Open a terminal application on your computer. -2. Enter the following command, replacing `123.456.789.0` with the IP address of your Linode: +- Follow the troubleshooting steps in the order they are presented - ping 123.456.789.0 +- Once you've identified a problem, try fixing it with the suggested solutions -3. The terminal application should be able to ping your server, as shown below: +- If you can't find your problem in this guide, take a look at the [troubleshooting manuals](/docs/troubleshooting/) - beaver:.ssh linodedemo$ ping 123.456.789.0 - PING 123.456.789.0 (123.456.789.0): 56 data bytes - 64 bytes from 123.456.789.0: icmp_seq=0 ttl=47 time=94.589 ms - 64 bytes from 123.456.789.0: icmp_seq=1 ttl=47 time=89.512 ms - 64 bytes from 123.456.789.0: icmp_seq=2 ttl=47 time=90.714 ms +{{< disclosure-note "Where to go for help outside this guide" >}} +This guide explains how to use different troubleshooting commands on your Linode. These commands can produce diagnostic information and logs that may expose the root of your connection issues. For some specific examples of diagnostic information, this guide also explains the corresponding cause of the issue and presents solutions for it. -4. If you cannot ping the server, there may be a problem. Skip to the next section and try accessing the Linode with LISH. By default, your server is configured to respond to `ping`, but if you configured your firewall to block ICMP packets, the absence of a response is normal. -5. If there is packet loss or high latency, follow the instructions in [Are you experiencing network issues?](/docs/troubleshooting/troubleshooting/#are-you-experiencing-network-issues) This section can help you diagnose and isolate networking errors. +If the information and logs you gather do not match a solution outlined here, consider searching the [Linode Community Site](https://www.linode.com/community/questions/) for posts that match your system's symptoms. Or, post a new question in the Community Site and include your commands' output. -If you can successfully ping the server, please to continue to the next section. +Linode is not responsible for the configuration or installation of software on your Linode. Refer to Linode's [Scope of Support](/docs/platform/billing-and-support/support/#scope-of-support) for a description of which issues Linode Support can help with. +{{< /disclosure-note >}} -### Can you log in to LISH? +## Linode is Unresponsive -To verify that your Linode is operating correctly, you should try to log in with the Linode Shell (LISH), which provides out of band access to your Linode from the Linode Manager. Here's how: +If your Linode is unresponsive, either at the Lish console or to basic network requests, read through the [Troubleshooting Basic Connection Issues](/docs/troubleshooting/troubleshooting-basic-connection-issues/) guide. -1. Log in to the [Linode Manager](https://manager.linode.com). -2. Click the **Linode** tab. A list of your Linodes appears. -3. Select a Linode. The Linode's dashboard appears. -4. Click the **Remote Access** tab. -5. Select the **Launch Lish Console** link. The LISH console window appears. -6. Log in as `root` or another user. If you don't see a login prompt, press Enter. If you can't log in, [reset the root password](/docs/platform/accounts-and-passwords/#resetting-the-root-password) and try again. -7. If the console is not responding, [contact Linode support](/docs/platform/billing-and-support/support/). +## Linode is Slow - If you can log in, continue to the next section, even if there are error messages visible on the console. - - {{< note >}} -For more information about LISH, see [this guide](/docs/platform/manager/using-the-linode-shell-lish/). +{{< note >}} +You should follow all steps in the [Linode is Unresponsive](#linode-is-unresponsive) section before using this checklist. {{< /note >}} -### Is your disk full? +### Is your Disk Full? If your Linode's disk is full, this can cause performance degradation and instability for your applications. Use the following command to determine the free space on your Linode's filesystem: @@ -104,7 +64,6 @@ In this example, you can see that the root filesystem is 93% full. Here's a comm You can adjust the `+200M` value in this command as needed, to search for files above a specific size. - #### Deleted Files If a service deletes a file that it is no longer using, the file remains on your disk until the next time the service has been rebooted. In this example you'll see how deleted files belonging to Apache can take up space. @@ -126,177 +85,61 @@ This command will check the output of `lsof` for files marked as deleted, and wi To free up this space, you can simply restart the Apache process on your Linode. -### Is the Linode out of memory? +### Is the Linode Out of Memory? The applications on your Linode require a certain amount of physical memory to function correctly. If all of the available physical memory is consumed, your Linode could slow down, display out of memory errors, or become unresponsive. Here's how to tell if your Linode is out of memory: 1. Log in to the [Linode Manager](https://manager.linode.com). -2. Click the **Linode** tab. A list of your Linodes appears. -3. Select a Linode. The Linode's dashboard appears. -4. Click the **Remote Access** tab. -5. Select the **Launch Lish Console** link. The LISH console window appears. If memory errors are displayed in the LISH console, stop some running services to free up memory or upgrade to larger plan. -6. Your Linode might be out of memory even if you do not see any error messages in the LISH console. Execute the following command in the LISH console or a terminal window to determine whether or not your Linode still has free memory available: - - free -m - -7. Examine the output. The free memory available (in megabytes) is shown in the *-/+ buffers/cache* column and the *free* row, as shown below. - - [![Check free memory.](941-troubleshooting3-1.png)](941-troubleshooting3-1.png) - -8. A lack of free memory may indicate that an application is consuming all of your available memory. To see a list of running processes sorted by memory usage, execute the following command in the LISH console or a terminal window: - - ps -eo pmem,pcpu,rss,vsize,args --sort -pmem | less - -9. If an application is consuming all of your available memory, you have three options. You can kill the application, change the application's settings to reduce its memory footprint, or [upgrade your Linode](https://www.linode.com/pricing) to a larger plan. -10. To reduce the memory footprint of common applications like Apache and MySQL, see [Troubleshooting Memory and Networking Issues](/docs/troubleshooting/troubleshooting-memory-and-networking-issues/). +1. Click the **Linode** tab. A list of your Linodes appears. +1. Select a Linode. The Linode's dashboard appears. +1. Click the **Remote Access** tab. +1. Select the **Launch Lish Console** link. The LISH console window appears. If memory errors are displayed in the LISH console, stop some running services to free up memory or upgrade to larger plan. +1. Read through the [Troubleshooting Memory and Networking Issues](/docs/troubleshooting/troubleshooting-memory-and-networking-issues/) guide for troubleshooting commands which display your memory use. +1. If an application is consuming all of your available memory, you have three options. You can kill the application, change the application's settings to reduce its memory footprint, or [upgrade your Linode](https://www.linode.com/pricing) to a larger plan. If your Linode is not out of memory, continue to the next section. -### Are you experiencing network issues? - -Network issues between your desktop computer and the data center can make your server appear slow or unavailable. You can check for issues with *upstream providers* by following the instructions in [Diagnosing Network Issues with MTR](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/) to generate *my traceroute* (MTR) reports. MTR combines the functionality of the ping and traceroute programs in a single tool that can help diagnose and isolate networking problems. If the MTR reports indicate that there is a networking issue, use the following list to try resolving the issue yourself before contacting Linode support: - -- Most routing issues displayed in MTR reports are temporary and clear up within 24 hours. -- If you have experienced degraded service for an extended period of time, you can contact a service provider about the issues you're experiencing. Be sure to send MTR reports and any other relevant data. -- Network congestion over long distances and during peak times is normal. We recommended positioning hosts and resources as geographically close to the targeted audience as possible. - -When contacting [Linode support](/docs/platform/billing-and-support/support/) for assistance, please include the output of two MTR reports; one from your local network to your Linode, and another from your Linode to your local network's IP address. You can use a website such as [whatsmyip.org](http://www.whatsmyip.org/) to determine the IP address of your local network. If you're not able to connect to your Linode over SSH, you can connect using the [Lish](/docs/platform/manager/using-the-linode-shell-lish/) console to generate a report. - -### Is there a Disk I/O bottleneck? +### Is there a Disk I/O Bottleneck? Disk input/output (I/O) bottlenecks can occur when an application or service is reading or writing an excessive amount of information to disk and the processor has to wait to process the information. High I/O wait can significantly slow down your server. Here's how to tell if your server currently has an I/O bottleneck: 1. Open a terminal window and log in to your Linode via SSH. -2. Enter `top` to access the `top` monitoring utility. The screen shown below appears. +1. Enter `top` to access the `top` monitoring utility. The screen shown below appears. [![Check for Disk I/O bottleneck.](939-troubleshooting2.png)](939-troubleshooting2.png) -3. Examine the I/O wait percentage, as shown above. If the number is zero, your server does not currently have a bottleneck. -4. If your I/O wait percentage is above zero, verify that your server has enough free memory available. In many cases, high I/O is an indication that your server has started "swapping," or using disk space as memory. -5. If your server has free memory available and is not using swap space, use `iotop` or [vmstat](/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/) to find the application responsible for the excessive I/O. Databases are the usual suspects. You may need to stop and/or reconfigure the application. +1. Examine the I/O wait percentage, as shown above. If the number is zero, your server does not currently have a bottleneck. +1. If your I/O wait percentage is above zero, verify that your server has enough free memory available. In many cases, high I/O is an indication that your server has started "swapping," or using disk space as memory. +1. If your server has free memory available and is not using swap space, use `iotop` or [vmstat](/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/) to find the application responsible for the excessive I/O. Databases are the usual suspects. You may need to stop and/or reconfigure the application. {{< note >}} You must run `iotop` as `root` or with `sudo`. {{< /note >}} -6. If you cannot determine the source of the IO bottleneck, contact [Linode support](/docs/platform/billing-and-support/support/) for assistance. +1. If you cannot determine the source of the IO bottleneck, contact [Linode support](/docs/platform/billing-and-support/support/) for assistance. Since `top` only reports what is currently happening, and most I/O issues are temporary, it helps to have a monitoring utility set up so you can see a graph of I/O trends and spot potential issues *before* they become major problems. See the guides in [Server Monitoring](/docs/uptime/monitoring/) for instructions on setting up a server monitoring utility. ## Website is Not Loading -Use the following checklist if your website is not loading when you try to connect to it. +If your website is unresponsive or not loading correctly, read through the [Troubleshooting Web Servers, Databases, and Other Services](/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/) guide. - {{< note >}} -You should follow all steps in the [Linode is Slow or Unresponsive](#linode-is-slow-or-unresponsive) section before using this checklist. +{{< note >}} +You should follow all steps in the [Linode is Slow](#linode-is-slow) section before following this guide. {{< /note >}} -### Have you added DNS records? - -To host a website with a domain name, you must set the domain's name servers to point to Linode. You also need to add DNS records for the domain in the Linode Manager. For instructions, see [Adding DNS Records](/docs/websites/hosting-a-website/#add-dns-records). Please note that it can take up to 24 hours for DNS changes to be reflected. - -Continue to the next section if you have pointed your domain name at Linode, added DNS records, and waited at least 24 hours. - -### Is the web server running? - -A web server like Apache should automatically start when you boot your Linode and stay running until you shut it down. However, web servers occasionally crash and need to be manually restarted. If your website is unresponsive, you should verify that the web server is running. Here's how: - -1. Open a terminal window and log in to your Linode via SSH. -2. If you are running Apache, enter the following command. (If you are using a different web server, replace `apache2` with the name of your web server.) : - - sudo service apache2 status - -3. If Apache is running, you will see the following status message: - - Apache is running (pid 25931) - -4. If Apache is not running, try starting it by entering the following command: - - sudo service apache2 start - -5. Apache should start normally. If it doesn't, you'll need to troubleshoot the issue to resolution. - -If the web server is running, continue to the next section. - -### Is the database running? - -The database running on your Linode is an integral part of many content management systems, like WordPress and Drupal. Like the web server, databases occasionally crash and need to be manually restarted. If your website is unresponsive, you should verify that the database is running. Here's how: - -1. If you are running MySQL, enter the following command. (If you are using a different database, replace `mysql` with the name of your database.) : - - sudo service mysql status - -2. If MySQL is running, you will see the following status message: - - mysql start/running, process 20611 - -3. If MySQL is not running, try starting it by entering the following command: - - sudo service mysql start - -4. MySQL should start normally. If it doesn't, you'll need to troubleshoot the issue to resolution. - -If the database is running, continue to the next section. - -### Is port 80 or 443 blocked? - -All web traffic is transferred over ports 80 and 443, so it's important to leave these ports open in your server's firewall. (Port 443 is generally only used for secure traffic encrypted with an SSL certificate.) If you previously configured an `iptables` firewall for your server and your website is unresponsive, you should check the firewall rules and verify that those ports are not blocked. Here's how: - -1. Check your Linode's default firewall rules by entering the following command: - - sudo iptables -L -nv - -2. Examine the output. If you previously configured a firewall with `iptables`, you should see the lines shown below: - - 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 - 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:443 - -3. If those lines are not present, your firewall rules may be blocking traffic on ports 80 or 443. Review the instructions in [Creating a Firewall](/docs/securing-your-server/#configure-a-firewall) to revise and implement new firewall rules. -4. Check for default `ACCEPT` and catch-all rules that send traffic transferred over ports 80 or 443 to `DROP` or `REJECT`. - -If your firewall is not blocking ports 80 or 443, continue to the next section. - -### Are the files in correct directory? - -If your website is unavailable, verify that you uploaded the files for the website to the correct directory on your server. By default, Apache looks for files in `/usr/local/apache2`, but if you followed the instructions in the [Hosting a Website](/docs/websites/hosting-a-website/) guide, you'll want to place your files in `~/public/example.com/public`, where `example.com` is the name of your domain name. - -If the files are in the correct directory, continue to the next section. - -### Are virtual hosts correctly configured? - -If you're hosting more than website on your Linode, verify that you correctly configured the virtual host configuration files. Review the instructions for [Configuring Name Based Virtual Hosts](/docs/websites/hosting-a-website/#configure-name-based-virtual-hosts) and the [web server reference manuals](/docs/web-servers/). - -### Did you add a new IP address? - -If you recently added a new IP address for an SSL certificate and it's not working, try rebooting your server. The reboot is required to activate the new IP address. You should have also configured a virtual host for the new IP address. Review the instructions for [Configuring Name Based Virtual Hosts](/docs/websites/hosting-a-website/#configure-name-based-virtual-hosts) and the [web server reference manuals](/docs/web-servers/). - ## Can't Connect via SSH or FTP -Use the following checklist if you cannot connect to your Linode via SSH or an FTP client application. +If you can't connect to your Linode over SSH, read through the [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) guide. - {{< note >}} -You should follow all steps in the [Linode is Slow or Unresponsive](#linode-is-slow-or-unresponsive) section before using this checklist. +{{< note >}} +You should follow all steps in the [Linode is Slow](#linode-is-slow) section before following this guide. {{< /note >}} -### Are you using Telnet or FTP? +### Are You Using Telnet or FTP? Telnet and FTP are disabled on your Linode by default, and we strongly recommend that you do not use those protocols. Instead, please use Secure Shell (SSH) and SSH File Transfer Protocol (SFTP) - the secure versions of the Telnet and FTP protocols. All Linodes come with an SSH server enabled, and you can connect to port 22 with SSH and SFTP clients. For more information, see [Connecting to Your Linode](/docs/getting-started/#connect-to-your-linode-via-ssh). -### Is port 22 blocked? - -The SSH and SFTP protocols operate over port 22, so you will not be able to connect to your Linode if that port is blocked by your firewall rules. If you previously configured an `iptables` firewall for your server and you cannot connect to your server with a SSH or SFTP client, you should check the firewall rules and verify that those ports are not blocked. Here's how: - -1. Check your Linode's default firewall rules by entering the following command: - - sudo iptables -L -nv - -2. Examine the output. If you previously configured a firewall with `iptables`, you should see the line shown below: - - 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22 - -3. If that line is not present, your firewall rules may be blocking traffic on ports 80 or 443. Review the instructions in [Securing Your Server](/docs/security/securing-your-server/#configure-a-firewall) to revise and implement new firewall rules. -4. Check for default `ACCEPT` and catch-all rules that send traffic transferred over port 22 to `DROP` or `REJECT`. - ## Forgot My Username or Password ### Linode User/Root Password @@ -319,18 +162,18 @@ If you've followed these steps, but you're still having trouble accessing your a Use the following checklist if the Linode Manager is displaying "incorrect" information. -### Did you recently change your account? +### Did You Recently Change your Account? If you recently created a new account, resized an existing Linode, or added extra bandwidth, the bandwidth displayed in the Linode Manager will be prorated for the amount of time left in the current billing cycle. For example, if you create an account on the 15th day of the month, the Manager will indicate that your account has been allocated half of the plan's bandwidth for the current month. This information is an accurate representation of the bandwidth available for the rest of the billing period. When then next billing period starts, the Manager will indicate that all of the plan's bandwidth is available. -### Did you add additional storage? +### Did You Add Additional Storage? If you recently upgraded your plan, your Linode won't be able to take advantage of the additional space until you resize the disk. You can use the Linode Manager to see if there's additional storage space available for disks: 1. Log in to the [Linode Manager](https://manager.linode.com). -2. Click the **Linode** tab. A list of your Linodes appears. -3. Select a Linode. The Linode's dashboard appears. -4. Examine the *Storage* pane on the sidebar, as shown below. If you have free storage space, you can allocate that space to your existing disks. +1. Click the **Linode** tab. A list of your Linodes appears. +1. Select a Linode. The Linode's dashboard appears. +1. Examine the *Storage* pane on the sidebar, as shown below. If you have free storage space, you can allocate that space to your existing disks. [![Resize disks.](944-troubleshooting4-1.png)](944-troubleshooting4-1.png) From f4d0cb1efa553923c1d0a5fc2ae7cf998b4d4927 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Fri, 25 Jan 2019 09:11:43 -0500 Subject: [PATCH 13/38] Rename slug of Basic Connection Issues guide to match title --- .../index.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/troubleshooting/{troubleshooting-basic-connectivity-issues => troubleshooting-basic-connection-issues}/index.md (100%) diff --git a/docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md b/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md similarity index 100% rename from docs/troubleshooting/troubleshooting-basic-connectivity-issues/index.md rename to docs/troubleshooting/troubleshooting-basic-connection-issues/index.md From e0cacf40f4f4e64faef1c18e0aec1547398e50e5 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Fri, 25 Jan 2019 09:16:18 -0500 Subject: [PATCH 14/38] Fix YAML syntax error --- .../index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md index fcadd806208..a7dc33613ae 100644 --- a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md +++ b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md @@ -2,7 +2,7 @@ author: name: Linode email: docs@linode.com -description: 'Troubleshooting steps for when you can't connect to a service that your Linode runs.' +description: "Troubleshooting steps for when you can't connect to a service that your Linode runs." keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2019-01-25 From 08a2e637bbba272e1cc72bc8fc83a01558c9c938 Mon Sep 17 00:00:00 2001 From: nmelehan Date: Fri, 25 Jan 2019 09:17:42 -0500 Subject: [PATCH 15/38] Deprecating old disaster recovery guide --- docs/troubleshooting/disaster-recovery-guide/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/troubleshooting/disaster-recovery-guide/index.md b/docs/troubleshooting/disaster-recovery-guide/index.md index f31b18f28cc..4626b328efe 100644 --- a/docs/troubleshooting/disaster-recovery-guide/index.md +++ b/docs/troubleshooting/disaster-recovery-guide/index.md @@ -5,6 +5,8 @@ author: description: 'Troubleshooting steps to access your Linode after maintenance has been applied to your host.' keywords: ['linux','reboot','lish'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +deprecated: true +deprecated_link: 'troubleshooting/troubleshooting-basic-connection-issues/' published: 2018-07-27 modified: 2018-07-27 modified_by: From a68f45b645dc1b5838b35a97f437eef853421a2a Mon Sep 17 00:00:00 2001 From: cwlinode Date: Mon, 28 Jan 2019 16:17:15 -0500 Subject: [PATCH 16/38] Copy edited --- .../index.md | 20 +++++++------- .../troubleshooting-ssh/index.md | 10 +++---- .../index.md | 26 +++++++++---------- 3 files changed, 25 insertions(+), 31 deletions(-) diff --git a/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md b/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md index 23d9c44f5c7..d4747c44213 100644 --- a/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md +++ b/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md @@ -124,7 +124,7 @@ If you can boot your Linode normally and access the Lish console, you can contin ### Check for Network Route Problems -To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). It is useful to run your MTR report for 100 cycles in order to get a good sample size (note that running a report with this many cycles can take more time to complete). This recommended command includes other helpful options: +To diagnose routing problems, run and analyze an MTR report from your computer to your Linode. For instructions on how to use MTR, review Linode's [MTR guide](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#analyze-mtr-reports). It is useful to run your MTR report for 100 cycles in order to get a good sample size (note that running a report with this many cycles will take more time to complete). This recommended command includes other helpful options: mtr -rwbzc 100 -i 0.2 -rw 198.51.100.0 @@ -147,7 +147,7 @@ If you are located in China, and the output of your MTR report shows *high packe 7. 64.233.174.46 40.0% 10 39.6 40.4 39.4 46.9 2.3 8. gw-in-f147.1e100.net 40.0% 10 39.6 40.5 39.5 46.7 2.2 - This example report shows high persistent packet to the end of the route loss starting mid-way through the route at hop 3, which indicates an issue with the router at hop 3. If your report looks like this, [open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. + This example report shows high persistent packet loss starting mid-way through the route at hop 3, which indicates an issue with the router at hop 3. If your report looks like this, [open a support ticket with your MTR results](#open-a-support-ticket-with-your-mtr-results) for further troubleshooting assistance. {{< note >}} If your route only shows packet loss at certain routers, and not through to the end of the route, then it is likely that those routers are purposefully limiting ICMP responses. This is generally not a problem for your connection. Linode's MTR guide provides more context for [packet loss issues](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#verify-packet-loss). @@ -209,19 +209,17 @@ If your MTR indicates a configuration issue within your Linode, you can confirm ### Open a Support Ticket with your MTR Results -Before opening a support ticket, you should also generate a *reverse MTR*. A reverse MTR is a report which you run from your Linode and which targets your local IP address. To run an MTR from your Linode, open and log in to your Lish console. To find out what your local IP is, visit a website like https://www.whatismyip.com/. +Before opening a support ticket, you should also generate a *reverse MTR* report. The MTR tool is run from your Linode and targets your machine's IP address on your local network, whether you're on your home LAN, for example, or public WiFi. To run an MTR from your Linode, log in to your Lish console. To find your local IP, visit a website like https://www.whatismyip.com/. Once you have generated your original MTR and your reverse MTR, [open a Linode support ticket](/docs/platform/billing-and-support/support/#contacting-linode-support), and include your reports and a description of the troubleshooting you've performed so far. Linode Support will try to help further diagnose the routing issue. ## Troubleshoot Network Configuration Issues -If you have determined that your network configuration is the cause of the problem, review the following troubleshooting suggestions. - -If you make any changes in an attempt to fix the issue, you can test those changes with these steps: +If you have determined that your network configuration is the cause of the problem, review the following troubleshooting suggestions. If you make any changes in an attempt to fix the issue, you can test those changes with these steps: 1. Run another MTR report (or [ping](/docs/troubleshooting/troubleshooting/#can-you-ping-the-linode) the Linode) from your computer to your Linode's IP. -1. If the report shows no packet loss, but you still can't access SSH or other services, this result indicates that your networking is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) +1. If the report shows no packet loss but you still can't access SSH or other services, this result indicates that your network connection is up again, but the other services are still down. Move onto [troubleshooting SSH](#troubleshoot-ssh) or [troubleshooting other services](#troubleshoot-other-services) 1. If the report still shows the same packet loss, review the remaining troubleshooting suggestions in this section. @@ -335,7 +333,7 @@ Please note that your firewall will be down at this point, so you will need to r ### Was your Interface Renamed? -In your commands' output, you might notice that your 'eth0' interface is missing and replaced with another name (for example, `ensp` or `ensp0`). This behavior can be caused by systemd's [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) feature. +In your commands' output, you might notice that your `eth0` interface is missing and replaced with another name (for example, `ensp` or `ensp0`). This behavior can be caused by systemd's [Predictable Network Interface Names](https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) feature. 1. Disable the use of Predictable Network Interface Names with these commands: @@ -348,8 +346,8 @@ In your commands' output, you might notice that your 'eth0' interface is missing If your interface is up but your networking is still down, your firewall (which is likely implemented by the `iptables` software) may be blocking all connections, including basic ping requests. To review your current firewall ruleset, run: - sudo iptables-save # displays IPv4 rules - sudo ip6tables-save # displays IPv6 rules + sudo iptables -L # displays IPv4 rules + sudo ip6tables -L # displays IPv6 rules {{< note >}} Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: @@ -360,7 +358,7 @@ Your deployment may be running FirewallD or UFW, which are frontend software pac Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. {{< /note >}} -Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. +Firewall rulesets can vary widely. Review our [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. ### Disable Firewall Rules diff --git a/docs/troubleshooting/troubleshooting-ssh/index.md b/docs/troubleshooting/troubleshooting-ssh/index.md index c0bbef1cfab..bba742e4f7e 100644 --- a/docs/troubleshooting/troubleshooting-ssh/index.md +++ b/docs/troubleshooting/troubleshooting-ssh/index.md @@ -3,7 +3,7 @@ author: name: Linode email: docs@linode.com description: "Troubleshooting steps for when you can't connect to your Linode via SSH." -keywords: ['linux','reboot','lish'] +keywords: ['linux','reboot','lish','ssh'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2019-01-25 modified: 2019-01-25 @@ -158,7 +158,7 @@ If your service is running but your connections still fail, your firewall (which sudo ip6tables-save # displays IPv6 rules {{< note >}} -Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: +Your deployment may be running FirewallD or UFW, which are frontends used to more easily manage your iptables rules. Run these commands to find out if you are running either package: sudo ufw status sudo firewall-cmd --state @@ -166,19 +166,17 @@ Your deployment may be running FirewallD or UFW, which are frontend software pac Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. {{< /note >}} -A rule which allows incoming SSH traffic could look like this: +Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. A rule which allows incoming SSH traffic could look like this: {{< output >}} -A INPUT -p tcp -m tcp --dport 22 -m conntrack --ctstate NEW -j ACCEPT {{< /output >}} -Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. - ### Disable Firewall Rules In addition to analyzing your firewall ruleset, you can also temporarily disable your firewall to test if it is interfering with your connections. Leaving your firewall disabled increases your security risk, so we recommend re-enabling afterward it with a modified ruleset that will accept your connections. Review [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) for help with this subject. -1. Create a temporary backup of your current iptables: +1. Create a temporary backup of your current iptables rules: sudo iptables-save > ~/iptables.txt diff --git a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md index a7dc33613ae..fec408bdaf9 100644 --- a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md +++ b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md @@ -12,7 +12,7 @@ modified_by: title: "Troubleshooting Web Servers, Databases, and Other Services" --- -This guide presents troubleshooting strategies for when you can't connect to your web server, database, or other service that your Linode runs. This guide assumes that you have access to SSH. If you can't log in with SSH, review [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) and then return to this guide. +This guide presents troubleshooting strategies for when you can't connect to your web server, database, or other services running on your Linode. This guide assumes that you have access to SSH. If you can't log in with SSH, review [Troubleshooting SSH](/docs/troubleshooting/troubleshooting-ssh/) and then return to this guide. {{< disclosure-note "Where to go for help outside this guide" >}} This guide explains how to use different troubleshooting commands on your Linode. These commands can produce diagnostic information and logs that may expose the root of your connection issues. For some specific examples of diagnostic information, this guide also explains the corresponding cause of the issue and presents solutions for it. @@ -42,7 +42,7 @@ If the service isn't running, try restarting it: | Distribution | Command | | ------------ | ------- | | systemd systems | `sudo systemctl restart ` | -| sysvinit systems | `sudo service restart` | +| sysVinit systems | `sudo service restart` | ### Enable the Service @@ -51,13 +51,13 @@ If your system was recently rebooted, and the service didn't start automatically | Distribution | Command | | ------------ | ------- | | systemd systems | `sudo systemctl enable ` | -| sysvinit systems | `sudo chkconfig on` | +| sysVinit systems | `sudo chkconfig on` | ### Check which IP Addresses and Ports your Services are Bound To -Your service may be listening on an unexpected port, or it may not be bound to your public IP address (or whatever address is desirable). To view which address and ports and service is bound on, run the `netstat` command with these options: +Your service may be listening on an unexpected port, or it may not be bound to your public IP address (or whatever address is desirable). To view which address and ports and service is bound on, run the `ss` command with these options: - sudo netstat -plntu + sudo ss -atpu Review the application's documentation for help with setting the address and port it should bind to. @@ -67,7 +67,7 @@ One notable example is if a service is only bound to a public IPv4 address and n ### Analyze Service Logs -If your service doesn't start normally, review your system logs and the logs for the service. Your system logs may be in the following locations: +If your service doesn't start normally, review your system logs for the service. Your system logs may be in the following locations: | Distribution | System Logs | | ------------ | ------- | @@ -75,7 +75,7 @@ If your service doesn't start normally, review your system logs and the logs for | Ubuntu 14.04, Debian 7 | `/var/log/syslog` | | CentOS 6 | `/var/log/messages` | -Your service's log location will vary by the application, but they are often stored within `/var/log`. [The `less` command](/docs/quick-answers/linux/how-to-use-less/) is a useful tool for browsing through your logs. +Your service's log location will vary by the application, but they are often stored in `/var/log`. [The `less` command](/docs/quick-answers/linux/how-to-use-less/) is a useful tool for browsing through your logs. Try pasting your log messages into a search engine or searching for your messages in the [Linode Community Site](https://www.linode.com/community/questions/) to see if anyone else has run into similar issues. If you don't find any results, you can try asking about your issues in a new post on the Linode Community Site. If it becomes difficult to find a solution, you may need to [rebuild your Linode](/docs/troubleshooting/rescue-and-rebuild/#rebuilding). @@ -83,11 +83,11 @@ Try pasting your log messages into a search engine or searching for your message If your service is running but your connections still fail, your firewall (which is likely implemented by the `iptables` software) may be blocking the connections. To review your current firewall ruleset, run: - sudo iptables-save # displays IPv4 rules - sudo ip6tables-save # displays IPv6 rules + sudo iptables -L # displays IPv4 rules + sudo ip6tables -L # displays IPv6 rules {{< note >}} -Your deployment may be running FirewallD or UFW, which are frontend software packages used to more easily manage your iptables rules. Run these commands to find out if you are running either package: +Your deployment may be running FirewallD or UFW, which are frontends used to more easily manage your iptables rules. Run these commands to find out if you are running either package: sudo ufw status sudo firewall-cmd --state @@ -95,14 +95,12 @@ Your deployment may be running FirewallD or UFW, which are frontend software pac Review [How to Configure a Firewall with UFW](/docs/security/firewalls/configure-firewall-with-ufw/#ufw-status) and [Introduction to FirewallD on CentOS](/docs/security/firewalls/introduction-to-firewalld-on-centos/#firewall-zones) to learn how to manage and inspect your firewall rules with those packages. {{< /note >}} -For example, a rule which allows incoming HTTP traffic could look like this: +Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. For example, a rule which allows incoming HTTP traffic could look like this: {{< output >}} -A INPUT -p tcp -m tcp --dport 80 -m conntrack --ctstate NEW -j ACCEPT {{< /output >}} -Firewall rulesets can vary widely. Review the [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) guide to analyze your rules and determine if they are blocking connections. - ### Disable Firewall Rules In addition to analyzing your firewall ruleset, you can also temporarily disable your firewall to test if it is interfering with your connections. Leaving your firewall disabled increases your security risk, so we recommend re-enabling afterward it with a modified ruleset that will accept your connections. Review [Control Network Traffic with iptables](/docs/security/firewalls/control-network-traffic-with-iptables/) for help with this subject. @@ -168,7 +166,7 @@ If your web server is responding with an error code, your troubleshooting will v - **HTTP 404 Not Found** - The URL that a user requested could not be found by the web server. Review your web server configuraiton and make sure your website files are stored in the right location on your filesystem: + The URL that a user requested could not be found by the web server. Review your web server configuration and make sure your website files are stored in the right location on your filesystem: - [Apache - Mapping URLs to Filesystem Locations](https://httpd.apache.org/docs/2.4/urlmapping.html) From e7ba84c477de45d9616905eeb0183bf0dac31f21 Mon Sep 17 00:00:00 2001 From: cwlinode Date: Mon, 28 Jan 2019 16:25:25 -0500 Subject: [PATCH 17/38] Vale fixes --- ci/vale/dictionary.txt | 3 +++ .../troubleshooting-basic-connection-issues/index.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/vale/dictionary.txt b/ci/vale/dictionary.txt index 5cc972d90a7..450f75f3b02 100644 --- a/ci/vale/dictionary.txt +++ b/ci/vale/dictionary.txt @@ -144,6 +144,7 @@ chmod chown chromecast chroot +chrooting chrooted citad cjones @@ -818,6 +819,7 @@ nano nanode natively nbox +ncdu ncurses neo neomake @@ -1266,6 +1268,7 @@ syslog systemctl systemd systemname +sysvinit targ tasksel taskserver diff --git a/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md b/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md index d4747c44213..fb8347875f6 100644 --- a/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md +++ b/docs/troubleshooting/troubleshooting-basic-connection-issues/index.md @@ -40,7 +40,7 @@ To learn about Lish in more detail, and for instructions on how to connect to yo When your network traffic leaves your computer for your Linode, it travels through a series of routers that are administered by your internet service provider, by Linode's transit providers, and by the various organizations that form the [Internet's backbone](https://en.wikipedia.org/wiki/Internet_backbone). It is possible to analyze the route that your traffic takes for possible service interruptions using a tool called [MTR](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/). -MTR is similar to the [traceroute](https://en.wikipedia.org/wiki/Traceroute) tool, in that it will trace and display your traffic's route. MTR also runs several iterations of its tracing algorithim, which means that it can report statistics like average packet loss and latency over the period that the MTR test runs. +MTR is similar to the [traceroute](https://en.wikipedia.org/wiki/Traceroute) tool, in that it will trace and display your traffic's route. MTR also runs several iterations of its tracing algorithm, which means that it can report statistics like average packet loss and latency over the period that the MTR test runs. Review the installation instructions in Linode's [Diagnosing Network Issues with MTR](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/#install-mtr) guide and install MTR on your computer. From db1bfac8ffe94b69011514b7513677f590b1f113 Mon Sep 17 00:00:00 2001 From: cwlinode Date: Mon, 28 Jan 2019 16:33:23 -0500 Subject: [PATCH 18/38] Spelling fix --- .../index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md index fec408bdaf9..08eabafbc47 100644 --- a/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md +++ b/docs/troubleshooting/troubleshooting-web-servers-databases-other-services/index.md @@ -202,4 +202,4 @@ Would be nice to eventually have these instructions in a new "How to Free Up Spa ### Database Performance Troubleshooting -If your database is running but returning slowly, research how to opimize the database software for the resources your Linode has. If you run MySQL or MariaDB, read [How to Optimize MySQL Performance Using MySQLTuner](/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/). \ No newline at end of file +If your database is running but returning slowly, research how to optimize the database software for the resources your Linode has. If you run MySQL or MariaDB, read [How to Optimize MySQL Performance Using MySQLTuner](/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/). \ No newline at end of file From 68ed851423cff53bb9deaa8fc29290d767ff6650 Mon Sep 17 00:00:00 2001 From: leslitagordita Date: Wed, 30 Jan 2019 12:42:36 -0500 Subject: [PATCH 19/38] Rebuild theme: Add config for GitInfo.AuthorDate support (#2284) * Rebuild theme: Add config for GitInfo.AuthorDate support * Made modified not required in CI test, updated writers guide --- ci/yaml_rules.json | 4 ++-- config.toml | 4 ++++ docs/linode-writers-formatting-guide/index.md | 3 --- .../layouts/partials/includes_head_prod.html | 2 +- .../static/build/js/libs-900db6b09b.min.js | 0 themes/docsmith/static/build/js/libs.js | 0 themes/docsmith/static/build/js/libs.min.js | 0 .../build/stylesheets/home-0cb862fcd0.min.css | 19 ------------------- .../build/stylesheets/home-84dcf75eeb.min.css | 19 +++++++++++++++++++ .../static/build/stylesheets/home.min.css | 6 +++--- 10 files changed, 29 insertions(+), 28 deletions(-) mode change 100755 => 100644 themes/docsmith/static/build/js/libs-900db6b09b.min.js mode change 100755 => 100644 themes/docsmith/static/build/js/libs.js mode change 100755 => 100644 themes/docsmith/static/build/js/libs.min.js delete mode 100644 themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css create mode 100644 themes/docsmith/static/build/stylesheets/home-84dcf75eeb.min.css diff --git a/ci/yaml_rules.json b/ci/yaml_rules.json index 0d51ec8cd4c..41a833bc51a 100644 --- a/ci/yaml_rules.json +++ b/ci/yaml_rules.json @@ -126,9 +126,9 @@ }, "modified": { "elements": false, - "required": true, + "required": false, "type": "date", - "description": "The date this guide was last modified. Should use the form YYYY-MM-DD." + "description": "(DEPRECATED: Hugo now uses the date of the last Git commit) The date this guide was last modified. Should use the form YYYY-MM-DD." }, "modified_by": { "elements": false, diff --git a/config.toml b/config.toml index cef8fe1326b..29969175a24 100644 --- a/config.toml +++ b/config.toml @@ -24,6 +24,10 @@ disqusShortname="linode-1" rssLimit = 15 +enableGitInfo = true + +[frontmatter] +lastmod = [":git", "lastmod", "date", "publishDate"] [blackfriday] fractions = false diff --git a/docs/linode-writers-formatting-guide/index.md b/docs/linode-writers-formatting-guide/index.md index ad427f222e9..7978a8ae1e2 100644 --- a/docs/linode-writers-formatting-guide/index.md +++ b/docs/linode-writers-formatting-guide/index.md @@ -6,7 +6,6 @@ description: 'The Linode Guides & Tutorials style guide for article submissions' keywords: ["style guide", "format", "formatting", "how to write", "write for us", "write for linode", "linode docs", "submissions"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['style-guide/','linode-writers-guide/'] -modified: 2017-12-08 modified_by: name: Linode published: 2014-01-15 @@ -44,7 +43,6 @@ description: 'Two to three sentences describing the purpose of the guide.' keywords: ["list", "of", "keywords", "and key phrases"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-11-29 -modified: 2017-11-30 modified_by: name: Linode title: 'Guide Title' @@ -238,7 +236,6 @@ description: 'A shortguide that shows how to install Python via Miniconda.' keywords: [] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2018-08-23 -modified: 2018-08-23 modified_by: name: Linode title: "Install Python with Miniconda" diff --git a/themes/docsmith/layouts/partials/includes_head_prod.html b/themes/docsmith/layouts/partials/includes_head_prod.html index 1813e9744fc..517b9e33470 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 100755 new mode 100644 diff --git a/themes/docsmith/static/build/js/libs.js b/themes/docsmith/static/build/js/libs.js old mode 100755 new mode 100644 diff --git a/themes/docsmith/static/build/js/libs.min.js b/themes/docsmith/static/build/js/libs.min.js old mode 100755 new mode 100644 diff --git a/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css b/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.min.css deleted file mode 100644 index 5f32d36bf65..00000000000 --- a/themes/docsmith/static/build/stylesheets/home-0cb862fcd0.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 */.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 new file mode 100644 index 00000000000..a21def7898f --- /dev/null +++ b/themes/docsmith/static/build/stylesheets/home-84dcf75eeb.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 */.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 5f32d36bf65..a21def7898f 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 */.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}}/*! + *//*! 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 @@ -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)}}.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}}/*! +*/.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{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 + */@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 From 02283b66c5c7145b55fc2a5915d540c13a719479 Mon Sep 17 00:00:00 2001 From: Andy Stevens Date: Thu, 31 Jan 2019 14:11:31 -0500 Subject: [PATCH 20/38] [Update] How to Set Up a Minecraft Server on Ubuntu or Debian (#2290) Updated guide to denote that it works with Debian 9 and Ubuntu 18.04. Also changed a mention of Minecraft 1.12 to 1.13. --- .../index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/index.md b/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/index.md index 80dc9233f84..7e5f89bc60b 100644 --- a/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/index.md +++ b/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/index.md @@ -6,7 +6,7 @@ keywords: ["minecraft", "ubuntu", "debian"] description: 'This tutorial will teach you basic installation and configuration of a Minecraft server on Ubuntu and Debian' aliases: ['applications/game-servers/minecraft-on-debian-and-ubuntu/','game-servers/minecraft-on-debian-and-ubuntu/'] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-10-22 +modified: 2019-01-31 modified_by: name: Linode published: 2015-01-28 @@ -22,7 +22,7 @@ external_resources: Minecraft is one of the most popular games in the world. In Minecraft you and other players are free to build and explore anything you want in a 3D generated world. If you host your own Minecraft server, you decide the rules, and you and your friends can play together in this interactive adventure game. -This guide shows you how to set up a personal [Minecraft](https://minecraft.net/game) server on a Linode running Debian 8 or Ubuntu 16.04 LTS. We have updated this guide to be compatible with the major release of 1.13: Update Aquatic. +This guide shows you how to set up a personal [Minecraft](https://minecraft.net/game) server on a Linode running Debian 9 or Ubuntu 18.04 LTS. We have updated this guide to be compatible with the major release of 1.13: Update Aquatic. ## Prerequisites @@ -37,15 +37,15 @@ This guide shows you how to set up a personal [Minecraft](https://minecraft.net/ 4. Install *OpenJDK*, an open-source implementation of Java, and the GNU Screen package. {{< note >}} -Minecraft version 1.12 is only compatible with OpenJDK 8. If you are using OpenJDK 7 you must remove it using this command +Minecraft version 1.13 is only compatible with OpenJDK 8. If you are using OpenJDK 7 you must remove it using this command `sudo apt remove openjdk-7-\*` before continuing with this guide. {{< /note >}} - - In Ubuntu 16.04: + - In Ubuntu 18.04: sudo apt install openjdk-8-jre-headless screen - - In Debian 8: + - In Debian 9: sudo apt install openjdk-8-jre-headless screen @@ -118,7 +118,7 @@ eula=true This time the Minecraft server console will generate a lot of output as it creates required configuration files and generates the Minecraft world: - [22:00:06] [Server thread/INFO]: Starting minecraft server version 1.12 + [22:00:06] [Server thread/INFO]: Starting minecraft server version 1.13 [22:00:06] [Server thread/INFO]: Loading properties [22:00:06] [Server thread/INFO]: Default game type: SURVIVAL [22:00:06] [Server thread/INFO]: Generating keypair From 78186efc1651d58d873d3cf20ed925693b9bc55e Mon Sep 17 00:00:00 2001 From: Andy Stevens Date: Thu, 31 Jan 2019 14:23:54 -0500 Subject: [PATCH 21/38] [UPDATE] Install SteamCMD for a Steam Game Server (#2292) * Included commands for installing steamcmd on Debian The guide stated that additional commands were needed for installing from apt on Debian, so I added those instructions. Also included wget as a dependency for CentOS installations. * Changed date --- .../index.md | 26 ++++++++++++++----- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/docs/game-servers/install-steamcmd-for-a-steam-game-server/index.md b/docs/game-servers/install-steamcmd-for-a-steam-game-server/index.md index 1fd73907db2..6be49fecbbd 100644 --- a/docs/game-servers/install-steamcmd-for-a-steam-game-server/index.md +++ b/docs/game-servers/install-steamcmd-for-a-steam-game-server/index.md @@ -5,7 +5,7 @@ author: description: 'Install SteamCMD, a command-line version of the Steam client, which works with games that use SteamPipe. Installing SteamCMD is a prerequisite before hosting a Steam title on your own game server.' keywords: ["steam", "steamcmd", "steam cmd", "games", "game server", "steam server", "steampipe"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2016-03-29 +modified: 2019-01-31 modified_by: name: Linode published: 2016-02-15 @@ -17,10 +17,10 @@ external_resources: aliases: ['applications/game-servers/install-steamcmd-for-a-steam-game-server/'] --- -SteamCMD is a command-line version of the Steam client which works with games that use [SteamPipe](https://developer.valvesoftware.com/wiki/SteamPipe). If you intend to host a Steam title on your own game server, installing SteamCMD is a prerequisite. - ![SteamCMD](Install_SteamCMD_for_a_Steam_Game_Server_smg.jpg) +SteamCMD is a command-line version of the Steam client which works with games that use [SteamPipe](https://developer.valvesoftware.com/wiki/SteamPipe). If you intend to host a Steam title on your own game server, installing SteamCMD is a prerequisite. + This guide is intended to get you quickly up and running with SteamCMD on your Linode. See Valve's [SteamCMD wiki page](https://developer.valvesoftware.com/wiki/SteamCMD) for more information and advanced setups. {{< note >}} @@ -39,7 +39,7 @@ This guide is written for a non-root user. Commands that require elevated privil **Debian / Ubuntu** - sudo apt-get update && sudo apt-get upgrade + sudo apt update && sudo apt upgrade ## Secure Your Game Server @@ -154,20 +154,32 @@ Installing via the package manager allows you to more easily download updates an {{< note >}} On Debian you need to add the `non-free` area of the repository to your sources, because the package is available only there. + +To do so, edit the `/etc/apt/sources.list` file, and include `non-free` at the end of each `deb` and `deb-src` line: + + deb http://mirrors.linode.com/debian stretch main non-free + deb-src http://mirrors.linode.com/debian stretch main non-free + ... + +Then, add the i386 architecture, update your package list, and install `steamcmd`: + + sudo dpkg --add-architecture i386 + sudo apt update + sudo apt-get install steamcmd {{< /note >}} -2. Create a symlink to the `steamcmd` executable in a convenient place, such as your home directory: +1. Create a symlink to the `steamcmd` executable in a convenient place, such as your home directory: cd ~ ln -s /usr/games/steamcmd steamcmd ### Manually -1. Newly created Linodes use 64-bit Linux operating systems. Since Steam is compiled for i386, install the appropriate libraries. +1. Newly created Linodes use 64-bit Linux operating systems. Since Steam is compiled for i386, install the appropriate libraries. For CentOS, also install `wget`. **CentOS 7** - sudo yum install glibc.i686 libstdc++.i686 + sudo yum install glibc.i686 libstdc++.i686 wget **Debian / Ubuntu** From cefbe1433fe2274e6c71a2aac5384bbfa770e546 Mon Sep 17 00:00:00 2001 From: leslitagordita Date: Thu, 31 Jan 2019 16:16:19 -0500 Subject: [PATCH 22/38] [Update] Tuning Your Apache Server (#2293) * Tech edit * Fix 404 error * Copy edit --- .../tuning-your-apache-server/index.md | 136 +++++++++--------- 1 file changed, 65 insertions(+), 71 deletions(-) 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 3a6de7311b7..1f79a6dc528 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,68 +6,64 @@ 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: 2018-12-31 +modified: 2019-01-31 modified_by: name: Linode published: 2015-02-27 title: Tuning Your Apache Server external_resources: - - '[Apache Performance Tuning](http://httpd.apache.org/docs/2.2/misc/perf-tuning.html)' - - '[Apache MPM Common Directives](http://httpd.apache.org/docs/2.2/mod/mpm_common.html)' + - '[Apache Performance Tuning](https://httpd.apache.org/docs/2.4/misc/perf-tuning.html)' + - '[Apache MPM Common Directives](http://httpd.apache.org/docs/2.4/mod/mpm_common.html)' - '[Apache 2.4 Documentation](http://httpd.apache.org/docs/2.4/)' --- -Apache configuration has a major affect on your Linode's performance. The easiest way to increase server performance is to turn off unneeded modules. This guide covers Apache modules, information on which modules to turn off, and other Apache performance tuning options. - ![Tuning Your Apache Server](tuning-your-apache-server.png "Tuning Your Apache Server") +Your Apache configuration settings have a major effect on your Linode's performance. There are several tools that can be used to further inspect your Apache server's performance and make informed decisions on how to begin tuning your Apache configurations. This guide will provide an overview of some process monitoring and system resource usage tools that can be used to inspect how Apache is affecting your Linode's performance. You will also learn about important Apache modules, like the Multi-Processing modules, that will allow you to make use of Apache's power and flexibility. + +## Tools + {{< note >}} The steps in this guide require root privileges. Be sure to run the steps below as **root** or with the `sudo` prefix. For more information on privileges see our [Users and Groups](/docs/tools-reference/linux-users-and-groups/) guide. {{< /note >}} -## Tools +There are a variety of tools that can assist in determining if you need to alter resource settings, including the [*top* command](/docs/uptime/monitoring/top-htop-iotop/) and the load-testing program [Siege](/docs/tools-reference/tools/load-testing-with-siege/). Linode's own [Longview](/docs/platform/longview/longview/) service can also help with server monitoring. A good place to start is to familiarize yourself with the RAM and CPU usage of your server. -There are a variety of tools that can assist in determining if you need to alter resource settings, including the [*top* command](/docs/uptime/monitoring/top-htop-iotop/) and the load-testing program [Siege](/docs/tools-reference/tools/load-testing-with-siege/). Linode's own [Longview](/docs/platform/longview/longview/) service can also help in server monitoring. At minimum, familiarize yourself with the RAM and CPU usage of your server. Discover usage statistics with these commands: +Discover usage statistics with the following variations of the `ps` command. The `ps` command is used to generate a report of the running processes on your Linode: echo [PID] [MEM] [PATH] && ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 20 ps -eo pcpu,pid,user,args | sort -k 1 -r | head -20 -More specific resources for resource tuning Apache includes Apache `mod_status` and Apache2Buddy. - ### Apache mod_status -Apache `mod_status` displays information related to incoming server connections by generating a detailed status page. View an example of this page at [Apache's own website](http://www.apache.org/server-status). +The Apache Status module, `mod_status`, provides performance information about your server in a detailed status page. -1. Open your website's configuration file. This file is located at `/etc/apache2/sites-available/example.com.conf` on Debian/Ubuntu systems or `/etc/httpd/conf.d/vhost.conf` on CentOS/Fedora systems. +1. Open your website's configuration file. This file is located at `/etc/apache2/sites-available/hostname.example.com.conf` on Debian/Ubuntu systems or `/etc/httpd/conf.d/vhost.conf` on CentOS/Fedora systems. -2. Add the following to the `` block: +1. Add the following to the `` block: - {{< file "/etc/apache2/sites-available/example.com.conf (Debian/Ubuntu)" >}} + {{< file "/etc/apache2/sites-available/hostname.example.com.conf (Debian/Ubuntu)" apache >}} SetHandler server-status Order Deny,Allow Deny from all Allow from localhost + {{< /file >}} -{{< /file >}} +1. Apache `mod_status` also offers an option called **ExtendedStatus**, which provides additional information about each request made to Apache. To enable **ExtendedStatus** edit your Apache configuration file and add the following line: - -3. Apache `mod_status` also offers an option called **ExtendedStatus**, which provides additional information about each request made to Apache. To enable **ExtendedStatus** edit your Apache configuration file: - - {{< file "/etc/apache2/apache2.conf (Debian/Ubuntu)" >}} + {{< file "/etc/apache2/apache2.conf (Debian/Ubuntu)" apache >}} ExtendedStatus On - - -{{< /file >}} + {{< /file >}} {{< note >}} -Enabling ExtendedStatus consumes additional system resources. +Enabling `ExtendedStatus` consumes additional system resources. {{< /note >}} -4. Restart Apache: +1. Restart Apache: - Debian/Ubuntu: @@ -77,7 +73,7 @@ Enabling ExtendedStatus consumes additional system resources. systemctl restart httpd -5. To view the file generated, download Lynx: +1. To view the generated file, download Lynx, a text-mode web browse: - Debian/Ubuntu: @@ -87,113 +83,111 @@ Enabling ExtendedStatus consumes additional system resources. yum install lynx -6. Open the file: +1. Open the file: lynx http://localhost/server-status ### Apache2Buddy -The Apache2Buddy script, similar to MySQLTuner, reviews your Apache setup, and makes suggestions based on your Apache process memory and overall RAM. Although it is a fairly basic program, focusing on the `MaxClients` directive, Apache2Buddy is useful, and can be run through a single command: +The Apache2Buddy script, similar to [MySQLTuner](/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/), reviews your Apache setup, and makes suggestions based on your Apache process memory and overall RAM. Although it is a fairly basic program, that focuses on the `MaxClients` directive, Apache2Buddy is useful. You can run the script with the following command: - curl -sL https://raw.githubusercontent.com/richardforth/apache2buddy/master/apache2buddy.pl | perl + curl -sL https://raw.githubusercontent.com/richardforth/apache2buddy/master/apache2buddy.pl | sudo perl ## Multi Processing Modules -{{< note >}} -Before making any changes to your Apache configuration, be sure to back up the configuration file: - -On Debian/Ubuntu: +Apache version 2.4 offers three Multi Processing Modules (MPM) for managing your settings. Each module creates child processes, but differs in how they handle threads. - cp /etc/apache2/apache2.config ~/apache2.conf.backup +{{< disclosure-note "Back up your Apache configuration file">}} +Before making any changes to your Apache configuration, be sure to back up the configuration file: -On CentOS/Fedora: + - On Debian/Ubuntu: - cp /etc/httpd/conf/httpd.config ~/httpd.conf.backup -{{< /note >}} + cp /etc/apache2/apache2.config ~/apache2.conf.backup -Apache offers two Multi Processing Modules, three if on Apache 2.4, for managing your settings. +- On CentOS/Fedora: -Each module creates child processes, differing primarily in how they handle threads. + cp /etc/httpd/conf/httpd.config ~/httpd.conf.backup +{{}} ### Prefork -The prefork module creates a number of child processes at launch, each child handles only one thread. Since these processes deal solely with one thread at a time, making request speed suffer should there be too many concurrent requests. Should this occur, some requests essentially have to wait in line to be acted upon. To handle this, increase the number of child processes spawned, but be aware that this increases the amount of RAM being used. Prefork is the safest module, and should be used when using mods that are not thread safe. - +The prefork module creates a number of child processes at launch, each child handles only one thread. Since these processes deal solely with one thread at a time, request speed can suffer should there be too many concurrent requests. When this occurs, some requests essentially have to wait in line to be acted upon. To handle this, you can increase the number of child processes that are spawned, however, this increases the amount of RAM being used. Prefork is the safest module, and should be used when using non-thread-safe libraries. ### Worker -The worker module's child processes spawn many threads per process, each thread ready to take on new requests. This allows for a greater number of concurrent requests to come in, and in turn is easier on the server's RAM usage. Overall, the worker module offers higher performance, but is less secure than prefork and cannot be used with modules that are not thread safe. +The worker module's child processes spawn many threads per process with each thread ready to take on new requests. This allows for a greater number of concurrent requests to come in, and in turn, is easier on the server's RAM usage. Overall, the worker module offers higher performance, but is less secure than the prefork module and cannot be used with modules that are not thread safe. ### Event -The event module is *only* available on Apache 2.4 and is based off the worker MPM. Like the worker, it creates multiple threads per child process, with a thread dedicated to KeepAlive connections that are handed down to child threads once the request has been made. This is good for multiple concurrent connections, especially those that are not all active at the same time but make the occasional request. The event MPM functions the same as worker in the event of SSL connections. +The event module is *only* available on Apache 2.4 and is based off of the worker MPM. Like the worker, it creates multiple threads per child process, with a thread dedicated to KeepAlive connections that are handed down to child threads once the request has been made. This is good for multiple concurrent connections, especially those that are not all active at the same time but make the occasional request. The event MPM functions the same as worker in the event of SSL connections. ## Module Values -Once you select your MPM, you will need to change the values inside the configuration. These settings are located in the `/etc/apache2/apache2.conf` file on Debian/Ubuntu, and the `/etc/httpd/conf/httpd.conf` file on CentOS/Fedora. The MPM looks like this: +Once you select your MPM, you will need to change the values inside the configuration. These settings are located in the `/etc/apache2/apache2.conf` file on Debian/Ubuntu, and the `/etc/httpd/conf/httpd.conf` file on CentOS/Fedora. Below, is an example configuration for the MPM prefork module: -{{< file "/etc/apache2/apache2.conf (Debian/Ubuntu)" >}} +{{< file "/etc/apache2/apache2.conf (Debian/Ubuntu)" apache >}} - StartServers 4 - MinSpareServers 20 - MaxSpareServers 40 - MaxClients 200 - MaxRequestsPerChild 4500 + StartServers 4 + MinSpareServers 20 + MaxSpareServers 40 + MaxRequestWorkers 200 + MaxConnectionsPerChild 4500 +{{< /file >}} +To use the worker or event modules, replace `` with `` or ``, respectively. -{{< /file >}} +Next, you should alter the module settings you added in the previous step. To do this, you should take into consideration what each value does, and how best to change it. It is recommended to make incremental changes to your configuration settings and then monitor the effects. +{{< note >}} +After making alterations to the Apache configuration file, restart the service. -For other MPMs replace `` with `` or `` for worker and event, respectively. +- On Debian/Ubuntu: -The next step to reconfiguring your Apache server is altering the above settings. To do this, you need to be aware of what each value does, and how best to change it. + sudo systemctl restart apache2 -Again, the best way to make configuration changes is to make incremental changes and then monitor the effects. +- On CentOS/Fedora: -{{< note >}} -After making alterations to the Apache configuration, restart the service using `service apache restart` on Debian/Ubuntu or `/bin/systemctl reload httpd.service` on CentOS/Fedora. + sudo systemctl restart httpd.service {{< /note >}} +The sections below provide an overview of each MPM module setting. + ### StartServers The `StartServers` value indicates the number of child processes created at startup, and is dynamically controlled depending on load. There is often little reason to alter this number, unless your server is restarted frequently and contains a large number of requests upon reboot. ### MinSpareServers -Sets the minimum number of idle child processes. If there are fewer processes than the `MinSpareServer` number, more processes are created at the rate of one per second on Apache 2.2 or lower. With Apache 2.4, this rate increases exponentially starting with 1 and ending with 32 children spawned per second. The benefit of this value is that when a request comes in it can take an idle thread; should a thread not be available, Apache would have to spawn a new child, taking up resources and extending the time it takes for the request to go through. Note, too many idle processes would also have an adverse effect on the server. +Sets the minimum number of idle child processes. If there are fewer processes than the `MinSpareServer` number, more processes are created at the rate of one per second on Apache 2.2 or lower. With Apache 2.4, this rate increases exponentially starting with 1 and ending with 32 children spawned per second. The benefit of this value is that when a request comes in it can take an idle thread; should a thread not be available, Apache would have to spawn a new child, taking up resources and extending the time it takes for the request to go through. Note, too many idle processes would also have an adverse effect on the server. Tuning this value should only be necessary on very busy sites. It is not recommended to change this value to a high number. ### MaxSpareServers -Sets the maximum number of idle child processes. If there are more idle processes than this number, then they are terminated. Unless your website is extremely busy, this number should not be set too high, since even idle processes consume resources. +This parameter sets the maximum number of idle child processes. If there are more idle processes than this number, then they are terminated. Unless your website is extremely busy, this number should not be set too high, since even idle processes consume resources. -### MaxClients -The maximum amount of requests that can be served simultaneously, with any number going past the limit being queued. If this is set too low, connections sent to queue eventually time-out; however, if set too high, it causes the memory to start swapping. If this value is increased past 256, the `ServerLimit` value must also be increased. +### MaxRequestWorkers +Previously known as `MaxClients` (Apache 2.3.13 or lower), this parameter indicates the maximum amount of requests that can be served simultaneously, with any number going past the limit being queued. The size of the queue is based on the `ListenBacklog` directive. If `MaxRequestWorkers` is set too low, connections sent to the queue eventually time-out; however, if set too high, it causes the memory to start swapping. If this value is increased past 256, the `ServerLimit` value must also be increased. One way to calculate the best value for this is to divide the amount of RAM each Apache process uses by the amount of RAM available, leaving some room for other processes. Use [Apache2Buddy](#apache2buddy) to help determine these values, or the commands below. -To determine the RAM each Apache process uses, replace `httpd` with `apache2` on Debian or Ubuntu systems: +To determine the RAM each Apache process uses issue the following command. The Resident Set Size (RSS) value displays the RAM that is currently being used by a process, in kilobytes. Replace `httpd` with `apache2` on Debian or Ubuntu systems: ps -ylC httpd --sort:rss -Divide the number by 2048 for megabytes. +Divide the number under the RSS column by 1024 to convert it to megabytes. To get information on memory usage: free -m -To receive a fuller view of the resources Apache is using, use the `top` command. +To receive a more detailed view of the resources Apache is using, use the [`top` command](/docs/uptime/monitoring/top-htop-iotop/). -### MaxRequestsPerChild +### MaxConnectionsPerChild -This limits the number of requests a child server handles during its life. Once the limit has been hit, the child server dies. If set to 0, the child servers are set to never expire. The suggested value for this is a few thousand, to prevent memory leakage. Be aware that setting this too low can slow down the system, since creating new processes does take up resources. +`MaxConnectionsPerChild` limits the number of requests a child process handles during its life. Once the limit has been hit, the child process dies. If set to 0, the child process will never expire. The suggested value for this is a few thousand, to prevent memory leakage. Be aware that setting this too low can slow down the system, since creating new processes does take up resources. This setting was named `MaxRequestsPerChild` in versions lower than Apache 2.3.9. ### ServerLimit -If you need to increase the `MaxClients` above `256`, then increase your `ServerLimit` to match. To do this, add the `ServerLimit` line to your MPM code and alter the value: +In the context of the `prefork` module, the `ServerLimit` setting configures the maximum value for `MaxRequestWorkers` for the entire lifetime of the Apache httpd process. If you need to increase `MaxRequestWorkers` above `256`, then increase your `ServerLimit` to match. - ServerLimit 256 +When using the `worker` and `event` modules, `ServerLimit` and `ThreadLimit` determine the maximum value for `MaxRequestWorkers` for the duration of the Apache httpd process. Note that if `ServerLimit` is set to a value higher than needed, unused shared memory will be set aside. ### KeepAlive -[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. +[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. A KeepAlive connection will be counted as a single "request" for the [MaxConnectionsPerChild](/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/#maxconnectionsperchild). -{{< 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 +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. \ No newline at end of file From 463018f9fcdcdf21d73b25902607e5527eef0a1b Mon Sep 17 00:00:00 2001 From: Andy Stevens Date: Thu, 31 Jan 2019 17:48:37 -0500 Subject: [PATCH 23/38] [UPDATE] How to Install Asterisk on CentOS 7 (#2294) * Technical edit Commented out section on DAHDI and updated Asterisk from 16.0.0 to 16.1.1 * Changed date --- .../voip/install-asterisk-on-centos-7/index.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/applications/voip/install-asterisk-on-centos-7/index.md b/docs/applications/voip/install-asterisk-on-centos-7/index.md index b85d65fa6bd..f8c0c9f5231 100644 --- a/docs/applications/voip/install-asterisk-on-centos-7/index.md +++ b/docs/applications/voip/install-asterisk-on-centos-7/index.md @@ -6,7 +6,7 @@ description: 'Installing Asterisk on CentOS 7' keywords: ["asterisk 13", "centos 7", "centos", "open source", "private branch exchange", "pbx", "asterisk pbx", "sip", "session initiation protocol", "sip protocol", "IP PBX systems", "VoIP gateways"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2015-09-30 -modified: 2018-10-30 +modified: 2019-01-31 modified_by: name: Linode title: 'How to Install Asterisk on CentOS 7' @@ -188,7 +188,7 @@ PJPROJECT is Asterisk's SIP channel driver. It should improve call clarity and p libpj.so (libc6,x86-64) => /lib64/libpj.so {{< /output >}} - + ## Install Asterisk @@ -237,9 +239,9 @@ Since it's not possible to add physical cards to a virtual machine you probably tar -zxvf asterisk-16-current.tar.gz -1. Switch to the new Asterisk directory, replacing `16.0.0` if needed: +1. Switch to the new Asterisk directory, replacing `16.1.1` if needed: - cd asterisk-16.0.0 + cd asterisk-16.1.1 ### Enable MP3 Support From e414ff1d6619c971b778b7b7acf127550eca1116 Mon Sep 17 00:00:00 2001 From: leslitagordita Date: Fri, 1 Feb 2019 11:14:03 -0500 Subject: [PATCH 24/38] [Update] Install Plex Media Server on Ubuntu 18.04 (#2296) * Tech Edit * Update title --- .../index.md | 27 +++++++++--------- ...all-plex-media-server-on-ubuntu-18-04.png} | Bin .../plex-add-library-small.png | Bin .../plex-add-library.png | Bin .../plex-additional-library.png | Bin .../plex-browser-view-small.png | Bin .../plex-browser-view.png | Bin .../plex-dlna-disable-small.png | Bin .../plex-dlna-disable.png | Bin .../plex-library-location-small.png | Bin .../plex-library-location.png | Bin .../plex-library-type-small.png | Bin .../plex-library-type.png | Bin .../plex-media-client-small.png | Bin .../plex-media-client.png | Bin .../plex-server-name-small.png | Bin .../plex-server-name.png | Bin 17 files changed, 14 insertions(+), 13 deletions(-) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/index.md (77%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04/install-plex-media-server-on-ubuntu-16-04.png => install-plex-media-server-on-ubuntu-18-04/install-plex-media-server-on-ubuntu-18-04.png} (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-add-library-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-add-library.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-additional-library.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-browser-view-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-browser-view.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-dlna-disable-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-dlna-disable.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-library-location-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-library-location.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-library-type-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-library-type.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-media-client-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-media-client.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-server-name-small.png (100%) rename docs/applications/media-servers/{install-plex-media-server-on-ubuntu-16-04 => install-plex-media-server-on-ubuntu-18-04}/plex-server-name.png (100%) diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/index.md b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/index.md similarity index 77% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/index.md rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/index.md index 7a2238802b3..6a34f9f163e 100644 --- a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/index.md +++ b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/index.md @@ -2,21 +2,22 @@ author: name: Nick Brewer email: nbrewer@linode.com -description: View and organize your media library with Plex on Ubuntu 16.04 +description: View and organize your media library with Plex on Ubuntu 18.04 keywords: ["plex media server", " install plex", " plex ubuntu"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2017-06-21 +aliases: ['applications/media-servers/install-plex-media-server-on-ubuntu-16-04/'] +modified: 2019-01-31 modified_by: - name: Nick Brewer + name: Linode published: 2017-05-03 -title: Install Plex Media Server on Ubuntu 16.04 +title: Install Plex Media Server on Ubuntu 18.04 external_resources: - '[Plex Media Server Documentation](https://support.plex.tv/hc/en-us/categories/200007567-Plex-Media-Server)' --- -[Plex](https://www.plex.tv/) is a feature-rich media library platform that allows you to organize and stream your digital video and audio from virtually anywhere. This guide will show you how to set up the **Plex Media Server** on your Linode running Ubuntu 16.04 LTS, as well as how to connect to your media server from a Plex [client](https://support.plex.tv/hc/en-us/categories/200006953-Plex-Apps) application. A Plex media server could benefit from large amounts of disk space, so consider using our [Block Storage](/docs/platform/how-to-use-block-storage-with-your-linode) service with this setup. +[Plex](https://www.plex.tv/) is a feature-rich media library platform that allows you to organize and stream your digital video and audio from anywhere. This guide will show you how to set up the **Plex Media Server** on your Linode running Ubuntu 18.04 LTS, as well as how to connect to your media server from a [Plex client](https://support.plex.tv/hc/en-us/categories/200006953-Plex-Apps) application. A Plex media server could benefit from large amounts of disk space, so consider using our [Block Storage](/docs/platform/how-to-use-block-storage-with-your-linode) service with this setup. -![Install Plex Media Server on Ubuntu 16.04](install-plex-media-server-on-ubuntu-16-04.png) +![Install Plex Media Server on Ubuntu 18.04](install-plex-media-server-on-ubuntu-18-04.png) {{< note >}} This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you’re not familiar with the `sudo` command, see the [Users and Groups](/docs/tools-reference/linux-users-and-groups/) guide. @@ -38,7 +39,7 @@ This guide is written for a non-root user. Commands that require elevated privil 1. Head to the Plex [Downloads](https://www.plex.tv/downloads/) page and copy the installation link for Ubuntu. Use `wget` to download the installer via the copied link: - wget https://downloads.plex.tv/plex-media-server/1.5.5.3634-995f1dead/plexmediaserver_1.5.5.3634-995f1dead_amd64.deb + wget https://downloads.plex.tv/plex-media-server/1.14.1.5488-cc260c476/plexmediaserver_1.14.1.5488-cc260c476_amd64.deb This example uses the current link for Ubuntu, at the time of writing. Be sure to use the up-to-date version supplied on the Plex website. @@ -58,7 +59,7 @@ This section will show you how to complete your server setup and start adding me ### Initial Setup -1. Administration of the Plex server is performed via its web interface. Before you can connect to the web interface from your workstation, you will first need to create an SSH tunnel to your Linode. Substitute `user` with the `sudo` user on your Linode, and `192.0.2.1` with the IP address of the Plex server: +1. Administration of the Plex server is performed via its web interface. Before you can connect to the web interface from your workstation, you will first need to create an SSH tunnel to your Linode. Substitute `user` with the `sudo` user on your Linode, and `192.0.2.1` with the IP address of the Plex server. Perform this step on your workstation: ssh user@192.0.2.1 -L 8888:localhost:32400 @@ -66,11 +67,11 @@ This section will show you how to complete your server setup and start adding me [![Plex web interface.](plex-browser-view-small.png)](plex-browser-view.png) -3. Give your Plex server a name. Be sure to leave the **Allow me to access my media outside my home** box checked, and click **Next**: +3. Give your Plex server a name. Be sure to leave the **Allow me to access my media outside my home** box **checked**, and click **Next**: [![Plex web interface - Server Name.](plex-server-name-small.png)](plex-server-name.png) -4. Finally, you'll create the directories that will store your Plex media. In this example we'll create library directories for `movies` and `television` within a `plex-media` directory. These will be located within your user's `/home`: +4. Finally, you'll create the directories that will store your Plex media. This step is performed on your Linode. In this example we'll create library directories for `movies` and `television` within a `plex-media` directory. These will be located within your user's `/home`: cd ~/ mkdir -p plex-media/movies && mkdir plex-media/television @@ -85,7 +86,7 @@ This section will show you how to complete your server setup and start adding me [![Plex web interface - Library type](plex-library-type-small.png)](plex-library-type.png) -3. Navigate to the corresponding media directory that you created previously, then click **Add**: +3. Navigate to the corresponding media directory that you created previously, (`/home/username/plex-media/movies`) then click **Add**: [![Plex web interface - Library location](plex-library-location-small.png)](plex-library-location.png) @@ -93,7 +94,7 @@ This section will show you how to complete your server setup and start adding me ![Plex web interface - additional Library](plex-additional-library.png) -5. Add your media to the appropriate directories. Be sure to review Plex's [naming conventions](https://support.plex.tv/hc/en-us/categories/200028098-Media-Preparation) for media files, to ensure that your files are identified correctly. +5. Add your media to the appropriate directories. Be sure to review Plex's [naming conventions](https://support.plex.tv/articles/categories/media-preparation/) for media files, to ensure that your files are identified correctly. ### Disable DLNA (Recommended) @@ -107,7 +108,7 @@ Now that your server is set up, you're ready to connect to it from your Plex cli The examples provided here will use **Plex Media Player** for MacOS. -1. [Download](https://www.plex.tv/downloads/) the appropriate media player application, or install it via your device's application store. +1. [Download](https://www.plex.tv/apps-devices/) the appropriate media player application, or install it via your device's application store. 2. Sign in to the Plex client application using the same Plex account as your server. diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/install-plex-media-server-on-ubuntu-16-04.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/install-plex-media-server-on-ubuntu-18-04.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/install-plex-media-server-on-ubuntu-16-04.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/install-plex-media-server-on-ubuntu-18-04.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-add-library-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-add-library-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-add-library-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-add-library-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-add-library.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-add-library.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-add-library.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-add-library.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-additional-library.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-additional-library.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-additional-library.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-additional-library.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-browser-view-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-browser-view-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-browser-view-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-browser-view-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-browser-view.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-browser-view.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-browser-view.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-browser-view.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-dlna-disable-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-dlna-disable-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-dlna-disable-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-dlna-disable-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-dlna-disable.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-dlna-disable.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-dlna-disable.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-dlna-disable.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-location-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-location-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-location-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-location-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-location.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-location.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-location.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-location.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-type-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-type-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-type-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-type-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-type.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-type.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-library-type.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-library-type.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-media-client-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-media-client-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-media-client-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-media-client-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-media-client.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-media-client.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-media-client.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-media-client.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-server-name-small.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-server-name-small.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-server-name-small.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-server-name-small.png diff --git a/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-server-name.png b/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-server-name.png similarity index 100% rename from docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/plex-server-name.png rename to docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/plex-server-name.png From d2375177b0065f8b3e8478e449aa71f2709819ff Mon Sep 17 00:00:00 2001 From: leslitagordita Date: Wed, 30 Jan 2019 12:26:40 -0500 Subject: [PATCH 25/38] Troubleshooting Overview edits --- .../disk-storage-allocation.png | Bin 0 -> 385303 bytes docs/troubleshooting/troubleshooting/index.md | 108 +++++++++++------- 2 files changed, 68 insertions(+), 40 deletions(-) create mode 100644 docs/troubleshooting/troubleshooting/disk-storage-allocation.png diff --git a/docs/troubleshooting/troubleshooting/disk-storage-allocation.png b/docs/troubleshooting/troubleshooting/disk-storage-allocation.png new file mode 100644 index 0000000000000000000000000000000000000000..8d04ef0bead4cd3dad0978abaaa1edbed46ffe29 GIT binary patch literal 385303 zcmb@uby$>J)IL0v2nwi_(n`r7Eg&6=AYDU;(jnapsbCT`rTwuVY4Nusv$D>L7lQaE)u%4srq zEbn|&n_fzxVu27j08cU_dgAva_Zs#z(#AFb-QQI3i7kg;!R3q z_Km)&iB8ExceBVJ-88E(6FoEAHf@MOI1Nb6eXz%v%8i^9$qFep) z;|{ObRy(2n*&Xi>t}o>KR6lXQr73@f>{DnH@yNhCTej!=PzWYX4}CAe`HIJ7^;$Fd znuTxjpy~c<;h^8po`ytUK((=4km75yAMhXMN`rSSpL@vtP@iJnBTN<)eA9S^q0sh$ z8$%YPNR~uSfmZbJhsokrRtH+0e)Z#U430b@GPbUjAGvKQ9_u3$XxD4EeV@=--*HIq z(!h-~a8nas@aYc{M>8ETHLPbBe$`4?_l;3H@SO(bBD6TK@)KGd{7l?=}RRqn#= zYrY#p>B&W4@}5VMJkg}9EJSuGH*Adx*oAetN#c5zz*XyF@l2sXAr#A z7yZz#G_vV1XGRw(_P3d6S7Kfr#xMbf zm#t_O7+-zx-l5&P*R-v>Ev6J5*xq7v zpyFgZu`WHdj`!zm&$UK}(bAZqhvBrvjf9^ZL@_%)%-gR#-d8Mrv3K9%g@^=PtYET` z>D+6m=;;loA9oDcIpXh2m$u^Bip*e#`1OM(bZix7EJMe6q0NNi%s=n`>kYw>G{WcI|geI#hwzoGR+QwVU5@}LTBaq1Ml1w zAGQEOtn}Ndn2K+`jJ{iE?(i&2C}rSEngZ zr`6z%LPSq^0HCql-3-31eCwIc2BM%6xRn<+0f9i z9>=;!2*Q>_`(ExntXa{t@&s*RMmkX^Hgo7_05+PU?+qQM^Tzu-x;*T(qzm{SqM(~- zhN4eDVRydf%qzLmr@|DCZ}J}N`^|74;@5atptwf0Lc%RHq?nKyI%DGl+q*hw<4wBH z)cKok4Peaq3S){%-K2a&bN&g(;PV76>nFy=kA5^?rJj5XOnda;)BUfsC13reaFhd7 zX|zKvmR*+F?a}!{N*`5x{U}9xKz8P5@EC7YEJ%^rk#6Jjjg-4)g8VqWqM6BOW)G`x zvqwU#sEK>v8^qoi0BDrn1Mr)LEi1$W{aYirJ=t$3q&d3PLzomD+1ARsJO}I00 zStfwN?p0OVqapqw>md$h^6ao9-@KPR4{Ji7cQP4qRQc$>w4w>|S+d z_32D!`R(K>$ylD=;I<68v`+JGGXb-9^9pmDHOFdVA)iF?{&cof^H(1~t`W*n zz73CKw~dGmrwywOHtxq{kz~GPVcZAYT~G1NbjH@k(#*8Xi@B>}9k`jf2`uMEwnh!i z_$(zXSIk&Or_!DDHe+~RO-l>Bh=b{7)j^PH&e#}+(OeU^sSF<)k}o|?Rr#1@nBOwk zIl?qJnL3;@oSK_2AkC}f^1(WN=kBaCLtCkVee`6{O3!5vd5=O%;0G*x!rR)MdCnTs zg$VbSWAr0T_f~i4alxkNkm>rzHPdz22yDE;#)o|3K_FMOb>ZMbsTjgG;iqtmTg#V^ zyVPFoceqQr0=eUjD@XUfy@7o#Qi}fi!z^L&RjRdNhMkXH#=gZ;YMU;@Z9);kubmcQ zh7A3h)p??7Jh|~s0i%W%W@Of2-dTewgDF!JtH{@Cugk}`>iI@zh6QIm%G^raLi|6s zYJ8a_;U;l;!W5YpDc)TcY05IMt*K3~$x@tC;ck*|+FR6DQBYKG`n+PlBF03;*r7Ml zY|}i>xTfhOfYJhP!dRMHTJtt!s%HAj7VktwFiqed*+VKN?!^p@-iHGZ`;*&#Cesdc z3>7sN&F!y9efi2ns~#*UaF81or&2!5lUdU@)n^!gE1o<-zhK_`pZo0Y<(rPQfAh2wnp%Ypt8^ybmnMeKX6}X!>#Yj0`W3; ze{SbyYDJAp0m5sy!IQ$H*u(iuklad0i`{*C4PT#2zhIYS-dQA4KWE;g!P#5IyTCi* zIu&#X@@hQs$@DGvjq$C)(7(Zl_3Ax7R-Gxd1YQ_|ZP@gtskMpa;nYK%hr|yF#CyfL z#4W|4%`?p={*(laev*E$+YOx@i+j&T;}bck3|9mBh{e8q`jYj@mB^fwDd;W5mtaaR z=g|qMQl!#i*16f8-p_i(o+54hCR#nzOP`hu+91Kudz%yj0w-@NXsxAZ3MyUp#rC_G zb{QtsweQ)O|SdCC03ryjIqSf`@MY zhy3u5z4KK*)ijn(Nm%k&=~yd2Onv z=~kc0DAnj_&21MJn3&}tHSgA=i8BWJ$3ZRM&Yx1cthrum!bEMt5u9d zYzqP{Djn}nc3GA9*>RfVDr|W+Hd5ARLV~Nd4yg)D$s!cj6N5%ms%|e39S5l+ss574 zkQM4pAy&RQ&qqryBoD(^YZ%*;YMm`+vLlD@X7(rG2ss?QU6?e4d-QWBAcVb7-@*OQ zzwD51vR3KxA7xG_ebk!K-e865SXVAOr58ClZVvKXmlLYLhb30ERXOjwj~tJY&5cgI-8CfkGC@LWOM*M-UJ>!8{>G?35(P#dwUSM>MlI3_HmS;mN)7mRt;4NR?+K3b>B z6fKkOXcO3RqaJJIJgs*Hg+bp73Z7eu8m$+wg7u%e8b0(`+x0fY1ZCg#VH>)-s>i#$ z)Grq+u0VSxEa$|i`e_lrdh(U;lq|jv^~!vhj-7a)ez_M=IN;byX*z&FB=o3%Xs?v% z_CO%CBy&{_M-4eyenT58);C5r2F9$eR<^*WK_Ed_e&AOtW5+i%u2yfY9r#^^9{u_R zKkz&1ZMH`=zdqt%1^_Ftj(f zbu_oJra@izje(7mqtK&As2lyyf4`s8*wy_1+{xPE&$NIEvZ4OM#=*+Y_CMDKh60^D91Cdr~iBC|N7IPp@M9v zDg3V~{kGSycL9S5;|j9eWeC|W!zAI&8(1h-MsjaAVhp5Q#`CZi)Xsz$w z5lP&=qp0-cyOfI9)}w%vHux4UX#@iGE5h3jD73)OwNM2%!?op7*%! zh=R~C|L(`L_gKMHLhd(q^>Ar?9A7qw@Pq)jyD-JPNke=A5x|gA*$H}bYH+5J3_tY@ z*2D}w@NFmh%X^4|e7UrIKtm5M&nE0{HKSQHqd;Ij_-#pjv$Fao)mLmb($lCY!ywK9#d1K$C zF@C_n$hfH}{x0=lt!$-q1UP1Ny6LLyi_>UC)TYH||D=61+})-bIaTWR zWvbjf-MV5nXJKK1>tNq`drtQ;GB{6BEIB#(eCtch`RX**Nvw-wjT|ML;C#LCw0zGs zA!2~mbGsdvfGw3*4?0;dOvzYc(m$97gHKh|r*{Wc=N+b>lr=D}R$NSN(r*8h>o-r4 zJQsYe@9^$#md@54Wf&@#odDFRJ!(Q4AJsilc@R_gfFFws^n=I}}Kd}>{Oncz_OYKg2?ehM` z^ZQF}S(?KRPu;hkc^>UMLVM9J&o@47!b)KMQf<*dJn$d1nw4;bqE>c z#-N0Z(-l0)4++0@Zx+2h!=1ezNIfaVhnJ6cjO!P{_YRXf~ z)l9v1(v_Eh!+8r}hT>Xx;Qp2Sx&iAR&dc_a_LpmgvH_lZX5bL>0>t#CMaajq;VFNTIgg|`Fwl)gRR#VLJs;ky>Ia!Bu9kq1~vU(ay1}VmkvFJ`M zE)ir|A_O9$qs=PD^HsDfG>LsJ#&fczm_HHUz5B*L6n*O|#l3jBzu{=lP=UYPC7D>5 z>}o?sufpP;w7QOG9X>tX#AU`oNH)kZgA$n6RT~ghXF`epDnuVJ0KvpYFYx8>V4{x- zCatTSpFzqbA1grL*0=44@ixX0gL%Hfee%X2CR*CzoEe97Wfc|5nocI4@W{xF`pd+z zBySd{z-{}b;|)^?hrP&$I!+yZPoZ|}`i-vcqZ5H8O6@)-AEO%= zr^9USUL9Zf?dc$2zY-s{S+XH-I}jUV9415`AHRiZ%L+L6(E2$~=kw;iJhsqlj|)&* z>5dv+D^feo3n|Gl#akP%=umGsI2ZNexhHx+81Uw=men7adG^3#&6~dy#5^!_kLlCt z=O8ATE_G06pzF^nQ^ytJC}X@6duK3)ly-&Hczy+<(B-QNsPi^wgqQQyO!mFjFS+j^ zogLG5aga;1!^r&L0)y57^SN;@)ncPpHqXC!OgD->Kbmdcr9}3y0JElNWMt-XhUGwV zb3#KyA6NfUq5(8z&ulB|M?6a4KG0Mi~AsFP# zch97fut&DbwYM$36(U*mlabV2xXRAYD(YU=Uj;M_Klu1p@$DNbzR_t!{&Hebni?R_ zZIPV`F#3eAL;{n5E-(MwwuqMJLVo{f%jX4qz$-M|So-IibUYxLIkL znF23IiV_b~nFu`tSs>2qJ_9=CMvsz7* zz9Q$f9!nG|%27@)-WVxJcX!%+%)r2p96E7(`7*(J+ zB0cYt*J7fPW5myKadFXcp;1goWSJi7zSM^2bS>mEJzg&_%bp8FUk|5l%s3vKxfCGD zIbLv}F%mB3SPG@O^$iRtCOH@)c1Ax0#g&>5n^+Z(J*FaAjUF#{;~FiGucdtTs&mRL zMtA_uft=+wpOHe$4tG!6!mI#4Q;Fd;u04rqyQt;m>Q~h`U#Xby&DJV6E70P$j8;k4 z8vX2bex{zUStF10`E!nDYW2o=Zf3ca7Bf40BS*$}Z(?WA`a;utttyM4u>x&22Wxc8 z-ahk`^T>n>!^m}1EaTBsirP z1$DAzP+;E`?OL=WpqU-q=J6D~CoXclj<0*a{_1`bx&D!8wwcZ+$a;S4{9 z05^7m5rc8@aEhj}@w}AgJ!%^3`*u4glxRmXoMb}Q&pd7V{JqYOU4-^WhJ$4YYtK*L zBPf&Of6~r5Vm8Jv#V1)!mkuq6VL%FW{7RVSll+NAH|Ak5+54tF+DnehQaRmTJvJ$u zEV@Sn7zi-kG?e50%Mi-U5aGm~`_z=g>6%<3qx}t68JRb3m%ca1ILsfU9jS&yUKXz~ zA2koW3Eqn|ES}b9NIQ1CW>n2Kkf@;Q6g-3y&W~p%_1a?ooWYJ3I$86o+1Z+$y`plv zMI%QhBL7^^T~p>-Z>Qc5te%rb`tf!#h9?z9-iLQyHWzp_+f#Mgm**mzH#e(xX^X|N zbe%?5VmXg#YjRtvwz&_E)we7i4iLq}?n}Lc!G+&s+OPGa2S&Lt&iUR+&7GS+|CjLO zSEbT{if6TP92ma>yszLbAZ~EQv}1asOR3jYjv4Cdk*(q%>87WlU`jf}3D~vc5gYV? zXH3ZF>9W7Cw3O5cIjv;P?S=}3ZZ)zXk=1IoISDibYhZE41mDY-=B=Ux^48P0Yqu;c zAdws&vmZIOC)7E_MOu2FfQHgKsn=!^46FR@;~;&sw2FC81!|AeBALn`(_{>?N2jTt zjxtf?l(YK%iMdK@8Y_E0TjoC0lQX%8>U>m_uaYGBxEvteEk6wu{;Og~1nVZv8BQzv??JeznvTYu zarK^P7pEfuO^o6@+IaR;`X~#*Rgp$&jtk?2>3ZEUqs=E3prK?x%vt+s%3#GX2ZP>N zZpV5EBwKn#daB&>qu0ecX^b>OUyG{7*=Y;HSRDVsg9ot(O_Kca;c2@h9}Yy9ayPaJ8vEfsWi-XLe(9a)wGwi?^wJ1n&uHmSnC-olChUETi6dU#pJ2c%p-5$*R2K#9%) zd1R%xd)f>L7IUk7)A6HU?Q`sxDK@uD9;=Jm-v|W&uoI$=fd6U<3g-%E)t$oa3sg@J zAWo30x)J)J_B3F%C(b6Mp>oNe?Bb#%*!FA5px>8s%_bbeLR%`AnPFgmaOBlV+2IdAFl)nxcb^R4kHMOw zD%H-L*;{XJmRuuu*69h^?Wjy<;;RlJ`C8m%rSG2fwFq7>B)0$?Aj93Up;w8%W71Su zB$h`vb)L+W*X`Exi?Smdp(81MXpcWUDf1_+-blYD3AjCgtBA*-4uFHvOwYO;E5Zbz z)vC|Pgbl)FI&$9=JCdKZyFaVLDhs|_7;wSA^U9{-5cB*8hsu8DH z%eWqOHY{%;{ICNkNgHbV)O9v*y2M;D1d*FBo>nA0-|m--t9S;cj_FdQ_`8wx%4(++A@-P!VivTk*O(woZ7ul`j8pFS{qKd`@R0LNp z!}%vVhtzxhv1i$kvd7KV4vBAza{_1PQlk!sl$1<<@|J8Pqk~h(L}R(3!Fuj)m34@z zG7F0-?A_^cEFlhJ8-6`^|5UPY&0Mid_uwwx$#Iq*kn)>)UIb_;JxV9-&2#;ZdZ+fY zp@yjSrjOJW)48hId2AWpM*47gS|PgBWumLBu66C4;jJacTG;1Zg`#P>vSia@2qv&8 z{59si52wv1zSj%2yBUDr#@vZKtc1C+9T&gTnhTah3a7VvKe2Pvwe`ZTyV_uHugY#T z2HWw4;Oy3~WO*&uo*b{EjNN}$QUdnkgU2Wuz?oqV+3%hryZebBXf|=Au{ZEmVTD>( zp7CtY)wNe~<9Yt%(;YigMozgIhzB7=jJSwEi0rYWm{o`w}C? z4(#lYop{Z?J!%b2KHsA+U8|{L%_TAcWwX!6K|$FLnKDO<3u3HLUeXM$-qwTy)mR99 z7loLZ*!gy*fAHbO6+{Cq?GLweIPn3>odQ68b0DrvEX`m@jbHC-30;m5I(wglMd>{# z(3}JxN7KkAOqG=o6!kO8CFb;-daPF#=wyF0@!;vT6W*D{i4{D44%KmWeULk)Y@=(9 zbnX2OC=`VzOf#ap6ohuyGG5}5SF*Ko{}pI|hzpc?FJvSClzCA= znWxWrRY54)Ron#>nlI~-b1&p#FT}>^Hn*}FsmJAbFBE|F$nbh5XA?wj)4w^H8b?*T zONE@eG+Hdol);lsu} z9=Wl&2SZQ9CA;T#{)Vu+&YUK|YU-~d!!A2yK|&QU>Z}D(~V3lIx-$iTCf_OL3W}%I{PW z9#Lqxu&D6nLNG_*5xD3Oc&-!oCJM~&Y>p$8oT}DupjKogx`KNgpIk?z%|w0r96Scf#T~BNo}SVLKr#5Y z{dP%MhZ@D+Z(mlFG($2B!YgP2ZVTsFXsRMur6wSJyz}Yr z;P5ZO!zmGs&vMuY{6A1t0e})sEI0szehxt6R6;^R%2B`x~AwS_nA#)Zz|^LQu1^GSQb zWZZ9G>%*PDg@@-Qx9ANLh+M@_D@tB>;?oeXLTP=L^+D^2NTeB1@}D57d5*9m9xKh% zpExO(NfSe|l_%4o08_;|`bpL}skHQIl(56y`}eadUWO=klk`%0{vWeZd!I`v2nh{% z6{xYqZEkbeOpQ+}*x#awDOz7&k2SxnIXvrum9`ciI+t1vOQ*i9wVuRs-ORxIn{fQ6 zf6-?9+jxJP8wCzP1H$c;T$GdR>I|-bT>kFfoH$+|aS3*)NpE6mlwMzsto>#$Z}zSs zfxt(158=t{2bUM!HqJHK76v(S&q4sNCwqD-;d!`?4(B;O`10PVvz2mtGhTiuPnz51 zxL!Zw{Oe(sZf*wahHElVQh^B%0`e5~DiCYN>YDujY`TkEG=6J4GosmELn1uoC04FF1dqMKVN^Ya|kG;gUINTmK}bpSPL)a=D@1Q(Po<4|$x znf|E&VnPZY3g}d>VfV%$gHGC7jdzEldG*z&dGd9qD*vjt){z8Mwii_#xBgVN08Q3K z7&YF6g-7G2`;;I^sD0NVFmZzU5kZN3-#{&9Xb-+ge~c+)(`^)PQj8s{mamsOhY&If z$=8P!WYk|LdL~>hM-%@zo0qEq3t#!n3Id#YKybisSG{DSUQ5^~-1eMvy>vqH3!VwX zok#uk1D|-?C!SZ&IKEGG-MSkh&D_QS;26W1|FsJ{RdKn9{o*Be^;|X*Yjz#=NKS`q zhd)xSGsCZ2)PUy6W#Q}kC8!#Z=bA6(mWf39Jx&Yxb?x%43=)m6wqn#;v+g;^9n!(j z=-`5cw<$P}j6Ey%pr&C|wby#bwM)*(Si*mo^?wrwz8ANiT|>(+V7Bh2H%i|^^;Xws z(Oo2ebKfoiv0p{L!t)NK9I2>>A!V}4+#+eV8dXwE(&-#2-?NJkN`tM#!mn!2!6^W!+o<*^@r))R7c7pl(KXHjwjd z1Pef?<$7ZiQ}>sO-w9_JA`*qFle?`>qWQ}#*Hg2@wtx!)<*TmO=yiNlj%s#_iPuSy zXPy11#jGLZgFO|{6;r!@3dvGznl$o`Ekn<{#vx!^G9!Ox_DQDWXNiKaB2Wfy@2~z) zEvPyD_D*XYz7g%eQXWpQ5EB@)r?(ccx$w=dK+2j9H-*`7G^P2}3%F^WxJ z-odojHl9=sz%~uMD6EtLtNUrv+M00FK6cYfK`?`rSI3fk3%(Aw<5cM?_1evRRW;I>^oHTyCiOL&b##b|T z#8SEO+L`v~B7; zIodCr0FD{Y!>cgzs&2;mkVJH<%Cds^q${WI9*}2W?FKnuRso!381cD9@~2OE0oo|* z2H|ej-4#7x^D*jaufHr1K7GtQp#~J-=OU9R^0gdHj1~KkbAD4HKSz_H5SS@bolU)D z1T){c^VURmRQ|kD%Z+2o2>0TTVY08+PpIm`Lqpf@#|eE>(Lkdsv3=ud14MZ_WaySY$m?=zI80;jerY9q7J;K~yStf5pT-bsx~T2Icy8fWs~BQ~-7M@FXWC zy3FRj|A=qQVv>NOr{J_9h+%+3c6?x(Q}N@4q@}{!JX*i-x?#*OiBM9vk zBkd)fDY=0*zi3%e!>+Xb9QBIe)N57j(39$AtW|g`zn#14BkgEn$QdTaWwUMvI3YCpW>r>a;bjrgK z(Vf{Buj73CsZQP+jgG63eU2QB?ixcXEiNA;k|%+`_!8R4 zQ77J+lpj9`eZlSTHN0cI33}dK$+1hCGp9K{W9qcCz5*Bptpm8S(8UCyvwi}9+2{oB zePT8x9n0~8ig&Max9d?=#Zkw&ar4)|D|fL-JFezcNj%C_8pK7r%i+d}=hOC*fAaY6 zzT(_V0L3eJ+JHLq_Qr=A@~?faUrDy!g$K-`OEEmz8>@6VJ|orVe|N91XeTM-k#fI) zwK_mKOo+YPGL%(ZG+|ygY!;piR%6j#+vcF9)CD@mM%L9p;e|(bks?bU8z1Zt`*ds* zhNm*QXB%Uy2%zo}k?V_12Wh}kj$ess$o5z7x8Jt`sL*{NXK~vfX(Vk%=P0wp@;V$L z2}Qwyh?k(wYtT104u%QDK`v|)(JJFnFKH?X1oz`EnfH)tNAvWwv^4;lSE_c|2X|kY zqdz5>8J|8+a4LzrCE%lae?D#oUCQLpn@zjms{i)E&4+x{d1}36K(Cfv$l#K^%o1TO z=>UMece|wKYcjAd%m#aYFeE1nG4~)BccmNtm&B;AAWEHrLGt{!e{{f5SfIf=8R0}#EPCSKI_FIi_dcHG(hM-J$`RKRcIb2^XYM0&W`lFu>8Yjkg9Q#Cgh> znXtgZ2%^3Yw1=znhSSwrGxDUt`}^2WcV-b!P3L%7-xQE>=WLd1SFcrD!UhLRQ-g7N z8M2m{eZs$f%~lY;lwD$!9r{YEnT%V~C*(4pEgz+`RmkCeMks2J&)NZi*l+-%56@f_ z)W>pbqsjq$do`>lDwA1mB^lLc8RSlSA5Z#z1}mswt$$4N8YAVZ|90m2EEg0be@M=8 z2;c*%ka>+a*rD-p;0{Dv66jl12oAFDq%BUX%)M+$z$Qmvv;d+4G*Fy9;9p4D3ML&^ z*GGTShMPbnP)dcvrNtA?hM4{`+d+bWpjpdUijO!J5)v;rR#|!1#^P+gWlyyI(aZe1 zT368(NKLr?-y(jew>=c?z!)?SH101l_{}j0sD<-pp$3pDW%>v(gtH&Paaf`K^Zmg} z7ZX3fGy}Wh2tFYNhi~>hwVTabgMJU~`GpB-p%MT53Z;W47|NP zRW_|eoT*ioQ#Cg}O;$gJdp_rpFH>XVD>Syd+}QLUmrdm*F>_mo-=w{OEF?*&s7P8` zT20oml(>i4Tg#i45eW@TOf1NsE@$QkgY~Zy?<)|#oT~6{2+(|!3Wk6M#I>vVhEYnc ze@(H5il9^z4u&MZ$GF`CBo&OTu=fdQbg+cXLOTQ4Clyy-YyZEw=I@l>xK0X4%g*P~ z1b(H9Qvy`>IF(`WQMG-p_E)I-_lIdjfOR@ZZKL=T#~uUvh>+K}e`CbIX+HrvvPURB zu%i|ifRw^gvfhi6erDh)8FlO!JrB zzAvCW;BVD8fA-iPEfxZOo|}tH<<&>R2-`Iue9BMiT2o3P+!*iQ5j`MIT?>dHrl43H zRKP&ls4*MhG#oebstA8?x_`f0Q9FyM0GLRPZSzA){`g8}tX zL`a~TY&sYh2j|!n*YKAaaW#Rm|Ka;$ivM!Acuv4SG6VU&dHEwFom097n=ts}U8OP( zl)OTGd_WPfJ1aLI`IFr0-sSB1)dcPM2t1z0caGmw^WUzSA29gQKA8@$9Uc87K4m%` zW0f;Wa|F&KiSXR-(OnQ?61CbpYDPFHAMl+)^+Fh4i2Rp%5kY`?Ni6h6=e+#2X6$;{ z`63w`gW3FDk<74wh@5QK&-XGnB4@CHDV!<*MBuqXy)zZrUrq@1m?h$X2-Msw=p!Lv zsap#_uxd$T34T#Qih#OKHN_}g{3Cf3icPB7Id8{;Y z1CIiSYr_aDLb6pQB63vO?m^!WqITXS9pJ2Q-Qxsr{Rg96v!M3EnWw3dk=g8qae&#K zWQ&A0`zcGQ6_!Q&G3=J73mO_4Sf5sFlr10D zr9Ku}7dNTV#{aCt7#lZC@I4dOa&fDI;^p*EXpHP6^C$&db$OD@$EieAu_DBNDPBl47%) zRIr*q4d;(U`!)anTRQnK+0;LvLUiy~ikoY#hIFge8}k`QcI;K9_8iHkUpT0Kbf(<9 zPe??O7u^Pdz*iZ-(~rAS=aW7h(YABfOcRy8g(ix$Ja~_qeJD2IPHv3`kN<-!-Xvl| z#jjW!dMIu04k}zm}{%AgNA>z(|Cg?elaz;AHKxD2N%;l zenrsGh7>S6=?xprGMDl9^E(&txBGQdF8~J}V0?b~U-qFQ9jZn4b^KerqlSQsmC|H+ z`sK7zMk(|smG1FRN?g_*eY4Iaf4K9d=rP$-rJ};ctJ|ixQTFvo0$lmR&*1)lGB)2Y zV@DX7m{_b7)91L_m2&1^@53h$GPP59YkBtY7f7xd7{_6af=X}fF%Z<58rryi={Flu z`0|R61NXo9en28B9UjS#!So6~W!zO>zun;MWVZfhv_9vv#oR;(Z2#)^c>&xJpw3m& zrK9#upZ(7G7bx1Fk*MW2iuyYs_Pqn8Z4`$YAtQru!PHp`IcQ$nV7J-35+eah!|nX1 z+;d4{w|1{|2ERrS>y6=x+x^-QM6tl5il-Vq{2NB)ADcXD1r|r1!&Sawnwm7XMUo)< zMVJ8}UI|jUBAw}RNpzp*F>X!%cSeyJ5tWs$7vK~f|97md9=|}qTVQDM8{1z>_`maG z5V~pjFZ)(2e+w)1oPH@0Prfr=5WFo?5N;*uwC>016@)My=qKn`ULUXpfYr(WpZ28# z&?0jrt6J+9W@+D;s+}j7Qq?Ccb1+NcIr{VLq<+bXKE^xm25_$X5~5&(P2 zi-zN`y2}4l1_5cPxt?fUX_hGe#Or=c^9az^OrGyxK^`( z5o}h~^QNU7oicap=U*JX>#Cg`U0{h8gLyGPqu6x!7$AQKY#OfL=tBiKnqm@xV;?~0 z*KBx|1<+DGrKh8FC6|ti^C_y|iOtO)P$K8HbPpC67pI_gKdDyF9nW(j@1;lo1$3_S z5xv9zAu`(Xpd84+hRaJo9-qEFSC#7;Oh$jJZ01-+ZUM(O2u^a)1 zAIpzFQrEMK(W4OTSURb~3JoA782%W>nDa6y52OYhYngR!PvA_V;Jf8my=+i-exMj4 zh8Zd-Wp+w{LZt-tj#Ll+aio9m>b@l}ep&mgq_T3U@vwV@h)6RmfgYv+ne6&%aWZn| z71VDv5HRiqS!~0|QOdRcWo<7Esk;1}R|GRIA?+oeXQSg}{96F)LZ$J#zf%%yEmGiPD7LY84yhtI zG5oQ?OUmp8$+H->T4-NO5uj^8qf_DT>~Ru7iO+!+((+tSSsc(S=Dovuw}SyFmC0{p z{+Ep7)5t{hj2S~}AGuWOxyc}*`XqA^?|C|CKBXOD`qM3)Sq5=u=v&AUw#!)s4RFA;a8o4ZhWN8%|#RDc`XQTW%`?8^Bi$KFhr z)lCT#AbBl?M@*geg0ZkaW=WTkfgw}X`VXl9G&Kc;-67*U?BEK#0ie3cE#JfcSPH)w;_Lgx*uCKX~A;@LXdI7=Xk#8>#?R zoz+~SUUoK9fCULlgdC!JdiIv#sJSC)M3(B5Wdp1&Uq5eHM4weX19I7+Dj4usy=i>F zqk=kc9+og&u{Kfkw4H3FOOk(wn9SXt*=!k*OY>-^xY{}GI>!Op(eHp@$_zN(0kjc9 zZQfrGy+D_`POs=KS%m<*U$6E4UvWkM6R0GB!Afp~d|R~62>jNax$LYP9Jo1KeC$`_ z?=8lVf~`8Lvn9ha-HBM*W#=s-;oqW-Ac8sB9cux&H*fB7a$d`2ODdOob~Dh^)4M-0 z*fHMGEK-JGVPQj$NMAk|0~)n<*Vh|ln4wp>Hi_^P0QG(okq-Q;b5MUGfo}>x6Ju8a1Q-wSY{7>R6(`qvh=`< zU`FCGurvD3)q61hOZ*%I!Wut@-uB>#YU}oF{;4N4;_KJsd+9PcI)^unKNvrAPAb02 z>QV*6RxjE1&YxndZx6@fct7@P*MnVV6p5<_g4OerzkjDmGPK{Eu-Ud556+hs@e-^^ zX1z>KZdEOk=0?#LLwccKfDZIjg=H>q460+_dAFWd3?&ff$k2J=XT4+pel{`ESvD-w zE32nRR#N-e0^+paN;z8YWC`FcO{K5IjtdK7+Y?19D1v>L^fC*NoOkl@&|xUejuxd4 zD>Ivu{Ynge4Cr-%j#-(Au-IXa`V&WCo zNT7$mJx>k8i{sh+@<6}KwH6icr;oOrU}`YU&B2}gWY>N6O+C^qK%}Lbs>LlKDaq7w zFwZ;fbn?L{Fff6tk!#)K42S&k1loeP-do=!pS%4ua<#n#O zhi?LTV!y*kNB2Uh*C6eaBjt2rL7*WT|L$>a!fbGVTK>mU_ZjMd>B?^WAC``-z^wL@nvo^qlRA0M0W@--aiB_-XFh4y# z^W|fmx?YEuE+8eS3@yeB(iJl0oXmHT%b?4%ab+Q{?@6o;d117*OPr0{i|t8XgMb>| ze0*mn_oZ=?`%f(RdNOhs0`!wgc%eePO=UKu9xx7@AeFayyEL&ColX|xV};2;j_#Ubk?FjKwuI+qD&f>-MyvA_1wpyx;^C1iZp^Tuoi`;5QH@H06L9-|p zHa7fNjdjW47R`fPUdh_ktnbU598tGa%r^ja>d_e~m&1csyy%(w0E@EjjlJ~`n*6KE z;(!szzuwl2o{`xaB?jvT?Vhq7k1|tbjWp?788^DJXUp7=fUozde)V8|olkCml9Y(Z z=ol+YGuK(T-Dr2B!3O4RJ^yx=jTY+Q+n;Ix&Xz8VJ=23b-UvOYS-(UsIXR5)NDF#Q z!0$15JYDS_AFbEbM)|&!yu2DB(Zv!OoWO^_J(r(L<(;MwY-F;`Nmc=NCNkT0sDLAEw!LhUXc+ zFdr#CKAzJ0S}~YdRqLygnp36+l?01VDIVr#54S^#FHN@&+K>IK49=(Tp-T|?w1<)dA2&T?d+^mBN0J0$S)&K~nm(tg-IV#UY zg@EsT`2Ae~ndKW=-ZKP*L(sLa?Z@rk8fI!LUw-dEbvrm=?}GjdJP@TqaaDJ>RPpD5 zco6`>RWiwTY-JPrUOJM>xN?%-?U%d1ZAI*<$=!ZlQe6u(VVQRGQvl)$Gsn-+N2!K+ z!YWL!0;X%U&6^~Nl)G_rC~#C4&s+FwMVbbq#v8g`NMvnuC6w9sz`%q$YR1jot4=sj z4?T3L6S~bGs!I^bWf)B40L^84F*$&KLx;2r)2|S~zvro6?N+fN9-DSM5%0|+2 zlr%J=cQyuf>vrphZ#(b}<#(y8>q6hla?>GFfpbH78pW(PSW7nI{q->BZ3K zteGiuyw*Yh=I8G+OsoJY7a6o39ryIB0%s9I_8TtF;~3=58t)3*@7C5jFdpwBDw|tc zbgS{H1k)@Fc2h=1RHK|(?>q(r+cTgm?ltv)!NQ^HKy~LvEa1O{Xm8#4^o>}HS23oY zE240#@EZX=@f3al@hz1Ed3aXeteoyxyu+p{H-Dx-Bpv<&5?flDI#p*FhyMc*fZf8u zgB-^?QKBW+71cOCp*wy7TEABB{1kC=S)$OMkIQ#OH99@2Qj*yhg;VU|-A|gMmR{a- zbpVau0S#3jU$4y}k&jn8?k0t>yDx9@!=6J!u6+9m25Zme-Afga3!bAe_3>0sl)m%0 z#hhxp?*^ebnLrm;WvL-tUe{Yi9nOwC1dgQ-H)bXk!x9+xvGLbFdns6sZgBT8g!BUq z-#m4Fs*S-N7N3#hNY)L+4?`-$@jT630qDHV$2h?o8hG%eak12wu4)0X>~_U%K}ic% zxK=mgodNq~UJ@7n6Ak`-IR=dA$OH;>kLH8`b0ANu5hrYeXLC+JPa8`!ZK^og!hO+a zg&#kbg2at0g-K2`WsQ6eRXV|fJ0YcxH@MY8iAASspqa8AkGY1ctEQC-Jko%wHht&; zZo%D!Axm@>rp=Izfy8(O**&rpk~&t!)@}>_RnrVp3ok^-NToTm>}Tu%1>jTbt;Zo8!}+++VRgbo>2-iU=lpfCXD9(-{3>6{S*{p$?eFm^#UeT?KobVq}mu z8|9-vl~zWaUz(!dH0>s*c=u)j;KCVYmleh}bHA{%BWusx} zPSwoMK|(~P+S7Y=ZliRX(Pt5oHPH9jrAFuiJMGaGZRQ6fAzQ1l+!kwx>(o=@ePIoe zSNTXPj~{O9hr{zA<@e{uN5J_Ss?CeN;r?K-3>Bpw*)K(-*9J~VB5Q^7cx1k|(3H98 zf+MQ&Gi&36{H>7wr%3sC4le42inQuGM7>DUZE1qrfZGH1d@xMQtD`IrHqA!Msy|j1-R5JbUa5Q=0S|~Y<$LhZGvaw zDkdJsC&!~(oriSe&99~qNY;F+1`VeT-V=8=Z}NUWK-Utv+Ypz#$7!rX)vZ0zu8x%& zXT6<~uU%2qgK)k}MOCodkgznkLUp?CE<<_@UE~O{>lYGH1-?^ZX>ez5!3MNmkm!=t z|NoHo)?rb0?fNkKh=GcVBGMtK3<3huDN0K-bSNo}bcYBi(%nciLwAEk$Iu;0*U&x0 zw{Cpi_uKpXef!-H{``aE;BdI-UTa-_o#(YY6T)L(-dil2AgE$o+O9MTZ*g21I!ET> zg5k{}&!M<|>AVosagcSozYKNq&ZLphhYvy2H=WmONK~dXqK_?d5tgr=-iXT_s0%wb z&#IL1HL#(a``M{oudwTzj_fHy6wwZ#$jPD*?`tkulFso_WZS=mzmaAHIu_T@?nNVPd8Ni=2V_4^g0>88gpq2CGm1=t=lVo2HRV{D!-6vR@FTEpFuTVI$ zVP#p09W?8_?WL`qtnmn!RJ=1S5<@<@UfM8AuLgyIJC%90JPHq9OuH6y?h4kulRCZ_ zG;VJi1%atCrZ_W>)0qVa7Q+v{3h#cRkck4`5Jx_=OHvd$W^a8H>$sVj);GhT|QhJ znPtC@$Je;m^A;?&+RG;-B&2t}o9^(Jgv&?mGzx5nH{rzW}U3JG*8N_MF{Xh14^y%F$sBwNf+sCcHMGpQ#`c<)Y1g{6`&v z3;~e%&3sYg{ZA=R=<4phDrftN3xIxl5)4xB^xmsd86fx>OGe}N? zm+bxpE8JK{>Z|NSBxzcsSo27TO>-)P=A6F1F7UU8M!l(C=l`lv65ZhHl9(F0D-gr8 zt`XmpTF@Ap;Pka#@yUD?kwIB z&WB;(rp=@|mf_lG1Dkg6ACIltPb%L4l&J{!^~-VBfqZv(mo>5cK@h$+0h&nG7pr&2 zxJ$)uMdKjjqNmIP>(iE+0#Yh+ytK2~kO#jp|EG><(7%BC4xp^u&c8!77tQ+%$8R9{^Es>i$FvTzN<|W{(*MynV;66#xY5r>*5@EdHLRy zoGWa+oX^+YNIT()_7_DhcuprCISI$w(66MA3&lcH+os9Ttp`ns)U|d?E&F zP|Y<%QR=xnaZle$k3=84q`=fZJTfG%%lGHkufKlrRuw*t3-EUYHaEg z9r0R{RO1Pn9?8_B(2ZW`;ok26&MWk&6tabGIsM_XtcbDQT@#2Y?pHoDh#wq0Sa) zo$mh^H+f)A2sg$DvXvJzAB3q;@ivmKVmLK(FzVS&xZzeLk@9nO08B9F=IBqFuM*MYMLCLWM6ut%;Oq*o5#O0j~xwz<#uVZ z6vr;&T(iF3Kke9~esK?nqGoHu7$R;Z76B?~v&mj~q&HMPlfhCcyT7a2O8^2rmK z=Q%B6fcZC+;&x!5HD59y;#eF=#Hl`K$1#vH_CD@lhxqe^>&f>N)R2V|in|xkspBGd z3{aZ8M%zRKNL3Usx4?jwoj-4bL!q5{+=|=$Ez^mDo}uaOBAcv;MH_<~ynAapni#_u zpEIErnUVSXqdzcA?(TKKtR04PwNHU;vS%fJVxO%VoRX8e47R z{_cHF8lfJ(1Tg5Ap&QI(Al+r{i$*GCE$;OsJ$HigumD5UHRop&&ShU*uH@c&WC^AG zqjayI|FewXzZ;65AStEhPxAei|Kt7h;aZy%Dm7)w)b8=;qRqzg__8$Ol98gnY8Bb`x<93l9y!E3xUR z^EEN^3TmAI!S5>0J}>SlB{>q7d!#l=Ldweh zw3E|?Tl8GQR2=nNl^vI9E4G1K#G!2BCbJ zm|~9l<}@Ssj29*r*w(O6*lA3My zk$-@E?RlVS{u+4_1rt~ikp+Vxj$&?h%L7VR?B=~;PS?Zoh8j%51L>otqkE!&bZL-+33u~|Ii$BN;RAk?jYY2XcRx8v}a_hd| zn3J|F(H%m0H7uWQoDA^0KI7O>;j4ak5||&Hz2>D9D3`)#y3AQCRf@tW5ohEnj9rv; zzRtOThKf-4z3WV{6W*z>K$X`m-4lZ_ZS0ECKo&~(=}{|;ttso9pIAa7LY%SHt}*2M zhvo!t4&RFb-oTQLUtU9J=S`cM8GVRvK_lTv>%V<+n}vmCyKlg%7|db3PPUcZXbAub zZ5M9et(se@0yXnZ-dQK(!3wL$+5{Hqlg9D*FAEAsZ%Izt@Ay$B&zxSL14jhI!eB|r*KXDjec!AHZyp-MhWc#p! z#qwbKtt`G*ZxZs?^y5%9<_irxV+-URqW;pcViAXSmxL8$rhmqf7P_t5e)RSAt!PT0 ziKVO3r9;z9%3N!{MnQ-lM7E&NrC+)^`#Pntn}6ws#INKV+=)SgDKo9%;anv~;!^ih zttNkn4Q=(H3T;Nn3&zI=29$j7(mD_9gV`bCZ{}yJ8j5t+!$ibKH7Muj3#Kd=y3?v= zxpBi7;Bw4*ExPQ^+l%lax1XQKlubzSb788*AHrxgjfw27U{H^a8r8EY*aroqt{AOadhv8~sG22UX{hiN-J3`nDcoGuDD1e*LCR;T zaClfK@$2W$s{YX`^SYid0~)ve&y@%xLIUsQ-jH}D;C|ua#SiNx;h((cyfz7@^9u;7 z>{f&2Gf*5=aZDHFa)3^xnoGtmAnu!R#<_d~dkT>67aS-}eDk7R>@JS+gKs?qeB_&z!WEpMwYC%hwhA<`U<@rEo zR=;|a05y@6dhW!!u*Hq{?U^o{J9WVuYIWO|`#*$eRjX5Vo3$0>CQr@E&GVvSCwPEw z9E~<Bb@BfwdGSGl}**^1-Z<_mK`JEN(+NsYX>3(vHCB7R2TkRobs$_3lf2L==AiLch z(I_o$<02P0#P%&vBSPy^F8+uElv4iu$G5_ zgSN%>=IJTgR$}Q$9=PQvrw4W}fg_DCsx1v7yH|PB8nYV^tGKN@jII&xU(`eL1cF%G z9zw;AFK$5aLXP18`)d7XOdKZg0K61i@;uHX)Rng=Vwy=}n#eM*))Hkw(cO&?D=RA- zGVz6S)o^T=A>RjDVqb0_hcKxL^QME^a=YGzpvs{OLCHeL$0nahP7D+8z|>zBV)mEz zpPniPv=8;l)TKgLv;~&xe}JSD=!SN(ov}Wz)^a~Y-M{iN*;g|>Qha))mOS1{bF=%l*XV#phno)KbGCRW&bL{Rxt^urRZI0 z=`m@vf7r3cBzOF9-7OySGZfo`_`vR_eRbirwg|N6*Oxbaq)KgqfnTYM$_L>?TXgE- zNH`73>RCbUkzLNL*w;g$A7hvAl5*xN70$N82zi-5Wz?1J@!p}}t{bANu$&7Wb=YjI zy!i0{BV-F^6|rSz&3@4nO_MaO)LR>RRaan7Xy)zKysahc#ZFC4r?iTdo_vC+rw+)rxa}OWwv{D1mJI3e z(TXYD48*E71~*=Bcco^w1fSeZp}}RNpuDPTp(KuVXL;=5s_i0dAg}R#!fbm2?XzcI zagx&EI8 zx*Lxp&UAIKjICIW+Tr|FQ8sh(3KvW%31_+VagB{64-ZRo-7of3i!Pt~k;Z{zD#z2r zsQ^@je8V4neHcO{faJ9fbja&-As1WYHGNnb=QzGBWsEl9cAgl9@${O1xykukYjDhl$~O34%44Ez{DTz(EoEK&CzIE%?MhkJy%<@oB)K_~| zX$5EXhCtFBgS6k9)G#Ms8%C(*rqi)FT;ZuwLz^Hm$s?(JUn-$WN*EXiKrot_td}@Y zZx#`6+G6Aza53wxtwW=KuDZ~v^>$4nL1HrJma?;d`)VE@dEj!$7>d6Z5qFw(in;?6c!8px z#S2UBTIX7Dir$cK)Dy43z`*Kt)vGDmGAipkI}tq@(ye)Fu95h3O06YJ1NH6glKL-W zscwuY+!kNxe9_j^IJVfGlVJi97b`qq=yF1qmOsdnw|39aZEwJuYV~LEnpc*p4`x7^ zn5G|p(Goq(>f&!S-A4GRl>o(F=Vtrxcxjm(X|dfoF*~kPgAO+)(%E) zYvWg(BGCUa{KtbEY)to0_Gd=}lYt~7bVDtAAGa5BZpxin^MvqvUeC>ZIg_g<`xf!K zAGbnCjy(z_Uz0!`x}RjgeU1I4_*ni5#h3>O!6OzKd)YjNj3BG7Z$mU<5iFDmYi*0+ z6|tOap>5YR)4m>?h+uV3g-t5=*GF9=laoxB1R6S4=Id*jM#xfnNF^@UBzK!dF zLy`5#=fJ)aOdOj{NEmGY!&p?`zR~RCXdauGzHk!GL*2f@`pK1*^u~~GjYWyf9ye!G} zuk)fYR6@k;=3^l-C5sC|v6T*>=dSz8ZH_X<^tIO9hzEjFfiJab<&2L4vYg8@PojJAAwsAyZqEg z0-W`^p-Qy$!eCl#KdlT!-Qzfn|H{MSTWX-X((E?9s!^qfs&$#vKZGA9X>Sbb;QPVE zJDxYkx(!hobR_hZx#WuLU0K^5aLG#QKQdin%cAr0^h^`nFRaW%k{#u*yD{r8+w=D4 zKjTI0j22ZU(n#E;)j+1MsQIt0Sq$y(nr&7DCUQ_>U%eCLL+&byRLG@9wsiC|))l6U zXW*h|N|a)jYIUA_ea0o>q4v2!ehYtRV{rzw`S!A2X_m}R}3EP5v%j+ zt@!zfTZ)eBX%~}8dS$mOU?9_E8$*RYEPD*@@XOO-{g$U0PT&_5YN~A5CUQTun?+hh zz73V1pU;hXU7a`_y2NfK+C?Sw0(%uqR>~Yx&q_&H`0+8c+imR$r}cb3=kme=ZHfqP zNqSUbz3*M7-2t=C`4=xC%|qPviv6$Xt2igyG0s{;*Q+ z`{wjS*O1VM(#?pTjQZBS07Q*T{~oD4!`Y^IECA4<9MSmHeV-k%2PZE>n3|4nyi?7y z)-x^-Lo0}#Z<#Cco;<3)g-5A&F+0*PL=5K+%z1!3-_P#cgVQnr2h_U{n@P9`49PDp zx8rx!y`MkEYn;@Qi^r?7q8lccIJ_U!Ch)-{^3>_C5-`>*bw5_&Nt?s0ikUv#wa;^6 z+@BesKZt3*-6*zi$@G{RrYmSbWv@1Qx2 z9ro6KX674&MqcoHq9h6%-KL;tcNzEk4PPzwtl!q_sK!1R9)$6r51k^b`)X4X20puL z?B~y6^e1d5776h^xoS5{owwGN_g%jW^G+E3C^7Gk8{``x(*Mg3D-g}3Gkk|-Plr2w zN7Lm}wocO**Fq3dB)^mEXX@EAL%fPWuYdPG5nFZrYdgrXe>*EuBK>7_8&e56xVwaP zcY3xx)-l0!Dmo*P8TP=Y>}oZ_S0ts;*@(cTu%@Au*K+XH{U`XhE#&9!GN@8bJ(LP4 zdAXc|-y(6sS3_;L5+#s;PRL}%!&If_!W)l{r6wGFx%vB6zikm}5l@VGC7-wM2vFy= z5^s1(h?a8Uba>Ze5jjT9btW@pC=Ns=W|#rv0}uDbMNiPHY#M}L+h0Z@#!JT7skOqj z7IZKEE{uN!!V;!j5w(Pe2gP^NZP*{*d436teTinl= zt>?@C1#bBPAUEs!xWSd22GYMoH}5{i!(S}ONxnU>y%<-7)yJQjX93ENS3lA!6`55{z2O-5DkB;s6$mR*_gcnKu1%)(+ zhGUD@$CUh&zKb;b!j0PsUJ|mjRQ9z_&$ZWy*LghOs*cF3qgn+mMGW$_Q~YAqYPh46 zO(s@wGL0^sx9>+Eyw6a5-qw%xD8`TFmDs@Fzn>p z>$T7R>#)Tj;_ICn?g2ajUnT{(qk?GtP||tAzAVLHRmNJ1ug{)!q(|ulBwb;R;j9Tuk-BPJ=^dH;Ix*CriG`=t> zbUa%7e4>%j$rho1?=HRS3kLP_M`~q9uf4UiuaJ?EF&j5T%5iWsksR2xns;v>-N^3Q za4tbIn>1m8BR#r=3xewLLSp#<0QtZtC&zsDj>(wKy02E6U1&Qa*Sx3or2&r7-=!$9 z9!GB_9InsVx|CWYLN;c?K33*^6JxCHl>q}R+X}={JTy9dM3f*-*S8mgGs*cJNHN5) zkC>?OFZLQgCScGku4Mj_IjIL9w9F0&27 zHrlTof`=F1eXL0pTt=n06X(!>r)PC0-QQY^b+KAm-uDizNr217f`R^CW6b9rVYrCg zYFvGfJn*)_ukqpq?BUG10}SW(Sa15PkWt7uomHEoTNAa@wRwDBH;Ox?aBnEY%g-{c9}ajBR=V`2T4^7tyfuMxLsO1`8%5X z*NLf(@0!!fWaf{NhuAot^E`EJAMXNbd&A{Id5&80HJieA^a6{1bDK(0JC@(kP*ehr zf3fosTo$fva-*^H$LJ8t@;8zG(H+vtrky%%`9Ds5(k@qioS zUl*^JFob$vUlhwD8w2WvMyHJkm^WLVJ0TESg!{hc|DU2aroP{~?xo<7l%tDem& z(ml1G)8)XA?_@pmwH>x}Z!?HZ5CijivPqAZqBxFk7iotra(j!^vcaY^eP8ykgVBxc zFfL>s@+AVsx0oqg6LXDpbOM}ZfYg0&T;?n$mD}nd{BV5hlE6z$wN1=k6w7SAhE>!O zMnuB2sH0NpoaQjj^rF~#21dxHU0ho#nZ=%}G19L;QSdGjY0bJ&B)vWQ{^_{UL{~1X zuVGd36Y`4==`NlC5r=)0%2-onso0cvcZwQ87V&BZ-3~RYYsLh+w=dIuJ97URHeKSp zepq#U^6tQ(GmJ6aFlBWh_olhI`B=u8W?}`o0wqpMtO;{FsiC~Iiw<#@J2x5e94=@X z+B1i6t>S~jTmsBxUpVHLz=7c=V|R^# z`O!6L{{8oUq%7h<;oo8hh~+7C$Kq&&xeaGgZkbuI@H;F0G9 zN=b_%K7k}95g~)$>>b}d|BmkzLR8m-JP1d=OT#56C*O23Qu`?GFCD|vclnuXR*WDv zb*RT#_zD7*P$<_?y3??2Y-w>~cI7d_BeU8r%k?=K#Fm&wbIekQ+sDJ5?U6#AEon>J zT`}4XnJeopG4%0Q)}XLcU=bkS!nRx}-S5=>^14c(8-MGCYOQuSFgD*-&cnlXj}~XR z)I&Qvf0S9xwU(nEER+lv8yPAT8m3`(@4G*B>fj;d|7CS_?JYd}Bb_^BiVctYxgF!X z)5KdMgY6g&oEnVJ#;L8Rueh>{YGW13%)*5rK)!HDN+vkoh^vP?Uyzoi)}S$ zE{yE@{BBb9t2X#R=J(PNIkcm{b$FTq9q;`Vf8Up-K3O~Mw(aG^S}$WMwWJc0GWIZY zPXtvz`L%G2q&=UD!cpX{s(a{9+&{3XFclx5F^xhq^%W`PKYT*bX}{~346|2h?Dn#v zkxm#@99YP(E-O;_gIydwZ|UiJu|H_R^IbH`p=ogdA#e{|^XD zecX-TH{bk2JT}D`)P`eMBiy9ArSyHKDai#-nNKE{tP(~u?)=h{|2Fk63`1+bv};f% zaasFXu#ZSX)F(hl1tm@DET~rrn1$lyNjP?Xr2NnBK33PZ>v~sFl={kp8y=v3D@Nwi zL?Bl8qx%<%2QUAn(pZI_2mukWkqw$}3Wp+x876X_4Th^C0;bpM{^*Q?3HO(8FDR#_ zs}C_V>vhM!3XbW?Y4j=FkJM^kKst8aSW=9E`*GPiXqB2_zLSu1*}L~?|1zwWd>`EIP|aS5@P*yATwF zCdrB)#OjV_F-UtBI@`}Y%bl%RtGs)=+oC=pwPAG&ss=7$c>VK-v|=bZI7C5<`mvH< zi}A?GFm2iK)lr1|l%JtIwOehqBg6GGl;E*Ew!j5fv@Ylj*Vufz$eFz^&&h>Qp$%RQ zWoJuF^G-DXr#y39$Ri#zMlM}_bDFLH`>ZP2pTp0k+m3nT0W(u;F`fTaZo9&uy_Qb! zwowu=jYQmL?=o>X`jcQq#imE;pqS@J=MGx!v1yn~E?b8giOzxz0fcFo0RL52U;{CY z7s3*9)Ww7Y{SbSF|8hIafN3Q95wE_zMHF@?f>uXZrOYwf-ob$|99bKA{MV{_EWaC{ z%2V@F=S{TwzR9HS=D{^W=B5~Y2|qWx&8{VcH&8sYE_<$RV%E?iN=iq?vfTJK175q8 zYEH${mxj>?4lg^KV(wY4#Pu5Q751^x-9f;F7I|~N7bHgz1qK8}Ahe_+&Gk|KEY`X? zNqo171u7j`1(5^UDUlmnTVay?*?mXvPqk~CI|nAcP5eapxNIRqnRa8QozBI{jRLeJHN;DX9HABSFwEE~;`=GvoN?{heztD$etk4P1%PlrXIG z%@AXAq4Yw~%2>WcSwbPW?rqyEQTkrS^YgivB{RKNMX(G(QDS3Z@8dxY5o_i{@~!!F zOsRi4px4K7(fez;3Q02>DNIF^O0bf#E{s%c>WvzNZXHILSHo6oN##jJy=sgGOsQpM zWoP3Q>9rz%{uJbTv$Z8J-7**`5;J#NyIOi01Y(h*Jfyq}mupDw=dHmMeBH@C>8+Y< zX!BJWDHC-X0wVXX>LAY}ZgzFl*)2#^*{)E~$FTN+X)al%XuUw$8c|Z1LK=(=4SHA7 z`;G?+w3>&MAXf?&_R6AR!_Pf`cr?R#pJVsORG?S_PX!IQuWr<*PZ*nSNz?>OOyflE z=z-<&H*8~C7U~EP7w=9PmupMQE!iD(r^zhvzsXej+Da#Jw>h3W63j&T#$t8ZC>E-UzOfT7ySdw`U;3}{^+GYN7nORxn`TeK8t&~qwk>f8hi^j&j zKkk~y_CZEQ8bzm;9wzHy@D3D_CvhkcFj*AuNwV^ZU^eUyy%w|9;bGkB+r053y{UBa z?Tx=M+Yum<{)|C(fmzf;#{;-l*&tjH-&r2gJF?@CIvTHW6g{eBVvDb=Wvnwl`p&a^ z>=dt8xxS)Uk6an66zyra-fmUO4d2wB_`uc- zAI5h(UXeUu?lc;-w}28tmpo8}WEw4T3WN%HDtZ~f@uwb*nAW2%S8$MBy-Ob)$WNHz zvpI))_-VGi-$m*DgI;am&?$jqPa4SCFrnFh^8#2Dt|Ztc1dd?;ug4&8mt9g3sVdD$ zmCTAzRB}7sM9~^{AF`6l$v&LzNT38&3?w2DjF1(ZGvl2Ox@A-lAVoUdYMl49tg<^r zNo#*SBhjYr@9?|QoK-5Gk6tpSCOwN-uO&=Op^pkbxqx@JL+z1H30I%}I1>?EdMG(|Yv5 zgwFU)C~%>`hoX{$2R8-qSPqlF;a;4S8uqNogC|9j4n}Q>0R$=k$oyoD@r^CHX zeO?h(g-4=Zp4s0aHS7=MH)Rv#amm(em-#jy{QU*|L>AvWfP|AuzBbBrV3Xr21-({< zxVQhkoB_F{xVMRZ5ig^ei3U!nN{nh>y%!v9+Z^Mcr{^cs=?@0Q7eY4O&zWnY%F5-3 z`vY3Zg3_hd=VxJdzAW48YBkckG*qn3Nt&ECXPL4OhiA}a64df z*t!qet2|i^P~M_P4eeVzS+b{fM#JhpR{rN5@u7~_wMvQQ<3j?&fL(xBHRjSQ)!&9r)rm$~U@o zU|Y;adpE}d{rtk#Z}UYuT)n%%)Ms&x0#Q(TJ+`I7$_^HZs702;>ohe|1pBl?=#3R= z&E9A9CLQ09EmBe&c2PPl?%*hKT8<*TZDz!y2m|Dk3h-_au zn%_G|&Ge4-bvMG;Zm8_!3$I7NeJ#j_dnZWyY1`ZWs_lxobpP3HV7?+y5={8T&vYQ=d(M{MpIZ4>t zmnTf#6OenT-w{I}`oJw|F4Mcxe7xFW8hD@zTXf7=g&_9Trsceh5%|}F_%-iacq6O% zA{yLwL3f2So7XMacE@(meljS!0QvS>;5Qd0-(EY;|K-+QHSwiNKNBVcI$!0+qqeVF z2zqo6{8UPx3tQBy_2;OOOJgxhMV1u*zJl_|34BA$U zSjTgW9~$--7Yy0-LBVLTj@Of=BOOdOxX1Mx;ULN|4KbMeyCeKhyUrA*kV+C`e#oDW zok@Lr3OEorFKTzKudZ4$>Zwq~W3|^8X(vPAzx>nviCegZ!-?SSjXM_bH-b48M|q^l z-^c=DZQZ1m8s4&rd6_EA zH|!`ES_DkDhc?Wy=Mqe#i8gZG!xpb*H z&RqY8?MJc+01U0}TBHYI41rcArRT*T3LS;K`|E>m3t#=h8=X`jQs##f zf%>RWuxO|<y$`W&Qb0z^>9cT1AWUDw=xwoOH)SU38x zc%OjNcDa14IgazMH07>j;quArwELo0s;m?n!-1WgZ4NzYT9ZxDo13VjVP@{G_IC`x znQ0Nrz%`c;5O7y9e6!JOsP9e*cw~K9xAZf?#X_uH^PiE^3Xim;puz{#Ja@$2wAy4; z(?#C;$q6C^m81vq=`Uxwv(|!fv??kpn*Rn$wC{JE7wvxsj9}9=LaQaA1~Z*1YbxT! z0Fc6*__T6^*~1Dcj&Nhg>_m|Ove3JEH3(GJmzGPsl_2lBKRwE6I8YlJcl`>JkEf@n zt{F)ZnbK-3y6DHi%7Lr&zD?_@V+_t}=1pnA0B=dPDERyAitj$x!WR1yiYjdrk%C=- zazDLfK0D~;VF^k*kwya{>=X8V*OIOibE<-Sag0~0im*ad6?j*hx^!Nkb8PnZ_X+zl zV?-gRHrp1R^LkVMNYg)YuVQ($LV`iPIuqrf*Gv`2tNKjSEypX23CT1>mOCEWyAiKg z+p3h!tW{!}mZA4SR*2pzy$$az{kLnxnzhbC0i^s4bV@nl6J=&S)UZ@`%e_};EuQf~ z#j`+{Y5LQ&L=GBYn`(aZT}gR%U`ys=K?J ztqcGWeWl_(C&OKtbNMU=s1{HHPe#50P?v#BuIY%(syKePXC3kU=GnoG>U5N!GO^@D zn>fK$Ic$0I&&tDiR_5#uwxU_O^Tne;g@=@WEADp{Q*+M(+T@|YkpFi|>e>QSpYT`1`AYK< z8F;mV@&dU1W7c9WV6`cWK4wTN=}aSYgK(ik@RXeX4b7ITgAQT!7WhG2cpm6u&`po; zA^|OQd1c-5o72to=C#MjFgi8i!^1;Aq(~VAuPQ_bqL~fG&vO#vX?I+|b~%W!Cqsty zWoy^}o@f5Q`Dk|__~Nai$m%PnMgRs?y?xnzL{5h&l}o(potM^K@1C*qZ)6JsmB*LS z9GboaZjVZ7{mwMbAoVraVMF^(duu3W_b3MQ?P<}=_|m7OUkW@@QhKfSL*ZFQW$L6z z#zt`{gk|i{rZiP63v+hZY~Tv~o%jCJh`zw+X!7HQH zHWF+{dqn^P`l2JAn{loqk${nrkv53G?#`nit(Hi-`@reuS9#-}AqH_5H~?eg!;W{t z*iY{x6!n6zXTQ?dME~hq|JTn2QGgA*qOFbh`whgPM?dAyJE2%gkhbo>iifJt)YAPs8e4b?wN*xBG*5>$P}l&_rFcB%oBU}t?;nS2Q0WhNoI|id zlkD0T|6U>_db)yl&$znNBBck08Z43TtCiaCB}#xLdX`L7pAi#wdH@SzV2O^ylH;cn z@+tbDC6=gt_xz(J@<2;GH~IAU5_2J}GmcRIpDmFREYUU7>hw+|k4sX}DVEJtKl%OW z|0+AbxA#B9&kMp}iIqd*nio#hgB1egwpV>G`lBVPLrd)b_4n-s44_FnO(h!fN5c^B zK(K+y>Cw{!?&mX5=HH@N;ac_k4@>zU)-7-VMKgRm!DXj=Ejk0~;{L^T`~Ttd|M44c zLRD&ILyq4qD)%K|xhp#Ubsx*w&XPh8N>sAh?N05hy#V-)_cJld_)Nz1x1Rm~d63>Z z5gy7v5QxhhVCSbty<{QvId?%FO#f_7i+lVB*NtGEr-d#)!7ix4hu-6hCmoR5uVYT* zr`XYdnkoGLoJTRZqm4Fal>+s<9e#`znLDwBPkB@n$iQZWyD;2tl#n5KX-t1IFpV9<@L41Zd z@jid@TIViYJ6DE-pZHPu{BOtI3#oX?>P^%i5UH@vFF*`J$1#<0=t5Ib10eC;L*5%_ z!zTWHwn6%kU`FRmJ_G0IaS0+?d)Ay(^Zv;(jzX6T?4lC5PgQZ$6NrS<7wtb1Q;MI0 z;8_embZJj_e;SGdolCR-z$Jon|3L#bn}M|B)CQ&!fd?b>>FjU*)~2)BK>IIXyLev_ zcPv3MwIOs4s$-l9#AmV%e}A|e0;w0*dh$Rw1+BRQ9dHz2iy3(FCt|Pg5G=9J^vaF* zkevSn;c5sAe#6<;_O~8+Ohe(wVZ-P-=smw+1L;zCZ^HWzw%~uZ9s*QgyJ*h)OPs!m zoF>?=mRPI5uRJ{C+X(=(FzIyqT|xg>E|G#1ifw&jTj(HxSdfKuX%s$w<&Vzr9dw5I z5u@1Tpv@=?*!hJB{&Gr@7i_3Zy$1bh!THQ4~L^Al-SVOZZ!NAlONDZT6We z%l}@)j|V`o*a#a=t-M?~crAqzQl8VhOU}AZ9swXqWS`q-;gG2*eheN=ze{hS8;07k_M(4c z{zQEsU-K({LmYgufFlG*BC`v(J5Bums~i3Ys^n1&20_u%FXN#;K!QX8-VmI_S!D|P zi(QeQ9^fKxM@R8e6O}22z)DgYrTbJ6Kj3YLgyh2s`y8+7mT(FF?&1ZO8M!x^fW`9* zX@lojSIouecI@1ptRjE32S|$HLJ|=Rd;m~l5f5VK0hPkPixB^GkN^Ih1>^Y}CRhs< zu<$gMo`x%h2LoW53&&eI&}60qJ>~nd9tju5ny^FpmiKG#JXRLSduq{SapekU2Ih)s zxl#Q4amJhuI>q7-)=R@;{KvUtPP&tG@-~T}Tu=^$flH57{>W0@EGK|0OtM}Z{B`O~ zt5S1=B)_<|^%k#Y{9%sX z%F}n%DU*n1)(hit*bqH-c1W|Z$lp6S7>tLydcRWmq~Mg)O4vT?B>|+$T+4s^fHYOG zEeKm<`zL>-5OY8wjz@mdDdma+E|m7z3TTJ|BPg2nh}OPviw; zy?dUkI_Jun+Us(KA}#Fc?lXb+Sa=iX|KzI$ejbC6;Q+;3ixpDB3ub%-gF%aG8k<%C znzeCsgBabgqSOfgN~x4%RYxMXSPLov;xQPCAlLJv0C}a)eQMFq=!1WryS=wN;nuT7 zd|Tka90QQNay=uZX0(BdkMh`$`*YNo?dL@+EY_3Biikip94cZGxy=Pv?{9q2+F7;) zob==Ux#Ghb=;{e8<{-^Nx~ zOkR_ln>Q!&CoTj(ls3C^wGNiyx6A1=yoYI1`4|vjYa2bLtjNe{=MWD0QUh8 zAlUEV;zqo~-fRtjqI1LV2xHtR)ttzf2PrUW0zfNX9y%jedVqZ#xRM%)BMN-NZu~2n zKREMlUntrrl*dKwtB1FA14c2gBjY)0w-XZP&#OMk--P-LoaZXh4Opa-t+oY!zu6N^PHt33JPJM zT}#YnR!CZE>~!y0BE(f;)w0)Am~R|`sP8JIA1cVvA-M;madT=cWLzbCFE@R6~7sOTH3l*j;wt8 zs`H5~B?Vv__<$MbI@h15e0q6gS!r@&oB{9(qyw^FNk%>gj7^_#O&sL|8l8&k0OE@~ zmctynG#N%#Z|IewN`DlT#~wq ziLIWVH08BWP4fik`-BUts zZ)}8s`wo49jdjdE`I5v{E)TGtDH~G6E@oo~t9k$)RhdTwj8zDol9VhZ*~oXW*@8R} zINPA3;k|=`h2f7*5B;WwO55J~0?_e%o8_d0wXoQCIeKmX4wzZ?J|Sg1#mZ+#oA?{x zo=)iYFLOF}$P3FX`VVM!9RZx_#?TL1FfEFPH~rmnNg~!DBY4(46a4K$s5F1*{QMi< z{=ul*BnnNJ&mFhk57Zjvxbwj)F34F`mEs+n|d*bgl;2qZmBP$PQ3yz;>x9{`;_??@aDbfd{Nw3oa1`z}r;iE-FQ(+89m= z*NFq474BRX!1KRl_h827wr#D&Dm<-iVvEJ>=|`ahKX9|)%$)H7+}s5)d2yH3%UsR<`y%{Jdv zkFT_i1Sr_5fhf!ufaQllqUNXliG3n9{Afg3}G%zu(< zQ$tpAdRwxzFBF7AzbNsk3UM1-_yHCl@s0}`iH4q{A0H|di|$UF1}-&Us+IXZR`E_9 zmdxzS=v4E>8_NJT`LV03%W`X;X=rE8b|1ZKdO8K8rcd;ZMW$oPT&h^g#eTg)BS6-v zFai?@tVwOYc0N0*pWyeYwcTq9oSEi75w(D{>4=xt^@sgVmkwW_OQZ0NxO6LByN;j= zzxgp-9~C{vA-T)T!$bXqLZG^)NQ~`!v11?17C%VXjadpH{ERy6u0fZpHD40G*D@rV z|LUCVsyV4aM_l;V@7m|Z`pXZf-F35`5qnJk-;@(h0o?m0p*Ax>!76PQ9@YEe_o2$| zCR`zE%9zr1IQ~51|6%Prqng^fcCnxyQ1KioN>>!5i}a3iD1vk%9R#Fz>0R_7N((5x z1qB2`lP)Dhk)pKFdyyJ?=nxX%uFZMhZ;bovgFEg&874bxuQ}H&&wS=wY#d4pns+0f zJ&6Lu_o39vmB9;9y#N)*fsH-_cvr$zyxFi$HE!^pR(0ljhttBOYzX{kLh-b_iC|1~sl0lw*Luk1 zj8~r?DHb!lyTUBFZ|!X}g3L1Zz>WJq2$*^fdiek{-IpFAvjJg7#{Z8qIcNTbFMn0P z&^)V%-ozgE&;Y=>$y@5mnI}08yWJcRop97+mPVn{RxIv6rRz__(3_xImF(?7D@ksu;P zclONTN_lZb3oqXzpO!&W0PS{-0jJ}(PN88mMClwbwkaHNrj{vDt*)sFBdeC!u_oPg zQp2?MvxDg??{}+r|8l2r&vYYsO!``iux0)$>eg%TKv+aBn799zH=*MEh4Vju2l=QpFWP zCv+dlBk8CT-Ebj_YzD)N@^v3r%8{fKc>WKdnuBRBww?0K-oQ`aE#l4lxAb&6ZzHn- zl{utFo*Ri4pUI@{%TvmDv%Qk$&@@mA+8Qd8%sIFOUJNoD70&}Vd{aE&Rf?2<(`r(7 zI8xrJb|;iEjPqqC+s!K`CMFBr3k<(Lh*vTmTDN6GhNKkHeI~R1`@`<(gTj41p5Ql1 zh=A8^b!2Q2gc+7!349qtP(nO@aA7e$u5KPJ54hS9EgBYEUuKh}O{Dm*J%^=;nbj^e zV6t1v?FP0C`>gT%obn{OpBRs23PCO*=Emi_@msVzDdzjwaSz${rpr1N=IoRAKhDIpkN~YFRWs<^MUiFfLU+zi>Vpu{j{gk1wu|r!5g#r zh4zDAA5(Mbe3NAfwL<$1Z`Ps8X3-u$ZPiGAm)juLYa2ZA>AZhUH zi!GzMpl^pC-W$wY$l5P;Sc==Q4&JCn3<3_^v%Sussd&j6z=^93E?EF9b`wGEJ~pb` zd3$>qK7L?^mZgXiMJLDui1kMY}I;FXo(w0wW>{;2CDsGN1t{_P_$vZ0sn7Y?s-U|;mC$Eo|3;O%pWh=WAJw6@YLHk%Q<1#%Zgi6$tnZ#k zPE;9Ry{ssanBUrl(k=Bs4Fzs>ZFE<_l>JwW7{o0A)z{sGG>DcCmTQlYOMRk5lKUSI zxX-w#XXVeY;BjNugMWt^G=&-aO?tDhJG%e|J2;Iloe#fdL1=5sFSAqPb;sKu^$L7h z^V&#k<%`SAV@tz<#3~~|%d)4bDDJ<(=N9!Gvufu)3(|%XU!2r>%X_(3U`Ai9_vXCo z(;q@FwTm1ba$%dKn=xd|^der0U__4j(@~9}c#z*MJt$3zB4gK6ctIMKzYUvTY>B=9 zE0!}GF9Ce2;V$UEbsHiZxm8;5N^E-x^<21ce5pP-Y|7z$g@h#kNUBy}%A2c9S+WK} zL1&=0c1Z;z-+7P$`E4c42y}pZ@`hlXC9JIAc3V*`R)}!_ynWGv+bTf+;RDX_&#&zC z!u`wt|Hgs9Yvd})xXy7$r5;(~c+v}y{gN*O({Eq;RHo@+RD<&Hq!9`o^S^TbPy6DU zn#P9J9ohlMhjM@4g~_1O_xeY7R~n^4WYf;2?6vbf$5izj+O=;d`)-aiygu5KB3gg4 z(+{Y!n0|S%lQ@qrHg9fP@f^RN>`?7eW;2GoUnBsadc6JD?>^U2bzZlFjS9am4%hB$ zh)GGFRa{6#AI^>Fg0F|d(|&Kh%T9Y2!sK1nrXTu2Gd82V-%zq*!ec4Hf2YJWV=83| zTZ8kz=4nxv1&isfQWamhW`kkv*Q7$$tX2tMm2y7vQ?dZhWDVmfajt+Hv0l1G#T50* zLdV$Oh~8!Jdsm4?SiR|)%ukVOXJNeH4#w@ztAJv5=Ir@P*O+Ba^p9`he_oSG;_HAN z#<2gv3<%vk@)lHq@{#mZ=PvlsAfCg*rS|ux_om@TsveS@Txdi4%J!$;_wO3rw`@!B zI(iMCimrnjNR%Qte78VCE^+T5wmH*|$e$ zLh;$Niv0aGO_C0URY~$;Twa?5Twp_|>5tnm>7=B%M`GOi0&vk}fp?U>k9QSsWhVA@ z`)GRI3wF>XO}8;>wJ&Xtg9X|$uqZ@?n}8{9p(bpSXzxwSF1HTRQagpl&W}Gh@~Z_J zg;VO^EmUo`^{~o^-_RIrWv^`$IC~zc4z9Z;;~N9`-6`~gBG`O|okL&W z(=A0%4=4vKF0K4Jup2TFz$PI13@kpLaw##_!QB-X&Hgn(pF_YtZ>hVhoo*%PE&qY! zqrL-3R6stPkbDj~NlvA1;0*w`8(C~%HF>-#AAr7bpbZG)_djh2=e`m*oXFCn8g1l0 z-A4D)gN;rq)p-ggYMnVNs0(&%Bbn``wzsV3361Tsysk0d=LRp;^J$LucxUd%g1@x> zc=~R$C_Nus`i&hWtOzR!2d$X&^xN3Z&4znqbK-PWdF7 zvscD~{_~NOJ?~o?P->O1B)j8H`lbzzp2}Ta(jL+%4jGrXr+d`pYe3J>{A7H1EJYxT zBL*Oz+K=L=QuJ#H)ZlGwG+d8g?OK8o_$&8(-m_{FP11W;|2&lp63&24=O-CrIet4} z(`M0NZsZ4HdSORH;@ULaf>p?AT!L26UUyE{;v#&@pNr9Fri&;fzVg+`zNG67Ue~IL z+;4qW$HfsxzIlrsOW=aZ?=4B|A-5 z(>X~`l{rE zz_rCALvEgBe-Ej&xQ@4oz{s)zUeuN?QNYVNxKh{pJE>Wzig2Wn_=@(WRc(=6T1I+) z5BpIU?3harcV#0EeWWo-h6o@|S`U}m1Y_w_UIayF$TxP>tlsUvf&)Iwj> z1`h56pC0Tm@+x!I{Si^DQ4~yK-#e7LcCDUVuJVK0+eR7#x6nCE+hg<6wXV90^nW1& z*JuBZkLD1U9K;sp4{IH~>&RVV3pm&w@LEj7PGO1zn>JdxuZO8T$C>!AM2O7oU2k>H z>ePojvc-#9p6tMZ_4gTorTO6CeULKCa6?v@C{M<$GQ8Hz6d1bVF)Y{wBDC)f#*)>I zO>_?TzpvX!0_R-tq6b%vBx8=C7k$tHTF<=}7p$^s=I@D@N=E`vy9Gk{8zQ zS3jD~nBu1su)b#CR4$i~ULEd2!djQnPrGtVe@xjRuK#(@U1IUAEII58N78VS$k*?w|NoL()2iBOke>lq*1I6UO>U*$u3YCkiDk- zp~zYA^^sw~FVaS>*h5Mgq=0GcL^|@UVl#c9X6^p)l0|=foibn_vYv53g3~^B%sB(OXc%t zf0`dsIS~ngR0FJ3GD^H3>Xn2ie4vWUMDdoUa+4euL8p==Q1~a#CiWoI-O+4r5 z0M?YW|8kN()tO8ygzqiY)&7jOP^?W4tIv+e-8du5g$K=HuY)EiLN|G9?|=|?qASC9 zV9;&)N?0~>7VC;Z-(X99VOv*$+8t&Ai2~X$pMUmjvO~GiWhSXl&fjMM!KNDomS$V? z6Q9gOcA^heyZ={n@t+VV-SQ6*&g37I=tD1;^AQ}d*a?v{neXW8cJ}F9wp`feu2&43 zmFoH|WKFe|Vp`$u<953uGv5w2T`a`Fhr5!c2A&GN6tL}`pD!CR4vtcE2@d0~u>Sa> zKSd>pl0s$6wJm`!8ucC zKZA4MJ}R8Y3eH*(EtqktjlXhTCh6-WT2<_>vEM?hUwszMb_WMDH+8a8xqtXg@e1c! zi!kc-wR5`-T%~RAG0ECiGe4u(zlSh2hcNlmPh7nb1>;`07RFm=onP9Y`?^wD9Bv(JYJp|`-2^COa8 zahnA6@$PTqm=5;+Q(@k;e{Et0_^9=~KI*zg1U4;~V$v|&9*4wDjMv&^U9f4$&Wc$d z>?zMya|A(r9FM74pEGc321!hYrsKC`3{^ZV2^Lu%J;)~V3!%klOHBkgh4-BJ9Vqr`WhvVpd#uaOs4+tx4df%B1K0 zI|e?y%!Xf%$>^Ku7b3rTmf&rR%91Iu-E;`+-J#s)4ZwtAN}^Mb2|SaK}jR z9s$LZf(w)rzE_?Qhf~7)vStLL@lUso_Lpu%;WML*HdH1?8cT6QF^B&8hjmRSG)Xz{ z&I(GsEbA@dJiwXc_5bZ}cYGSeSk{{IczZ)V3+^rRWf(sp$u(P`tRJ+kNxglLanP%8 z5fnlxpkx|xy(WzogI+TWnDn+n{ApKIE-#g)%XaXZ0O((qM{9vI=e6PtU%ZfB7BZ3I22N<#a7M{$XMtdK#;?1D z_AA?D)7Z2?KF#~A!NDB1>~DJyVm^HG`?&z_x^16}s+GUJi1+4@HI#yVX3kTQEmf@R$I=rvK-CR-!p4T!u#8g}%qW%v=m+>WU- zV=K#B3A?Qbj&QAO*qQ5*VN^Q0b@iJIzjt3>Xk2G=<37*dqNe0qho4JsXs;YiLnI}U zXp$*7#0B?(ggM#-{e6F_DG}u}Gu`5*S)KxnZBCnKG4Y^c+%`<)!KPjJ^LpmNyYWUh zD<`}?C*SX^3^$=X$EXJ;yp%^@EUkEdEA&G9Y%ezQh~sXAF#5@4;!JGO#wC&?|D6Ru z+_1B+#s5RlthH22OZ)2Ytesne>>q>Q3#qG`XU^WOb9^F#(o?Fquotg{l+?7KvpU}h>cB6ks_-dah0IzQ2l-M!;1`GoGO~dX9Lw@IyjGYcLCLn+a`wbB+lz= zdach~hx49~Rx0XYJ6Xsh;{c^;1>#Gn;~+sF_#Ie)II#U?_yvUa;zM}q2K=4z1U~6j zu8hso=U*YJk4f3ZACau2iNm#?W`UOQE4d+!0}7u$d2IOjeX?IUd-R^SP;5q#Et)g#@*k5ZlrOZ^2K_^edQ z?u9a6?1M8e8>tNhgodA?60Fj^KbfEpyLOA4$LM0|@R$-YMm1a`2h+$Qyf{8Enmh9UJOj)Oom z9X;>Hd}JFQU(k9nDwHir(2m;1k?hWu{mEu85ptOy?evjXZ6n8{BWIC(& ze0Bw%-tVUHxSv6$cdnrQ;Qi8SzPu!UC)1Qe#n=Lmad*rE-_cKUn}e(dO90ipAx&J9 zeX2K~^#{k$6BUwNzu?rZ(K4%r1CE~VU7i9-7&Au&DRqK$f7>hPT(S1bb9G@fCO%o} zW4T^ZuneUOS%CvF6tR@p&*|M8t-N%u0=8f#@$Nd?(a38zDVTIMAu^d|jJJGiEPy3% zIkw&f@^>O}hq~e;%~u(QXQ$1u1(oCPC?By`Y@Eqd=D{EzjIE=QPi$0?TrnJXxJ!HA zukVN-y;CTec)Tti-BIZv?lg%K9`gF3IGNb{SqBWt!zkzJWm#plsH;istG9u8N^j79 zVvmEsoh{VLRoXCYSNJD{j)(6%xJm5nX;~CH2TMTnGjc3>1xGzux}MeA+_)I z-MLgnD3nnzSTN#*0j&GO^sNcU{)XKGfG1tAY)=BPqWbPJYK7GTvn4mw689L8=A@Y$ zN7jMSTwZPl)G{0nDBfBTa4BFAQN6fDJs>^PwIx?_dSRIfPc!1Pl+PfkwnTlUZmx4@}|RU>1C(4z^M5pH2)gG&dL%?q1^hp){-Qa$06pOhR51a;u! zV4vr+r5OXKa=%t$&J_TQD|m*gCS^UDQ+#fxdztkBwO|TaGHABMnD!#`x9>UG0cpBwaueMZp9R` zrTWhH4Uj)9;ufAL6A@IEsPfGuQ*88*FVZsqu|2?fl^nsIQrgOx%2M???kpcR)!*kM z;!rUtQ5%LF6!VzB7H{(6Vd6DCvZT}zLcJnYR;Yt5m}@iUZ(`{6%c4=4g*409Z}ry$ zLK-3^R29>MiBw<;yp6u?k5Cmaw@Y;H`l*pIwRgQbF4wwD4J$dFer~6|h?9xq@vS7s zA>+c*og{pU%XAafBNix#m-ZOEb+IX}2A2fa!j|=5S{@0h%{6yOm0D%G$2wt+oLxra z{f|Nm{77uz9R&GxJ$909-HD5zGK5N&46zQ8?k1AgXjXnU{QPrA7^#;5qKyeK$C+PMOVfN#oKRDtK(s ztC&a=*Rd-u2N9K&*$o;B^t3e|!|Y7)xR|08ZCV*xfW0h7AEaq97YuR?*HF@nZ_H1d zD_R=Z#~b&GlT#IH)62vBbh(P&>fE2oX&luN_G|2>sYrP`E?3uM+R<5cBIEh3Q8%)>^$#GXWD4hY>d~&XZiW= zqIRd#W#MfUYAPfPP03CXd4)Hb43#Hi*_eFqp$E#`0*LF`gO(xd6OEMJUVA~lw^!uw zaU6D8GJ3^#u~vxXx09c1ix?`-51HM$&$iAtC4+vYU|V-X*K zfBrzu9Kk3lR`Iic2h`9gd6eyx?3C@eDi}P*xi17r=iIj+tA>qIG?$4VRP$)KX$RM%Hko6E>CI?Is!Lj2aLV-03M(jybi^4Y#u9V zh`gLom4FgM>^n9@q*m$Tm+G7^8W(?6|)vA*2eD#bLjkEwCGwqg+h`A_S^aF&BT z=e<522@8Hb#6)0pRs`3aumw;48+sb|d-;$?Rg78Yi7c2jQ^)i5A3!i)_`a`Pw0c1LMw4E^*1 zoXcT4@4|RRgqh+!G_%sR`Emw1$X<^ElrMPkR->r+>K7yWz_z_mvBv2I*B79=j14cv zgoQA%|8XJapERkx-x-5PzkhU>JsR;upr&3PH0gX}XXHJ20()DB;Wz{QpM-q)o~Y)x zSx~H=)q?P{K`5G=2B9~DXZ^4B4bGz3-Kwc>a`Q&2INtD9oePU4yJ;@J52raZW@uoY zRm2v%sko8VoZoFT6jbNT5dMd9ZmTb30=~Z@Z)5Tt_t28!SYJ1lus)cI)2`4vV>b>*g-^rm4ztrc9$48TKN;n@P(8{Tu}I`0MmeoUuh zBvq%cTCE2ojp6}6`Sl>OhI~o+d$lspG6QE(*&`6--D6r5oBR3WQ%{HZ99GK;$e5M7 zlVfx3#p{nh-ZcLHE<1$P5P^>9=Q?pv^31E(7;_9XNOE7<^ zL&cCKr}iCN5WY3ax^#HcG#pS!rNAjft&bix!ih4Et(49xG6infxD6fsCL-H~hVJ>e z;q-5SlnZwZn+1?LNjT$D`7ja=8&!>}$iKUHi`k}tD}Yl-5%0-c;`oY%B+n{Js!5A8 z`V-#~qqVLt&-Z8ONNjJF;>)#qswRgy&3^@Q@jZNd7gnG&86K(+$QQYx{bEZ_nxChX zcePYQxrIhDKPjkm6&qWn7!B4;%}`n@f2?>{z5#PqlC^AmXvuOR~30?u*ke~TmxYAbMD(0v9>w%L+$o;}hGFJsg zS3dw6V5xXmRy@gWF?bK&ibmeIIcXY34kYAm8joUuY^ZV1}CP3{3k#a$k;!1@*y05oZ)^bqRvhr8a^*Zw--1A?J3df`3l zy^F$UP)Kj351LmRZLDXC)5T2FU~ZV{VqbUn zL<9SnZaNV<>HfWUQ&!+A3jUTO8h9-B&3OTvUtk9+a_ZE_k**sSMl z5&AInVu|{kKZOLPN&G*O%JHQwEu5CISRVyIWKp76g39hE$Q9C`f--Dhi^I0&agscC zoFTBBRh+&8>`IE)OjmO=Q^K2Z;--6e4esk*^aD}{P3z1-h;jrfi{_y}9w4-6WvW3$ z-$i&8wrPi1?qjh`b?<-hG0C-KnQE!9^r;k^JHVe3MYhZMZ^LXJ7nuHdQ{11F*Gvm4 ze{-$adopz~coOrwHlV_Gi!k8M+Sx+z(mN)HjM63w;5yuRWxT$=Qzce8s`#T)n(7^J#d z;UI1C0=%1z&D?G+=qU{`pE(e+zz{AAHe&F8UWA&b9AIYrYQyC*YoCTO=_<% z#;1iU^Dd^|EYzM$ICH|F$TkB6MGm7d+~1JY`&6Nz$l&(NE$JU!84AtRBg@x72|*z; z3E5a?HzCBN(~Doipg(~~nh&t9h+Bd>#iis|q07Y5y*hit0xzyZA%`6n7bfs+%lmiIb?$5&mTuv_=d(b@Qh7x=A;(+?m@}$`tTB&AO-B z-829aKgUY}x4|!i7L^^*b<+UmtoK_PQP~&PJ)CX5=v1BN=4X$ZrJl`}!`~nA&=Xl} zc<=l>W~7h*E$*OVI{Q>>65pc*!qQne8HhC*V`ImLgRRCHcqv+UhP zT#a4mBfe}moZcK$hg01UtIHxg8`Y|y^Y7i_X&&DhSV;Hx8b`FvtF^~uIrJ`V>(Lyq z{#&sUlKP@9ktU^lj>%!9!$3sPx|1Rp)8V_q7(y>nSFa|Pz)=?S)MV&ijAQ+KPJQqY zlRu-^y^a-sQdtOf=%`3HR;izd#u(S%_wi zB{o0w$+}U`_s1}g$C!Okc-mMB+Z_Y-27njbYBZ$}T-GR_-Wi#j?!^P_uJnGtsGhoo zA5~&ssjUXh4kJ@1hwJyhFQ`f2-BOZZ8SD=1TW&LxAq`hY9JG8ya1{HKA^Cs7a9&F* zp0`(Ux+y-TDr4RR5JO;gY6(6RWDVu(VkZzGSX(oT-uX*o%J-pX<(vtK62jSUi z}#&VN5J9K2|#GH3tS70cuT zFWXND2n99tJy5~p-TRICJ0$J=`tqkh(2Baf`gJL7>ORMHnPL096*F*iS+H-Gzt7gB z6y859)u|3IB(^eMCBmh>`xq9WWT5Y5jAFj6vAbk7Wlc-l#GemV4pj4;_qVMTC%(_8we)9 z1k&piv`kN)n0_f^1H)xb7Bp6Wqr6 zuZlgJm~wuPC_){|)BBIU!>7EtLf4c*vHgx!g_b7re*$Q%mRvl)&-Pnw)ZBoHLQ~+l zFR$i}+b~6ThYw`Tu|>DFYe6@pPZu_AgavjVh?PG2(O-@Iwce#(dxySe74Kyf$e1(N zG!~9n#DU$hxw2~&ROG63*5uc6%!flNx_q=FW4hP$gcDW&<`1}Z(?Yg8Z;J9j-C+}Y zI>%g1aqN*@Z;mN-%&>IDm`|(X_q5(OfM`P@(JQ=KOBl~b_TgMC=TPI-)8|y#z23Kl zagR;M0Ir97zkcbp!M*uuwW-erj&NWHYDBWuM7cpQFbNW`KXIs|hl##f56P;zi}$96 z0>k7p$yIOlU zNytH8f)ciE^mq~p;%pJXn8oTk^u=xxvOB1BOz4EI&{bwN>(zNvOv+rw^!s;C6zIH^ zDWJM{;F&DAes{^CC%bh*t90!!J5WThr~U5n17NoS!sIP~Ci5)@z4u^e*y`v(!tS`c zo!fHf$F|~kR}S}=iUwbdFl>_DvoW@jOQp0N+I=a@`c)#>_;7C;?d_hao%kH!nE2Yq zq*2|OMmvMzb%*=OegTV_Q6QR3HJQ_OiRu@5{<9Ml)tt?t{1l=pfnqr=z_?QpoE{K5 zP5N+W9QRETrmtl1V4<_lpBP0dsKl)aOT4&08msedVR)s?Ypx2b%*%Z~elFE2?S`a} z8Jwq9EC;L!?ZH&Va+JnNd8t*elY<{JCu66w!^FJt<9 z3H8cT#rYgvy%pM3bDuUb?=0esInY~gGvIKja4e;odf^IfgM`EIa}Q~GmxIPX3>@oh z+?K?o?!-sxz;f=4J?q5~d zB+hOpLH`L(+t@#tQ+M5JCdN3rn5>hh@ z4_i0#-YoE(TFZ!3spKr9?9_iienW6SFhl!H?qK(XdA#AEZzxA6Rna;a3VITY7L){t z%Gz3<9o5I2T>0Z-V$J!e+a2OZpT6P_FS@qfjW@jQ_;s$uPvUMWId2u$YBizG&lc(E z1_F+`X}8s>*1~(*1HUNZ-1<$NQbnK;)@HW@-}MWqh-8ne^2kk;YQ&WRlcFv4@xa62 z_^F1%u}v4eD%qD5zj_y!A1akiFL8C8DQU*QdTfHoS)qs@)4@TD(hFd>XoASy_#62dxm-9%wLU;{sg%YmW&)RtV1k;znyxqwEKwp+{oY)IZbkh+t~N^tM{c^lD;D-gKQ5 zh3YkC_EZs2DS@h;VLZOL*pR$XY~F2c%~~A*Gib`phvpSVfHX7Dc}cVcsgAaw%4Z#D z(V_Q&V9bPRwNUNJ>`!q>VrHn0QK^#VLQM>m6|?^=RlpvQO;(1c#Yegi+l18DNPu*^ zJ|+~TU=5%k{TDBasAQ^&m)3Ni|46_^QYtAsK)?+f?5X(l@+KLqyxYr+o3t!aeD3F< z^^a|~1Wl@mSjrpA?oFaqyXPtJN9RDCLN{RSu9tZ&9y9=-NCm2yfeO%g42d7}9iPxZ z1Ul;8ZBX53vM+AG$_E%pXDvZ(aH?!Iy8#5S;;^q!(LDn$d8=-3Bac{}?DX~X6YDuB z9k(m2xm8C*ntc3AnT*JVhu^&&4EGo|t$9=qFYQ=hppY7^bcO@X(0psrYQJKBh}Ksl zgGp@sMqNLzvO#K*3emdA3k^S9wC%2f9OkfH!Jijb(N1Mf1457yHgxXFT8H@mTbG%s z2HZ^$7pI~Xn0U3HaTJX59}zbjS?L^Z)L8a8&{{l<3DrmPxQ|^CrW(~s&mGiUV1CET@?WEhZ_w7n((;fAJOik-gXsLq!rZA91rqB*KN7lLqH zQrKT-wF-CWH5)s?kuMfoe>bnF!q)!F_v+%+VLO!)vL|H2fX2YEZh;Q4KpJFq_I(QD z`itPcK+k?zM&8|1kxGh%zWU8 z%UUzyyAwYbS9CchG7BZSnX)S_x)0K=NoO zg4wv9$T@ews8JaHV5U5gJsW2vHWGq5#^tmv#JI@IB5v^A&U;#+`LrP4)5Z2M@sLN! zv~dfiyrjhKkI(^>2$8Md=gi(U(zIe#ACs`FsKO#4?yeW{T{cwt^`^>kn}}o(Zzxgb zrGf|z0(SjeXiuALWF6=0ixlrb=M8U~|6%YRU*3zS_S=hnVc@=pMpbb~olCY^Xga}@ z#a5SksX$C$UD7jtTtKme+9qc4OFkgPdZiT@0zxDLfQbAy-BX_HS})=xW_2>JJwb+d zXFi^`7RS}{fs|Ga-`HbgNyg;Ax$-h6ehh7q7Z=S@@%uY_)c`rTKm#V0Xrej%-=1&6;Pg*Zm%{{ z?jSBZVQM=dT8#H+^1YoG=>$V#5SLjG4840y zl3f8U2S{QX^*O~@wASpZvwwUjr<3+-VIiwb`sYhq^WO3hSt)q7qvx~ARuy*V-5bX= zpZy^S_d5jnX2dL;+evwmFJ%NFgEB|=-1``P5kE#>;DGQb>~`_&c@AD@C&a~1yQDN& zVW@q~JU-Pk98eVQ%_Zg85D!Oid|p4JK!smts-p%M#%JC{IagS+5$du|iYi5F%j&~tm1 z&*}r~b;Qi&lNi$D&*U^g)M_tRuH!1UEgbyj%8;_tBk+?@C?rQ?LaipbX=pr|b2}E0 z5u2gJdCX&oUDM=*g#lpG1z|v#pI1}d|Lr^Z3+%7Ph($5j--O#ifYEU`&G)cz?~w2i z+B^tC0EM~RVr5QD3}R*Qz`|;!HbI>p_Uib@C(3w^Sw><|{Q)~xECik89MEN}SZ>LQ zx^&`gfsnc&F{r?atr#VT*8Qyw>TkHYn0CTQ<-b2A1A|!6!JmAOVfCP2P{YNApEf77 zF#pBkkp)07mP_pt!`5-a6D`eRU@-|d z!RztMj`5$cnDXyl0!<|YYeA}~{IRPmO-`{=(b|FkptUz|!Upc1VjBQW94qG25khU* zsO=qbm+kTa>~zxT5GdW4Cl^$-nM{IEu;IFzWGdVp+7EtcKi*VZL1EH~BCCH@R-Fp0 z9rjV=`l<$KpTxO#gjQkGI8E?h^Ivs;RG>HFL^A)uJUfDv1*Q@@%JRvk?59+rC$XUW zOWOs8_!WBv+@R#6*)~utd-w?C+@Tq8@mq(71RPOUWd#VgH?`F9Y&q01;ejivJh{n% z7NnjG+T?8KR{=}C41n~_rXlo{5MmjAlb;o06zqWryiYx%q!rL?mQ4SCDYFeuIFga@ zjOw(ng95M9n+yx%?;n1ROQ43`g0>#{qAHYz3o+pzG|HlOZocyH4MTIV0 zZ5zK!z>SW?F2IW5RZp?Ef27REV zCVhQ()H6`Z81Uq$-^x<(glk>G_NHYk0B%3|fPllW077TkZ)3sA1w{3YpgyE8A@Ci` z!C6FEvr^(JVAK8lmFvQ{wMiCGc6Nlrr4BReHydBGuets{B*>H9igh|bAF^JcV5HA0 zs8$NFH9M0DW{o!25!@mhsg3R+42Ew?cqy7nLWSyu$y!9=NO@03SDk+ipiEnR^PFe| zEL!7B^0ABqY%=MNP*JJff4Bd{FMVt@Y+r*7yE4{z^QMf_-=H5E##QojFZ3~0u|H^P z+mblQ|AXUJJLqe3={!TA;$VZh8R5-~YWMYTebv&C%evBU!Yj5?Cfi$Nf+kvAXV9UP z(Kp4p&(?1DkF2k}JQK{^^=gy%8fX3&!(LG2MYy&)cs3~WqTj={vO%Lp z*Jjx&pYr3q`H?ddjerc#@Z-%DI3SBRF6I?cx6h^3w7CPuF1UCw%s4xhwiGj-exEn^ zpR~aBtUXZiovNG&2)oK4)5kcspFRCLNckWyo2NYyWss|vkp`6~pZ2k^DD)v5eqFSj6iYF=TLHXYqQs}QEOd~`kzJr$wvIwveKc?$;TxR zku3sKV8f&Wqt<+-(*%!?+ftI+!5%QFp!C;%98u&b0v~vrsu}pT(|GfoKft*WG>zxb zoesasjKcSi1l!8a#y@~qwX^Yt2|6N5-_y@gNO2+h3zi=9nKWO;fAs|w$oUYa4Hp}$ zg{-(x77FP*(%Sm&)vS<8blST5-To0&h2LN^md-EMJ~f zsm25C*?TZ?r4>LN4Fh#2(^qyqNm}JOU`U7L8*nl9ckhe9NYy|_$`gkYJ=NO;B|&or zWIeyIo{!Qmvu4Dmc>C~3*!Jd#EDi?FPH&`AnkkunHlvG&X(N(Xg4nFf4likQw}p$NlclZ)z?v<4Sr z2aMsqt1H(*0opg%mHrNJ4^SvwaIjNxO7{TOF|UlZCtZ`VjUf%?;r@d%0)$srMTt4@ zLWO|?88GD&CbBW-C>p2LBod+2A}1NrbJq!! z;OQ1U3<0;Yp2c9%Lc`2?hGm<3EpjG)iD#v08YcpejO6PA4)(j2%2vBRyDt&c-+TE-?Bw{Zvo zCRMKkP>E{P(RkV^5+-28R3HufSfeBLatkzZHz*g?iVanIZxyqF*4(b*@#>`ph*O1? z-rnMO!T9fDr!C_2#3BKP=|_Z`J_QHHqQDa4jr<-8fNl@zvZIF~b7wLrxs<3vhAZiq zE-9HJC|hodzIZ;FG}oRa7oTt2ITgm8G%?+SkqU#FhnccFCWn0D+WTSlvTrT}Uxt#p zaCwi17Q?5&RXu;ZcvDsU?^f#RA96O1HYDs3@y52lL^jrBwJJLg2@`xSN3SUwTY1rc zf&1jS>63j|tISr)`@=?tpca zJm^=dvSALjMfrigO}uUhNl-OA5Vi2`n8E3i@tiA=yK)4r(I(pe9n+RxF@+ z=F^2MmaVv>5hrvby&iM!V9Uj*?)7uK6T(l8Z5pRy>aCD1F&qqnE%n+eB}j!VhX#yv z^JAkL1^p4}I9-WI(Z#pKEr{qhFyVJSkhqI3{!QGZdG)yQ1Hx}#&(Lc<%bPjRYZUOL z-PM3cT3x9UhWas2elFAvpd@TwwLgn*(wns?*#=DdYugs3S64q`_)!1l(v0oUtCw6EFmE)-~fOu_8-q`kTFT_)`x+p z#doFHHy_nc8%)rql;MzKhQWq?TDd>TdK6V932`$TK=!dY>*Q7lfcN zc_)*0BfkSKk=|At zTckpcTs;E{^S5^NBu?`TfP6x89kMGYT91*>a1dZ8X>_NZ4xM``1A{==@*KkP)RrJJ zpy;QbDg%J;TVN?H6~Asndiif2zQs@$a5_P`>p+Kd6(tPytOnf#&QsuAvE*roWN|=^ zteUFA|H4pI(AzCf-8U42^uLkf_V%6)$$&hkb zg6@m%@a-K)Yfh6MAR$WPBG(wWxet8vi8cV3J_&$Y^63m%J5Vts{(>GO^pM`GU}3|> z@NsZm(J59VV+3^%gw?F3LQ;PA25fD+^9za-(n$XMQ|X~V#gLb}!8PdM9lm9PzgV-T z=})r|@Tfj$N|qQdvi!L8Q~(_(L4yUkQ|;`fUIz8M&L9EF0|7mdQ9YeYWmb291hmqxdjon%FDoRVvgGmL<7b{!*fL{Kl5Id( zId%`vSV6YXe#Z;`FHPsfT9@7p+?@{2CkHF@#Wa6ndg(Rp2;-7S2`i@uj3{t<( zZ+{)noMV>JSe4oR?<{~5+i>JZkWUGYQYs&J*bPGkD8f!J-LVDz?*{y@Ys}$<;&Y2^ z)N%V(n>N_y#1`D~l(bVEZEZ;T{_^7aSH@b%ch0#2-0%lJLC1GZ(~=!)vpGX_iy{icEIH#%uQ`hU$^@1I~X zVkKS1{}%5Hp(DDz>-HZl`(HQtKacrrl-_hP>Zz{96{@Ju{zpc~)j@v6-&xqSl!t0b zb#RR{Hv9Y4;wKg!^xU9DD7|CwY)pbQKD{5x&8xY$AD#H19qZd-IMAikAzR+#QFi=V zz2`2VYo^yJG? z7Y4et*d*nv49O_r7f^D3?{gBTOVvn%Y(TD-Wchzsd+(?yv!;6#Fbyc6BBDrCf@CE_ zlO!k^B-133oHGqHQ89p$Gm>pUGLoApA~{KuV@qraO_Py)PdnfHyX&sI-upST?)){Z znWvv{PSvT}wX3!$)$eLa5F3cHl3h9eaiPu_+Y3kU_5a-Hf8Bmk4tVYa7P5Bo`}LsU^|aqPl>YTkZR!!&s?^^N z0SN&-OpXrt%eJ-W566w*FZq4s9FkZ}?}?KoArk2p3e3cK;3r zJn*)_4KbztU%$kEp5pKQpbV<_sG-m#pa6k?q5sG0{l7l$S^G@tmu0OJ7n-x%Jzw?O z8gX`r=tEsuxU5D;^!<=EMmD*QMsv2OikGABhE(9-Y}sYFBVMx}y|(wwXUE0sNf>X- zhb??9J-&Ubt!{ltj3W--zU9*k^Z$$CzfJ&mehMVMYVXsXqxvnv9XSjJ&RguV_M9;O z*GvBEe~9$JUp#Hqo%;J?Ls>BKnmg-FbM}9~{eS(fK&fQBYEsC%*1sP<1q8eZH#ak$ ze<5mhwPpkVB*%O|fW!ir7+(fvWg_f1B9U_c;>XH9fr~j0pCP&M7YDrqYMiLnU9lSK zfAL#aS_qnhAD`^=jJ@6zK{0UO%@G2|}aImgjbp1(n|3dVR zfdhP~u28i&_;20Cnx9}PjNBuFFaIkUMlHOs1@n#W-{1bKFkWU7^Rd10|6^1B*InVv z2zHo}ykB1!UdA!f0X&z*hbO&Z|3X19auI(q@<|uz-<$P4ev7o_eg&ZLKbMG3^S!#~L_zX`PzJ}Xt?%N*7)F;C9NfYfN&ZnM15muf(A zqr(X%;`{6Ex3;#4O{C{VGOwX^pSf?uNxTlVw1aq&(Xw*z1Z&4T$ba()yw%`h<(*?9 zA|msh@)mpNpF7KgW!9V559Yc{2HmN&3v{B=rt1{dpJkM%(^-wZ9Vk2d62wo-n%Bx_ zocKIf;QP+cz(=0Sm%v8s=mT$4wmpcM`4=i59aG?9-tld_nKd#S)GtB!@WY1>d963p z2W(~X98Qk*u9Gq%9i|US{R^~Y2|BeGDZm{!fDtWVoB#SZT131N;LUrs3sX3_v_3_? zr;(6#UFa|^Ij$61>MCg}DxHrNm3wz1YPMf&vGS}?7f6%ooF<_h^JYLR;;|EXtN3f*kDmS?c0@WouU^mwb+ z5z*&nXFa*|RHdW>-&1eC2YRAk98Z4@_FHsb>R$Wh3ppRzryF^4O^Tra?=$k%;*b7? zlVDiA3@#4t*Lx{@@5z<8(ia!7!vV*gR%PbPZ#+}9az~g2vcYT~&zOq|ugUJP&0f3a zx&Hs_tr7h-HZhYxPL*YEg`74tI`=hMf@ZGjxCpwhgUr>kMbC5@AX7D( z--I12ciYw0Rg`yrn|ipMV8YDJ-FF+)lcY&)2rC*yJLO9hJ>1XaVq%gl&et6^gx|KR zcR2Dq08Mtxrwa;Jg-t+>0dldH1&C9Cd8j;)9`U?a7t8ua+|SA^x`icd-F|gk8+Wj; za+qW}+M^eqT-N|1Xn8u7p*MJpl}T>iXE@r&!3?V%(2P%?4p>d617{kESD3Mwv1*UI z_s{)aO^U}vHSN|IdcE55e5qrqq+LXK5J)7w*M+l`wJ~=5}wE9Cfpi_j(c4IA>A8%Cv zV`Y}9l8#0uL-H>gy(Ng&d59{Fwz}259i8C!E6Vy+Ch!?Ps;nz^%paecu`=b~&DM^f z^U3%)RP3ja<>$-#wdJ1qP7U#O3b!dcKwa>R_R%$-6-XHRfidxq5nAd|vZZhXyP*@m zpj($Z7XQs|2*Y1I_r_#3IvG{)LJ?mYr!qr&9aIQH2rn#V*UBkbv^K5e`)JhbJ%zzAe0lKN z>RoYHvyZPmr)T_*z*xk_NOAaHlG$rf?os1y$-0wCTtMW3QMQN1feDTpz+)W z-1L51N$|Yu)XBQ9Nxi$y`)-XPy(na<&4?tR%N-65I0xo1YC-2Ws)5U|s7%V{c`X#X zVQCSp=!5)v+a_4VYhf%*xGkhF^*qgX8UN_M#DbVvtM9yP$-DT)#i*!Fb)D3R?Y zh#%=&8}%NCL%IEC)Z*4^C|WK;L53h`jS)mGa51a(e<1@KRCpg;d|6Bz%`Tocn@~`a z&r0sO@(i~H+_jjvdoYkBW08%y_k=8o*Cyrs#fzeL?u}|qLD%W&o%T1^@Wm+Nm@N^8Ry>Pt2S>O9CWJjOUssiy93_b93{$y3fu!=GUi?iBC_VlX&}9 zd{UeKIvRiKa4_X;v#O><3fPTy@-!7+C3Q^|^VZ0<0bWrK@7M+|bvyiv+#r$^pJxQU zG5qKwusm7!rXdEH?`?jsPd_mq{d^R6ZMCsg+4TNQ-I9mj!Y@;@Gktt~rE>n>lkl!D ztZ8LtXjNzDNaZx)K2^I`22xJsY*Ha8f*Kcox^gGE{*|13);4ZMU<KDZ%^uiB+uZ&Z?}SgJwLaA-{MM2#tO}AqqvYMa+@98;X!Tx$CynTRk63B#+OUuC=69+1gVGDd*l0$afc)TZEECr zDd*L7^pU&A7OV_cz7zNs4IG>m4ILdIC`VK@Q`dF4JJx=Vs&MqKPMrYSv)13+gwB7A z^GWkQRAAF7{A2`K9Ufhbhzpo-0o!jnU}Awddb=qycAek0=lnR*E@9dPB1b|M&q_zn z;Jv-{d7Fwoa46%n($%C+a1YGTnPM|*mrPg?s#v{Sl%F{QRPQT}Qi?vJgAL0cdsyka zn&y|&z64De&YK`BQ#`ZU>8(bK1eD0qh$ZI7ETf~ia5jv7z3DC9TTI8PG5M)HS#nKh zpHb&s-n_jC*R-9k6X!G%g(=z)Piin`P+r@``8Ytem0k{XR*s?*Ir^J~2kpv>&(;gn z8cxL*Dgz1ssV=VbHE>AQ{zcz~G}ai-*G2@OjTP3@40q{`3Y#;U)vm;%vK1%%bWf3r zOFUlfr{DZfE*hMKoD3IeSK5svlPCdiG7w%Fqd}lhEosrGnWJoj6;>%n5gT*+X~0gr+YXw z&g1sM_F_yyNipV_7SU{4bU5_$@ZuisPD$$(4X%vYwK{`J3Q{IJxZ~GbHbWbS=KG`h zT0FhU*h+DbQGj`cN#`#v?Im0N1F!J6qc!XS=ES{}>qa)Z*AvN_ExS2q47U|X10jCf z>yUcEQ=w0Wd0AI}j<)M4yN=4zi86_(d|?5R%zEs0-fVKz$M(*~lS}nW{WqoZ;jI>c zhDPp#bz2!?6S+ajY$^X#l$8O$+-FEj@~;>} zI_*^V$w?e%tW)F33^M&RVlSROj$^svTU%={9Z#@76x!_Dz#EWH$MY5@PsenIQ%*3{y@q)rz{IeH^Sv8-emzTQ-l zdV@_vxD&g+0A}|usAyJNABFQto}g1l`^zsxy7%5QqUUY?pj7$6{K%n|{<_OX27e>= zX5ESO#mJqz{8B^BV>g7fnKWz&XqcAaSM1~tS50B`cri-?!|2ni5Pr^Z4rzmAzthFytgP_I; zJoITm6&Qh-BqrcqGa7VGdAKorzdB*vs7}7v5LsX4O$MMPMsT7gfB}%IKKs4^C4yyR zmXrrf9N1T;&!nhI>`t}@$+M+`h>YE?9J6lB_2_S{*b!&051o%ZhIxhu|I<%tC=8y8 zs_!&QvfQ5n_Bl%~wTtA^*Ot^!iPOfP#|PU=%|r(l)x_9utQ59e`ywYUVwL#NWkC=< zK?(SN-Bv* z91q1rbc=H(!&NQDPp@l=IDPAQxOd9$g&<^t9ukX*{%|>1KcdHiy0|`x=pToF2>l-s zy-!f}5t6V^25dv=Z|3#DwNmj^41uwW^bdu8*IS$)g1l`Dr+G_gR>a$C7H)j0$haZ7 z$M1x4Ao5ewB#2JUTiR4|Y*P;^UCM(Oh@*htQPS2NFSZP`)#wOT(zI1d;7WM=GOF)- z5dvm0-JN<0@~DMTw2p9QJUA?ppV>L)=@f+y6?=pn<5mi;)AF*jE1nweR`Zom5?7MM zPAbN6vPF>oTqWy2^d8SnP;7qDsjGC@onqCB3rHmKt5a6@swVDVikfQ;6&=o^7N|ES zI!BSub(m(4K0VnQXeS=cnfx$4pci_BZLMzT_8G9%GEXDv$~Lf4%p}ps*EyvbL$!#U zp}Ml-@)DhL=+4ab1CLgc5OKOyL$p!v2L(O7MrJ7@A~9x7u`)5 zMh=O^aMX{$$+A9vObvadCMKYD_b%ClN-F)&`;~Sk&)f5shw}CL^e@5AHa7m!Y;bL` zA1hT5OoXl1AWPV_*+p;$mHFD)hU2{JC??4OgU!0*I-jEQBE8RdU7yTPVu5K2c416> znJ259s@sd67A5Bm>6yHE@nTK%A1rir;Kj%^e>=EOI!os~+AufcinTF&r-SnEK#hqD z04H&DaJ9->apP$a?tQIs>>*f0AZ$4$djNE3V#Lk4HA&T8 z-X|9yds>mMRaatWMNz7cv+qiURQuMi`Hfphi{E<^!IzmBrhvUGH1l2kwZsWxp+BMD z@yu*7eQV=h13<||`Eu1fzKS-s>s9-|6qEGJIo{dkY5cGz%+IeCdXw#WyCdcxk0RSV z(N{(Y}<|^&s-mwQM{NrGea>uk3UC{;SHs{QLa5`g#xe(Gfkr zX-2SfEJgx@qL=hUO!>}}Dy&meQL*wg@ER=jr1G$8e!Ak_-7D0U5po+P$= zA?Zlx1$rT5KIQw!7;(%(cS)myYkF54dspJqd$N)sQU1e-!aO+ej+Cv3!yHadv45NA zn9YzE05pDU2%2}|Hcre|eKZ>U0b7#4#<`WvtiG%otkEIeE_95MEnkZY_4QnR>e^wmxr;?yj*~$}wU6u;1EM z{MYvCvlO?0gWi*A!`#5B=P%qVwy7SVAyw8VntKJ835i<#3P%G1bQPcjqFPlkmVIEP%M23a=x$Y-|>b&1g?y4mKX%6^}s&DVcIC$4DJ z9U3+@@mIF1;XFiEjEy8W({C*M>4g7Y)j%m~e0+0_^VQadEiK(c_+fMI_eagm>8VCm$8cX+PFsXc8)Ju+l_=wscr@t zd2^cOmL4L{U#J==6UcMyc~vpKyrckFt`(ZwOFR#TL;O96nBS1ejUUj6xXLf16cWyl zWW+eVZ4(N-apw*PR#c2(vIZt#%pI0p82X$#sKH1Xd3Jvld4f#MJac_G#s4 z2cOJEh-uzVaUcTIP`19f1)2$K6MpO->|*GZ8htZWEAJOkFOIu68X{eDpxUbAH7;&h zrP>L7sR(%W8!UHBZo`i$m@n{S({=rQcDc^8($}v?9|x4GwWZ_p8y{?p7Qu2y)IHb! z1}yX4xs1^XF>h(*jH3K)i6Vn0iKoLQDI#uN^+Hxk+7$lV_TcsVK_d-epHI<9rOTk@ z0A_tWnZHp56aZF4Ng?| zA^JFn9Nu_|Gt1rR>XoAv%kff7%_yPee&Jo_uS5+?x8$>M$R2ypjK@1kG4BITi6DD+ zDT2-b^3%BSlJ55j#+#x){IC=9XHVep-qh6}pa84-DjT#sApGEOVp2 zfy!tH9l>UpifyU(BLu8}-PjFuijh#UGpUJ-s2B4!r%oXOXnwL?qK!HlAaq^RlP*;# z*s``@L@%vojQ%Ra$j1nytjxPbuRk&}_3y3yblEzM z&i2d)Xs1PR-todX@SzK7JOD>=wDxMCXcV=7A@=A|5UNCt$7(yda#cBU?OHBMtCfUu zAisj50fmoIalQB6*aFztJq6D$zN&ZdQ8kC=f18ieT3!Dh-m+ZY85rZWL|u z_uSSOk}t+5&kUpN+`tUM|2dKxMm+p8J`ziNd>+leBYF5s^Y%mALS(vdT~%LpWvZ<@ zwUnEI1|btE&F;#8%DSLw)%Wk}R?8Ba<9YiZBRW|qWL-bdS&biE&Xx_CTfdS1#|{Yb zPD+Q2LB*)bK;mFq{cbhyt8)O|Q)B9yTFEgCfpOz{gIY-clQm0#1ZOOe{Kwjbq z)p=a2XRr|E<-L%t;wrp^Xpk+M8JY`tg^(V2#+Jg9peffqZ_ozf4Pv5pwUlT$YoQyv z*&;DX@N#9jC(q8ih{ zP3`6K!HFQxby1Ob{(w#O0xc};=-?NHS~nHY9VL@H$4JddLbk_!wgLuIuZ^N(m-&pV zFxc;nMLVl-mJTyk6%a=kq4HHOL9{^)ZfnV|d`%B>n^FoD+0)GsAJIPIFcrwCbTG+uh8G;ch--XLe5SVwDmC)QW&zwkD?7IIcu=%4+TG@>6f) zmwS@OKPhgDuIZO7GpdO*awQ9uy8)Xg&28ZKOCHMC9xQf&T%IvvnrBt@eA9=i=%mO# z^%(W)efWQ>I{#a(^b49uUm)-X1x#`ML%lISL8i*fyL9L@rg?}?490V3q0h8YwoTN=xL;%-xDKgGc>8<(POEPx)na84n2F!SZVvKyti&x=wWi8mZ(V-hp`&n(to4d-U@5PE zc<^`n8HfgF#6bjq9s!Et+$Eqa4?9|9B9}xdo$4LripO6Jnel^%Q=Bi0p-b&Gs8U?5 zA`YUNMhqubu*XdLo|9LhMzh>|L+&92_v1FIGJGu#nXp^OdOOJvv&S_o9n(rtLqO62 zn}zSuG{D8~lDls;@=V{Nq+}MF9vLduOn-HGY2vddFMHt5VF8aw^WBn|^p+ocIbbEd zf~WcNqzr&k0EqVTdwg~U;EtpUT!4_wW?YzdI!kWRl^s?s|F|e?=D(f+feA8!V&cw19Vooc*Nl8 zapzze-`zgq^2Jt&zCDmbL6s8zeZ-srsAnrZ`?Uan#q2mxW@d|!9O-vkNjah}9*7K^ zq+4@u+F2RsrDZwrh81|0`L&bP6}1|{x^U zw3$-Adym5ZdD}T!T+EDk-Q@hhAD5aL#Lt)65-bml8tw{e#N?i#CCZU!ed zlT}z0?(?HE2e|Z@?YB}!R7EG&cr^YRAtE+k-rMMXztq`goh4RO#F@eHE;()V%S-q0 zRNUym0M1#fVgI> zMJQbffJb}@BLpZ1m1L!F%`f-7QrDZ*4tMSbnm_varx_69-Is&&k!i`*DmsoLw)rhu zF)zH`vJVdhaS-kXONaOmt2bf^dzG?%nufUDBXGqf`Yf_6;_3s$eb#|(4&u}aSBs`% zCUUd`M%La(RW9kOYF^2GzWFRqS42yZk|Y*DAmLjY{*khEE?l*^$Hl4eKGDSwi{jqNq?j~l^47!I77%%s+DOSX=c>v#i}d9HWU0x;&i@; zJdj)ae)Uk%jTOT-n;6E!Zm$(Mwac$y&7eHjkY`qPPI4bIcnarCWp_H%`N_UWYf-gJzd@C})(n!b5+*)ar!uTD*bc>(m4Pdc@6w z-kgRdTA`ek{D6zv{3c42%Fhbxy{)48b}NKOVa$1}ogE^;4Dx!Bf15$kZ!v_T+R;wmh!cQuzXY^FHgI}$+l^va-bXzqE!j`rrp3d4zJT=RDGDI-tzoNf ztT5mC$erhC<5G1N)im4Fmo7`WtUnDm=UNfZ54KeGtOl33Kqb6nP_=IJ^=n?!wflF} zT`@dW1gO(bbKtZT9eZp=DM|@06*Mwz{L@s9FDnY z&=&b4v?IkPUsTUT0$dBCc|KCi;^&`|fD8+X^dAQD&&M>B?NkTTUz{peP_Xf_NVMl; ze6`NwP!=J5j*CakcdtvZUFC=6)}^||I)MRClj@H_iDWD(TgiDO3;yj17rAbd=g)F) z9{TRLJA0oLoTw7C+P%Cz^_)n5Qd!TsC2ihQ6AGgL28aNw%E26lx#6P2sa z#&#q5@OvVNB}3)CH|NFoB3bU3AG1RU*&*I^sZOV1*Zn-HyA<;&1%gr~RFt~nSaudC z`D=z;kD-tv?Iiv&0gGkFacgPz#v<8fDet*7l<_P#dcO^pULK}&qlc?pC7TPqS4n)a zVRP4i9QIRrmkW(O*j|YJ&VW-iBuDEQp6UW|yjGiXg zUX(-3lZL!B@iE$NB2Rz?{6$4d!92|0v;WDvz59kL&9kja;RLYp+$vzdSK-p;YktW5BtqI1EWq&l@HF$W^3j=}Wvu2QQf@C#vUVP5WddgA-r;?i5eOsB+DR7wO2EgCVo zDpWs@YQmW6@Ea=zjjBnKeVlf%OeN~*GMdV3zQKTHnOy2MVdz)!p0PW^=N5P6 zNFZ+KBkQei{i&}sL=fq71tKy(9OV=W#Xai_)^lC#VWj@nLFLNwBQq|cf;Vz9M?z}= zY@%>KNpiZ71V$$Zsv`f`iFhpn1-I)IGiWyS@dx2=u_zaCwnEMF*;Vwbo_GeQ=LyH4 zT$GZ!c=_n^IFVs$wv%sRo*n(G6#1K4{Bf2!FmZU`s(rhpDG{^TP3(@Sr{d9+r}v{} zyRXb?y6bn?2iTv~k++5Pv5xYK?b-I{YY3y07~)?;ml89+BdY+cgDwt_|BS;bZ!@Ob zYCm2X?MQbdMBLP+a{UUSX5Y5=Q5D}ms8_$X}8chRS#-?!+4Yf+SM>wU;#C^%{ayljYcB50@KV>RYOHPFIX%YY)YCsHQ zzZl20OXQ+)VPXZ0_|On^ud|c8*Q*uR9P`2h8dKjf1|l9+&O}JCNSlrFn@JjWxN{v@8`!+AQB@{p;@Oah&de(9z-&q1Q-H}Cm% z?Wh5nt9B;F1U2n;*tJ`rD4H4E>5|SOOx|5;kdGjdztAJTyn9gfKiJu<){*Eaj18Re zoC4g?yq^u}6f^=?yb?tGT^(NLX;pUliX*u|;*%j_u!wUYru?uYu_He8Am#N1T}P4U zUo{`DGs-p@rweKKby1O)xt)6Ht~GP3zX8oCFEAB<`y|jL6CIEa1KG;dAkYL7kKc$8 z5tkX|PR*WdN!9e@J$a)(Q}5j{Vt0Y5D0rbNN5wJWTFdL27TI(c7uJO;$a-wc8wz$_ zJl3$YHZxq@%L%g1)tzM_b=5R6n-_*bTO%ps*L5EBx;8~W`fOI(O z;_*FmP^Jt-j*#>yLd0i^v=|swqg8(qVIKL-rh6bB^z5r1%tf2w$)c0XfJMR%0NYYC zBKi0iWPiwM_#(#{IZPxU(S#f(j;vXbQT`?WQo<49&TlN5NTL9Zk~c`pAV{)fXR`UL zquN0zF1WU-LP7PcTIU?&y~%_GkP>@w?UGU*T#V#@JFwUqRwlU;JYBNg+nPOG`3kEC zp%(OB!eWh^BSA>GbBnqd^&sY=o#VsIBpN!47w(N`b_Q!FHy$=4gpRa^r!|J5YI+<` z%qYI{I;>DdsS4dx8gA_5nz((9RorC8{G~2q5MfrovW!fcN{jZqGBe{o(k2nJxE?2W z?(sx4Nu2esLUd|2Q;GhnAnD2by}xXh%YB^GNlR=MskK&)zg~n<<*9SZ8?Qmf0foMT zc%#CPdlo(e(qqXY2xos|U5gPnEj4A_-Y8Y285W=D>7T--DYKGt*tL;&iA|GsNEnb* znUA?nb@g_P-twB<$tJllVQY#x;$9wA8GKqWttnz+clpvtsTn%lX^{y{5RDtvAOHGj z%l^n!qfp8beqS6@*uNJ_*X>ZLoMGpiOR{(SXxqr8KWZQyfPT=F?ce-9bEV&<*fjvy z81P%qPD1&eSR!@V=X^xoPeT>pMh`@Mv`+Ga67BA(0hO^Ae(9cn7iYtiw0s0sAo z-RnQCI7|7Em}e72zt*qq8?#1ky;%UrC)B&OoHVt`NGCB=%5gBVt0;l_bcVl350QDP zI$Mh?Z@FW*N;<-cK!M}F4Ks7Kjq~#y;(jla;iMw9p6Mm+3oJ#1O#3vQeq>&L?{r@! z%0-M`B|SmpOpEx0rMOc_S-znQQ<5+Du{oO&>~}k$Mmv0cK#qn^xrJaOpf!V9A403< zJz09(nuvF;w@KryA1oL753fP1KMud0P=;c(FW9J}ZGWHnF~!@u1U56(mt+Hw*f=`v zl)wncNIwYgV)C}J_Wzj$5aeWEsR=Dol6mB))DIZ^2Gmpe_R+XZ_-U*}{~q@N1Ozz` z`~)5E_&Dh!bD%HcASH2yqAHUNQ8{;`C)?cb^CV~sQ`l}}>gMPqKS~laSX2mO{)Qdn z@v!6BSf!%cEQRYaTWhGQg63J87pnk+n0uCk@U|M;++1m#6 zHpQm)H0OLVWQ>Bg6be27-?BHN^O35BVdq2^hk^XA0*Cc9pyZ8zcFUdCHA+txRS2cp zJ|(7YkDyNg#KNw9$z$u$igrF0ko)6=nn2cTw<^NfVE2373^+nXvccFVnQ_XEpT-jg~9Xo8|fwrnXxd9!@-y-L}=yCcO4Y@Fs) zsoC>(YX*cJZu@9KIu~|Xq#L!wz|~Mew7PKv2;YGsT6%4bB{2ILjzA^f~a=YR7NM4K@*J6bI65+4i$*41M&8 zgp=l-h)vclfbEOh9u7>BFzF{TNgEYEdgoWRksDlsEUu1=ys4W`+N`W(?`CP9 zPN4DF){Xmj$ZF34D)4@ECng1_@qh}}HQPcgdF|`IGW7N*KqkvN`x)}~?E}dRjG3#6{ag%<-FgKBq@&eT=YH_LkbPgG##+xqzalKOF4jUuRa$iqiD0(K*vAGVj2w6wkk zymd_sc-ogHAhTi!owP&uT$MsyULW~bUHHo{d$cl_|9ifAHQKX43~`PrS1qb`cp5|z%BMyR(8i1DoftMxnD z?|#!Q8K0CB8jFKOftVduI~(6-jDt46xF9>a@>x>vFcWkjL6D0}cT(q9oq!VUa;*t? zd_X_XHJYs08p79+!d8Y;ZH-q)93oqlBqBXlg~kLXmZ!_>#J+DzlmIZnnC8l#ZC1kb z+!{du6RimC@Y5Vg9~_qaPsQvg=LrGZ>4FV1V8tgy)DxA41BDR9FjUAn8JEr6?2`o# zS5Cp%qcPu?^gfaC^P{58H}?ab_Di@AwwcJF%X@&j+j7%B!9flyanP>@3&@7 z@$jZ|@~rQ>0Ujgb&Oh_n8+|?#AW;LFA`Yl?lnBeD;Egay`cUp`8-A_%s)GFBu8pe2 zDbr+0fehD(ha>s26RwFSI7xj?SIm&{+>*g;zE-BxK)&<@>N@-F#%FJi%NS=R+Q2^b zI4ubO*uDie>L>4}31veL$ASC1D6106vI<&pe~s6T4bu`4zB$hm8qLx&lXvn1V>N!Z zA#0fYl~(ba6a`{#6t0qMFF*P+Y3=3svukWToalM7>`h8jRPJ)pgDgojCH%#ebdl&ojW^N1ipmu^7zh_2d>v z{T~p837V`A3i%H|IW+~9ok>YA56cS0e3J!h{C@UEr&B%?QstZk7qn_O|I>ow_Q}vj zwAI@ldJx6};zU<<-2JD9bMy1eVq&wbSAL}dl_eCQ|3~vQ9k%U9dKThPa9m%)@xhje zTOKLH@*IN5VDC$(JO7Q`AR#on*7?Y2LNn?=EU*5^x-M)$z?S{a&vr&oAG!Fcez+vr zS}uC1YUeKoza|#wW1a~co=5jM6SRBm+8a|z;o%U%t1#n&kJfQFs%@U-o-73ahN4)`cJph5xOJ*LD1XF^1cu;fZ%8RG%pn9Q<-rVtW?z6!7XJMjNMiaHomS zbUL&wQC0yc^I{#G7|X!fg{2)o+Nu2aLnTogCjqr*ugDlu`+qMurhu%|jebq%dag~N zT8m+)0BPc~o2LQR)!W>+ouu!3IxZA`{Qi_FFm_-rg&hCI7!2_3>F9R_%!=d1VeXMfkDqUv9cu5EbG zgt7PA)J9t8&K#+E=5d>_@kbwfVfP--@D#g4?>ltNyuamFF$42m zQ=&iJ9d~bZuoEJ3(G%Q0JeY~C4=a3bbVZg0IBSpO5sK0A7Mn4PZR@d~x5Gt{pFM|QR$;1H~itErFP1(@Qd;6k0e4wUMauyQ3iNkG88KpVs zsuma0tOz7b1nFeh3YZod6~_eu?9a5lkru74HEp{N!@)cH&8^ z1T66P`*0j#no31T8>KXo7Cxn9PY^5u(E9*Ay+ij9d)tg$Z| zGM~yM@%vX8;XFr*3_v2P77cokMB?7KOE{&8X#lRRYXUL7K;wyyRi2LVAwX498iA$x zWF#ieZ!Jw#oA=cpYfwR9chrJ^C|s^XZX4Gfwr)Ytq93D3RcxbDJ?j@`-l&B zG})%|L0R4|<=AfKa`lDt=Y>s+9F6FsACC$-=Q4wcd3saItEOJeuIjkXvdI1+uJqz; z#UelEzGl^Xe48BI+SsG~5BZv%0-)m7`QUE~&Hoohse}T(Z??il z##2AF?zobx=QwB7j}?_!Q)ao@(B?WsZu|_U_d4w}8)oJgwu*i;QL|sO<84tsof8*a zksK=+@LKWswv?!aaaV%mG>1|EBi*x~sh4wI z>SBvy*XdD*6irpYLF0OzQ~JVX(l`wOR2|e`@^PbXn|My-#K_2~F;jo}(W6Hp>j%E9 zJGG#1+;OH(7=%E+wJGzyB~hU3{}0=rg>{1p!MLUEUc#iaX+kA19L#gV*yLMy%&Kn_ z%LK=JH}BSZ-owT%Pw)N&q3-w-;<$H@lN@vt1r#bl1i~jd&Ox6@5IQ*_c>gY~)BPo~ z28sSkqG%nx6$f@MBqJv&=8BU6_tQiSlH9W!90B8QIoU+f>#2+tidbLv;V&g07 z>z$sDzjgM#)f=$ocib*A%+|IQtFBw!(Ig#4IaC`NtJ68?blpDW)0)F)XA&BG4%Nmw z>W9e-SdtLq1HZKL6y4+&GJSw78IdFN#5CK6}bD7}klnqdwA6ni~b zguy+RO{HepeVIAal6w(0^)7ntS+8yPZ2V6H>sMaD)1es{8 z?B8r@ZosFhAE~p=%70|%+1ByBy1IK{o)tSWq$34&ES|j(VfWMTiGq!WP!C-@ z_Pw`Lu5Y#I1Z_?pShgEZU*L@u`a^x?!`ul^E+$7ld8%pCS-s46xYIB1y*%i59X=N; z=B4@2#&0?)aO|jw&Yk@{^5~~an@1r-<8G{K@=Ny*NCi)N<-f*$mVdX(>P^qQ9soQG z`=ISH6f?0y-AzRr4bUxsi+-exkbXgQeLA-o!0~8UgwbkE-8PSyp+ZG;wAG;9I$(*3 z(8O%4r`Qp6n&6^m0?MNb9PX>i$h_+rm2({~^F?1kXQVkXfA$=uiaWYPxohrx2v_+_ ziNj+Vp3C(>mn>PKt;I2d?K%}~2~6Zau{xa^O;way7nS&9 z3k3Co*z>$_f@NLJRP)3@Q+YQe=~ElzMsVSu?IwnJ=7MG2pU=JS!#QKUYC<3k999KjOROhLkEoG;|Hr^5!oK&orQp|}`!@G>;eAB>sr{gr*ZSF8liAh%P zqMl7rngRsiV>GL9uGT}`yUD(rQYg$;M^D(E9n%}a`lhE3Z8n>vuiN+VJ5`JX|7zo& zVY?(YQ+=dT`Pp*`IJBJFLLp-^BR-?e8^!zpwILOIpdP+x^MK;cv3+(d)gv z5Jf`Sr36|}S)u|I?~*<4+QUMaSXgEy8$^1V5bfb~jG*uH<7nd_Cx`fAQSA9X) z#4hz;KGRyPUAHqfuSPL$S9jw+gpXk-2DqrNi#X;V2%GU`2IZQaU62A;ZtYSkeaqr5 z&pu>TJYevI|LSa&Iz`ua^^i%8J5s1FDd=vi19jhbTWNvrg(z{$$z-F4#*ePTrjh3( z-O-dR4+O@wJVM2yujac(cvtnmPFP3?;!-r2ABKc?ei5pgP!w4|l~aE37X@T46DWDvmDj6*B=hD>YZD-<7bWGja#Rp zC|HAevs4H_p=5svvr);T8mc;-o8q~X#|OnV?L9y7ew(ZB;BUX3jrZFJV|>FZtCA$} zopsi;<2upd(Nv!F1BF`+J{_RTCD(`k=09m6Wp|bUL(nL9Kt7y7+~m$nsl$($6Ra)^ zhe%9X?R<_wnRfZ)N=Mdt{%o*VOtw8p$<#sLb_9$*oeY=JWh-NfTRvaUr#131MuF{mo%!%{# z;b)tjil|#M1nV5&-lO1s+A_V>GSRX=t8qNUE}(iLZ#A?d;DEc%KQ8YrpT#oWIQ)KJ zAM-H4{X6nb=k-ONj2`?xUr|-(KJyL*kL`$~e#AEBQ8y~&9q5#xDjOd`&?f?3x`odi zSu^GxA)^G*>$nn_&3xKC3btn{lG?)sv)0m@FfkcIE)0R1#)IyFh}iKQXrj|thsfJ@ zr^dL7DV6^(TU*bWpHuAsQ%~3~&*;ZKzslw`Q;*u4(Q!TV!^+CY^Zy|}_&aqhB1#eo ztoWiO<2~PGdmnmj$)~8$P1k1Nff{t;Yx-UDQ`jZ@jMa*~`Wlvb3ilCwxoB{@?nNkAxakxR)%DnbzU7d=A2xtJZNnc2LytI4o2t)3e%^JZu04C z+sgbrRA+pVZ~L~T!T|&NfJ4o_m+1O7D?h(!6|H%Edub^Z2`@yaclL`0j zd}=TomE8fVwuc1ZiSZim?td7*D|)-QOIxEY38$>lgnC(Vn@uj;`$5g)s}^TIHT?>w zPADaOM9F$3R6b|i;5wGrQRx4%mP|4MDUd=}jLZOX#}~BsP^u_2X+vDqsCE-rWt$Y* zRu}jDU>~*Xvw!G6VaiXxo|RLcdO0QzjSn{-1N$c(N2+g+3Esr`%>`?Q|rHe zBxoD0RDI}&KKPHqp9`RdPWeN!zc2EjQ07_(K6vd(&EjRO)?@)KE6Xt}g1d8(^$0xO z;k6wlUuc@s$tMS|dV>b-y@V{^`qm&QjC|5b?M0g8U?dBtPwmh04QIO8_oGUY-JgqB z1#J)qe(4X98>AG{?_8{KJ_QtTMUZIQ!H)d1gLAK!M!y!evqj;q=}=>h08lLX6`Gm_ z74ezL9X~Tr8?Uc@&Tde>g>?Yxgiz|YagEjxaM?@ATIiYncdxx_+!JRZ)fBx z-??lbt*SOG5@~I7rfTt>O1nBAAOF+SAiDM0q{}hokE7z%jMVg$zn_JH^H9qdy7cnnaPXWqzO-IqFH)Bi^JpwE3~UdLJ) zc5tdStKWh2u~HLrz$>4w6Jk)iouVTJEWh$ZvQRDLfuH?axi44uGs$hvCe2X0 z$ZE+|KE%h19iY?(l8c?ipw~+?wCxDZbS{mo>rXYfcPeo8KN$7?%Rk5N2t7QE3eDMl_zP$i9(J|aZ|v%xHuSe_0Q+mO zS2r%){`FjZgG1?R(aD#;ufYFI#{6+y*~0{&7io+s+WlRR9l@^}*rNQl_P=T=z9*Y3l=w^A(E*u#zb$HM*}O&mcz5ZDL4+_Q8)NMio+YoHytDhJN-A$CWqU*F>= z_T}ThF5G{u!jJr)oGCqci3dq%(ZBW{&4P?HyQ!h!e`BP+{y-f{bF}i;ElZ68`-y)u zS^mG;!BMd6U3$^uzlt>^r&EZbB=_ULHPZI|qnEXuBN%{UnJ;NJ0`>5o2j&jw%e^A-d$ai;oN19< z0eaaBqZ7b@VemQT+Ta(qSyu5x{^dJE9}FDGpTG1e6L?Pe3f*pdd^t_fkw7>i*M0X- zfAQ0Qet!3F%q>B?^>hXi+1)>7g2v?=r~l2r_iug!dxt*g9v_QsFR?=NNjT3&=gHWN z^<;H35iS^1I=up|K=Y71t!)RHy`)y> z9hVVs=~HZKNuwQ0&n{BO7RFTbJo zA!H{`bykPMy3XH@7vfZtU5$^v^62w^>DLrp`vpw=WY!-l5Bp3T*ki~veCw*zVj2_{ z``#Trza$Q3{cN7KPEq`8OZv-y4y^AIC3Nc2nPH;7;jH5X(b1sQ_8n(0e5c~7H%QTK zoN5#P*42s#;z;uH$X|PIaY9b_v^4RQIW(c5%?g>jSA$lE_O`%WJ8g5n5_TV}*Ub0z zIbn1=@d5bjOO;^o`1pWX5`Q&=UapPPLZ7fU%sJw;*pmhGk?eb&#P9xWjrJUgr`~eF z?-cV|U!$;iL^-0Kya7yFIH{%(fU-SVj3wyp*1KjdQt|?Nm;Ckdq_Kh>DH)X6Nx9AF z=}?`Wi>zSE9w;+5FnhRVj>4g5No{ugA%F{m-792};p4fX9hWk>_2%6RpOvkg;DF&G@#elU)kI?~>^u$2oAVnpL@A7tp6EB*JrBAB)L`Km$=Lju_VSQ2fDA<|H^;-+g(?no#`(aH{1NuMs}^{?K89+ zA4tmjW`>_~KA==&h6-We)uqdEhvR3&#&aEwXM3^~^xCc)A5g0CBnIpwlN5G*$SGzh z*5y&s`|$+Vn~fj7pEm-%dYj^zOc-V zP+K3MlcJH%EF4V>B-z!F+spG-G8QA|Noxyl^U~nRhWF}8{0-&y<3%U>1Nm#t(q6iq z>#3q`cbg(hk+>-EP!2hxGvMbF$j{oHp^lo`!R)+feA!~y<4Tz6JP%n}?p*IXdE<#M zcOO*P43!p4G37LLsqoXYNIJc|`+hXI%>P(ul%dbXE;9=soheuW+m$AGOE~9%?u$@2 z4$n~cwq=X8e9*JJp!p`VX>06NXXQ!3RsGat153;kKZ5adpyiaA+wor9aLXDqSk<*` zzG#%yGR?QpY!t{F>8;i!f$Jo}V|ANJvhQvyYw%}lXW_H3rohe%ss*>x`)zHG;P?Y~WJvmk zZHAgZnStJc?brEAB&M`9eww#~BV|}gsBuSUekF=5$7wYIw&8t239&Tva5)K;h` zE>O?5=DcZp`~$16VA?5@ED0;~K#yuZ-edE@19Pis-0_g&GG{~-%tx3Hxsn|%W}z{X zpHjPF8dsmpQW_{?Ge~D6ObsT7Bb7eoZ$7g~a=~dlnb~qgagAPT+evCldg*t(pFa|2 zJCNc%V})p{KvuKo5N8Jj577+Po+{R@nL#{=)^cyO%C9+>=(ds-+tzY0_BNPcbQb6n zRW@JCct_0Tb{ZboP8SIUWh1wz;>yidj zFwwNtNMHVW&JG@}^e8VDy|rJ7*{0lwVGVmnJk8t(Z5$!jPOoEVV0FKZLSt5GUqbBD z1YN&rtrwxEPi7>!t1ZWGM1ywW4WVy#;%OsR);0|@RO1+swM(wco6L5mBh*!{z_k!Z zb{;a6syxb!MR%jNM1A1c$$b94zqL7lnEX%IzjH?=BCo^4F7ap|51TYw4`+sYTx6V4l>WBFA5y_^QOQFrh;= z74P&}ptB0iaV_i>Ek`4An`|C*TKuZV+RRBS9W@R_xKbjGy) z-u}B&WC4$EU;pSZ>O?N!!}VwUk=yCFTa(DzCE4jBl+7zVa)L!ECVN63bpLml5}j zelWf{ptN#d>b?V;O`VEobq_v!ag2@CEXmR5YrJ?-IR}01MlhnmwUms^<)wVwp8Lzg zQC5-a)0(2bT24ZDly>fDhG7@s!;GAG4Wh2mN8kR*DnIBNY*mX@zLvJ7j4DAHdN#&J zBy0QhN>f^Z8}V`VG>uDWWWVBEd zcB+FzP_7*gulFQ*O+umWA$eJ|( z^5=4f46VYbo}L0RL(3=7NVut!=Z8@dbk()VgI$mJJ|!1B9(_1Wqr??w_~1UrbDb4# zN*5pdMMMBaXEo>o#FcUCnE2!`TYWqej$fBK8d7gL9)8k=m2F~ioZv8)-MoBUd_Hr` zTTOanedeCH{Uzk~lLj_05;n0Vr@@L!fW@I>TcO65!Xl~0=d=~vq%8%xcuUq@F;2v0 zEVo0{uYMnCSGgwqQ`0^C1d z*^;HQA&jKZkja0C##bXHaPvwT0%>y#W&S1{G?U|VplMjPRO`hkgV(N%2-x-tmHpB_ z5`!_Hfrk10N|R!-dm6u(><;jAL=ngt0}h4BWFH(+6T=ptmbBHc!FjKrJKR{<%BP7BKE14Fg0l^rhPh>pqF@4dp32dJ zz(2x|+gB^({ewM)BeDL_29hrL3N;njQg8~x&4zXY?R>_qN>X=L%8*U+J6mX}14=N` zY+pg03x;p8s_0a81$Ig=&|~DYq3qVRT)`&`DH}98`uD^qXPWOjG+!)y8@&?p`n+NT zr@YLO3zG|2XMov2xNiDAdMi9Bme_{a0=KianvVqXw6-W1FP^h=DpYFoerFORxE1N* z>?-Z2qCSgn5YR{iW}5BQ@720EE2;ya+eF@}$Fp?aq_tPqB&~IVJh78HW6v=9T0OF= z6r2f*Jw*=6_omwue$I28PH+i=#tJ#6KWs?ESCxZcJ2GaVl}ItXqyQ*g5_mtpL6h8>1j1fG1;F~YGe-YrJr zyISo(Jx6lS3RACAvG+l~hWbbKIw&-J>d?qiRqLGun^ntHwpuoy z9{UotYs&38d6mk!RqcZX!w#)CLl;K^mz}ATM0|UYaAd#Jc(BpNWK^I}ATiIm@Ln6y zJb*$2l_)({{8sh|=_~)1rlYjUf&mEJERJDzM)M0gU(BKP)$&$4(1xKo+!@9-q)}4I z;Ju%OBB13f{QJw7AHpJ0->JyTzr7p>Sg2`T+T5tHia}JJTddmobl)+!cRWLOG{+oHfXk0ZAvaa;0{pE* zkp(J$2aZT>98r4T6!gmJROd5&yV?zHuPY|X0>uUUQo;1{#w-pN*l-e6(^09~^~irU3W`i4@?lu%t|>Pcc_AN*3lSytF-C9AyI5Q z`h1FFXy^e`)su3{IPa;jx9_dc`5RZcGUU7+jI=xZ<=zF=kc#)EdfghSbPlE)8+=G6 z7-e0I`Vv=!mc(r;4m*L8$w953gq}mTnEm%`ahhIESzcuLA-Uz2M3qRUq2Qgu`Ku~T z-~Cy&f>=bn+~R$v#1(2x-#O=K3rzITz6T_Wf}_v%JN_+LmFYxpk4_om#vrk=nQ^1R zVw%9x>MH;$*2)f4opR9SWlKy*4Oi2$obT;Ov`P`bR z<{N-4Fp=7r=x*rOQsPiga9KH`pa-gU^=u0sc)2cxG}O?@;Gb+Q;Ls*G10iiHc{TBO z%?FeYZ*Q3ubScC5MoVkWcqQiOTKcP=A7k&;@6y(@W|cfP`p(>=;8Y~Z`J&MD&$~4B z2cOt2rm%c4VBsy(fU`qkS}OCZBsHfawE3w@;$p>UG?;W zm!)_Ej>NttOfYa0n~^{VX4!Dh!pTD=%im<#_-3;@vQHUpep;+*@R&Q!GnfSb-cY`j zf?*`6ii}>VEt_jskba)hE=8)27Pivv)Gq4CKt&nhX9OG*-t+(yqoQFc-$A9gB0|*- zl~;EVr#vKZI>=@avId2#DJi1?|1h3uEPI5>Bsc=Oxwb&d!Aiuc$qml=d)7-FK)z9@ z=SaAEVbmK(PD!NV)hi9^R+r9lkmzjk?A796_a2{v1uxW+^TukXCozE9fC$~M@s8K; z0jO(Ak);sGu$;5n&Zl^&d6t{g;6C{N5t7lPASmy_n`w+mWC%pd+y|&M zP$26LfbQ4N`vc(g^{R@Fhit9J=^6eAx$ZA_-xt21YrM7UwUDFN6s2=t2Ef?`F=7;B z{nr@5RlO8j3hZ}4Z|^W~>UJiLX6TjWcb1)c$W*?j6JVxtK%<|NvS4Ky@(CvTNn@kk z?P8KQgWNJQ`S00pFB^I?WYDICG{*ZDTQ#^8sfzGTRZR`fjc*@j<(lQ(Dn^H{eMuCy zv(Bc_04TeV{T`LcBw8intslg_8jYpidZ5`9!ZNP6LnQPY6{(H`=-f~dfx0e1$PTKp zvZk0vjita_?7k{?@7I>pi5xOFZy7JWW+n`7IJkYpv& zU=-0E{z6M_2HRgCpSQN<6z>&6_rwxY>n)HDJ&wm=`1L%gn0l+bYTnAOC$CtKOzU>T z5Lxl%_zn&ZzFu(H0S-|h!cmmyf8oi@_G;obCx>RhP)+3FxGG9 z>EeX)Yq=AShCdUB0M*2&l-ThuiyN||Bt^&PVJiY)cuhbcU#*ayCRIUd4q(14VLlZm z#zfo#lXq>8@MTTMC_>B2|yY+8n{?$WoKADTFVC|7d~W$&?NHXB%TYzWl8joE0q&Df2G26 zBSL46EjdCCnlL@-`}d60`ZfjUNa6QGa}9vz%=zV+gsET;qgZ05syI6s^y7Q$X zvXFgWs?(dh61~$k#L-aEQ7>**Z;(RqyJxXNcbrMe-2dxkcoE)O-oKWiOnX0Q#lMN1 zpGZHz{S?ujAgKt<*`k)upt61qv!R`f9IY(bZ~Xpd4Kq=DzxK{1@qB0LnEjVehaX#6 z%u;CRYD$nTn-B(gV`fB|Cq)-8b9Y6jZ?D#u<5_=!w z9v}W4?(uilT9pT2{o^0Nn}zHxn`6!jndJQ2Kc0Mg32@?EhwuLlF!DQ$k)s9a&xiv& ze}ky_o#IG-1yOzb82+y`E7{O}so(4To8||K-h*qr6QnR5k{O;vPKX1KXzc{f+CM5rrf*eL${KeB7j8$4=qEf=fzBCyHU+@*I< z{$VZu;!2`XK%}YSwwF}8RtEHXq@Vw=@*l_XLCIemncWo#668z=Bba2J+XQ21q8zb<~~1^lS7<@MpK&%GvCK z&s5w!flvOM#Wa9s;NuZGhOb0N-Oe`#oq0Qg{Cc&uel`bTh$9O#W4u<|l;AgmPQPvg zN$#W>3=*CT46qZlS&Nk~Dx~PrzreH?M)KZ8h@x--Ug9@$<2Og0Bkn8YG}BSOSUG1j zTy9U0nSa4-dwR&GY((E1Fc$|79}mhw)Jjm(^s+z(*!b;}A9Tb(t93wC+po5XDpJw) zx~84zQIlMtBX1INdU<`d0_FEYTHkSomeu;zpOzK$ZbV6~-ricUg9i>2nVFqSqPs9V zQssIZL|6cdbj}OCzwlwmwyJ^2D)%n+c^Y=Y{D5F%C|lA9vP+q}!FS&QNXM|;Zyef? z2|^{$z6WLrJill;J`0uEyzE1sgP9o*mfA4u+0{7nAh%XJ3yhm`7e+mC!H?=*m=NS? zq=h7$X6_90`D)#{yq91xTLU^2Hh(%4I#v`G00!9C9TTk&;LbnIc|mIxjG)rqn$+6L(ncQbqdh%Il?}9%5X1IvtCZfTx$Pp zF2cS-$c$F`>zwzUX0tMG0v;()Zv~{P3FatiBF~@|gCTH$~_svQo4lL_l&9GuN&u=v$mbs2H$t7&TcQlBY3-OHhj z*tMQNAIb`lqw!uFSYJ)ri9dJNW9D6Fl`C%l1se9es>MnH^N!?{8r$#nwCZ1<-2@iy z;f3?Wv{rU!DIrNCxWbiM(jv18Z;95(P@%`>Sj?h2`jI~iLyZTar3KV%`62go_PC+N z?EBMV#u-ys06EU`S3y+0s_01gxwB6`?(0OrkozA4UVS>j)v%g4>e-2e@ASiW$VDVJ z&-sG#?=P4O9YB%sD zwaJ?}5*4ANZ{MJc(}bm&v_=*zln&hl1a=YVVYwMzd~y$BwroY{1l9Z(w*Bo|(Q%~U zeExKM0|mX6;LnuaKy37iho`5)aXMPc-9d`bqj~0Y#xZvC7$fo}ouw`~Fyl?K+x8+l zZ4{jXO=oF=#L{)=<9wPGu7(&g83mK!=AVIq#@k#bXZHZ9 zzZF5EvL=K7e*5VM?@KLC?^cuK1sYEl$;EQx+_F&*N9p;`hr(VQXJLvm^so@Yl@8f5 z$5|KN(oO^up5p=j81S?!?!37SJd#;HF;T~lqN~~ozn4vw@!Y+QlN$!-Y~~N9I`I4| z15v%a)Zy(a{Cz&q){=w0&4vud=`~!8(tqPTUxx81s6VChRe0vyN5-S*kk$kEOlOZGb+Fk0iu=q*gm zdAX$DC{O|NSf;?qT>mGWjN9Er-{N+Oxq2$@+$*T({3Sgaub;`vzc||5Xj6$zU(U1h z&M7wowrUS{veA!5COSbQT!M*;J*^h+<9C=Q1iWjyqt;y;~m>y;RoNz`}YG;nQ_EDZO&&mjhjM(6-QN5z<0;6ItG4K2t+`}-Q^OPwX<(X4QZn{r1+f|=L>pQA~ zu$j+FIpeZ3Zd983B1D$5F$`H3sjhL@fr6KR27Q8ymh-unZPh}l8@Qwj!|r+v0@>JO zj+5RCRjbHM4f>gR!1D9EqJ!N!M#2M`n)h)-xP9ePn4Ey3}Io$UP#?klZwT}LkdVWd5DvA zS{xRaRJHIS&g|s|IFTu{dn#}I$xAGN7$LE1Z)%T&GEhi6{q|26%Kx3=p>-gM z&FeBi^&?-ZWHEK9vkneU3xg$YUmg^hHeB;(#nPo-zwwmf>2nYm=$@`oUu-*|lvI3q zFChM>6YE>lPV@cCg5F=Iwk4sr-dJ`AVa|BA?2howkh26%v-PbJ7yN7ghBqolFSA;& zOwf$Id>=~N!*zr1U%q#AYP(_bEyvxT|KuzF-#+}qH}J{Sw)ZefKn>1?Jv>7Iqc*Vn?y#fK77m$#H}V0cDlgxMNEcjd1FzHw z)ho1#jFk69i()(^f!uXNz^X4-cLCO;3}V2-j=m~fEu+uGwgQ>X&33=)c?dS;?1)6| zS$_n`z2YaNi$HB?=d&+0euLX8?FN z%Zpze;XZ`NF+#~pfV}HHK?cip^vs#M7ojf!;nv4u*b@bEmiJTOI}np01y0BEr*O^( zFiRMaj->$Ek$}(e`Z|hM-E@^+RGUhLx8g=FNMv`uR}78TsNk=`sPH3CfpeB4Zk_KC z$iSOo2ikJzl8Aazn?O+-lvCZbbn^UILzH325!y@b&gzykI%ldrJG9b!*Kv&l3Mx1y zv9Dk=JLfS$$NzXR5LlW_I#p_UM5aXU?|B3fuXkzo zVAxc@5Xk56zrn%k>I8JQ>0vb+kwar4Roi!aR9=tQm)_YfSpKw`V%-H)E#jXZZqHEz1Dm!2M*ywM_fn5sR?w!!c-vP5{x91H{IrCL(%5s z@^YvohY!P|U!0-&t_yo-qXftc8c{x#>e{OB@-)?Dxg#^HG3^naZ!|~d0E-daim2wg zq!z1H#_d6vKjU}U26lumPeuo38Ld?@9cyLxk|WV8d(xbyFm%h&KQ&m$k>~W zX8&fQ?<-4~3==52&c;D$V_ry`010ZS2hdy`ffEKPZr8IrQqyU3}K=NB^7Z2js~1gj)PdUCUu``9iFPMU5*5_bvd3!$CQI> z(k4%@EaYFyZ>lRkp?Aw~K4t9+JFvCy5H+l={AJc{oKsvGno$}v*;BWa76y44n$Ehr zrD~>4xf&2Mko8D5cWa+IJS}_2(cNrN>Q*4cY$on4)tG7f)N+GtT^lmnXX)k)wBXiE z%yP;c^2Yrw#{;v&L7T*S~8o0O-TK23g8430-yr{8Dl=~0HCO~;5y-2uy*2YeT zgQ>`#QqvSqXK6DdF{r7zOqq9-dZ2puY)0duu+l-J)qabm<0auVQWGzuWxPH5N}GtT zfyeq_h#B~1jM?}KHzJ$2jid3T1rx8p9WWyLHyYsP^c|N?xD3xuytA!M+N~QMoziiE0ElX!W{=` z15bY2s`32Of~MA;Xeb2$YQ~J)l+C%2pk|~8h#Dn&FV~%@-l!+o_Now=y>;H%W8A;Ey3TaKYq>x z6)^Z|q#^B&*E(inVZdsHs1nSP;NekCTJ$VwWO4Y0GJZ}U$v>#U&P5r)fY<%KrsL?Z zH66^hT(iN)*rf@0LHlMC9XjIlbAGt{bFp<_@`|O)o6g*zf8xr)~h#0rnn?87!;WzWK&3mE40dDDZAY4Y+)|kwf*SVBDCd$ry zP!|(RhOZUGT3e! z+pZ2%)05a4E=mC<01q@hLdeI(F5p7yXvD8TBBB%-qk2jE)x5F>P)RR@7G(4T=*@g> zH`(%Ny8+6ns_#ugsZ}OdvgIQJQ*^cxu9g7MK?LlEw;dYSc!}9g>r47ux8velGr8L( z2wN6OYvMu*uDuHPD$cgH1XLE!6YAK2EELTbyYr;s-tsyvThi@fNT4)s2Pe0hccv(a zC{kTZqtFQ*;3YD ziVIw^3CUHJ?QiWyI=JB^Y4|o*K2J2W)x(p#`Jgg#w*`Xe ziYZ`Qz0`KS^p}6mOG`|AOlqRy=7D|bJ37AgkT_ygcdUB`@Cuk6lhj3y=pFwMlxZK6wXu!z1a z{anq9+BFY-GPr0!RUpg`c@wzCB*-;-0@nz!kllOZ`+9lr@FJ7i(0504k0I26HdYnL zzQ`nEpmC@~wV3^7ReP{fjWtB+u(n9GGs+pqCeg=4M^Cw89PJDf=0Li`B>+?%mz(d9 zoJH%siL%kXj3yKo%eCId2!JQaBwoW@6T|1ItG?lV5zjQ5-GRpNjurokuzK_rffw=a zE`T`~w_8#6l@o+`N3+!xem;;&cH3jkR3&BhB(Z2iB3m!#doK|27g*c|{SptXwO;2J zx7s`r?=^Tvp~GbSnCQz9WSPn+%YPH`(^}=$T6TJYnvg({IuXy|2a;HfjQ1Fj90q{u z1jaeHjY*yHifPzOPZYhMEV zeKpZ*1zR1vTQaC7x$#R%p6-67hG$&Q^Gf@rT$rlmJMl&rzYyk>lUo&hD4lMhPxCY+SHq45gqUNuqLvAcIlng@Y{fu}w{Z!ADxh-nGARR+8%#hcx zJ4zg7!^xS;nT$+c~wiZ8_ zq7b;=>uv_s6&6kbw93U-wG}Gte;MGl+fZU~p!^^51nFuCOdw|T{qB|s-~N3ha&aaMKHjz*>bb}bkr+a-U9`^kPk;oC zI+4|R_m!-S@mM5`jg~{z@`*mx=Ty1dZB`(SCg3u>J~L3%r2jNsk(I2zwLB|}KFbQe z3125&%QlxM`N0k6MAfwllsIf^q$`p6zl4H`1NRar`amBLkZRYA_X4%vfC8}2!%k%D z7_u-ynQf3DY=AlufFgshn;Lpl8mh5E6>fYGZba-l$Ebh8Ic7bI^YCm8O*#SJ7{ZJX zOeZ4Bkf!5CfF}4|Ck@?VZTY&BPCs`UxMFA_sr1)e`&f0R;>`U@H6Ck006R+!mRRXn z*$8t(PKc+p-v}xLGiw9ds4M`)$IWC1IH;fW>g$cH_;+VC;ee>x&}Xu@(qI;BlP0uH zBLCDjy?%BLh~C*HuT4YJeyC3e3b}Osc1}E1PqY<)x`7C|P23Cy0dtz`D=BvdN*n>} z^_S%fYgJr`y1=#A=L+D~#Z^q4I$*Sv%<^-dC=#;NU)98)??P%~AbNtGU0?Nn?>ODQ z44TSxRcd^&8V?o;IwpFbUr)X53HmVG?N^{wd+=q>xo$4FPHEi| zOZxX1HWoImW!*T#I>{63UXVz$2>Fk215BlzfW6$e|K0^iTVgr^(}#2kdz9QdQ){*2 z%vPPX%CzfpXyq*XZ_+^e0zJ>A zN>ivEftS$gdjP>ap(35pPf-2>q^r!lr9IbPf>N3uNwxDos{it;{Vk}8%_*hOa2yez zy98JaMyStG{4o@=T<9JJ7Ie}JJj~`HrZ*1)>kv>vP1fY!T9d><{Cvy^a*j_@q3Jk_ z3_(A*VmXOsN7B%p06#YRW*(yRRgTWEk+~2yL&X+Ptk1AOSViBHtU91Iy*-AX8O_ss zpUxuaVh!SJOhdGQu@O4KH6U1YF!?SK-sh(na+Y3QhH(2Rvy9ZuV2`p>V%U=^Je{(A z`o@I&wgV;8`7c-V)AmlNiOz{ptM?Lx;@y?jLLp% zMF+{bND}%KH#T*X0W`mw<(c@vUIwYDwDp`L)~{W(exr8ZBEagA-(|GEr}wZsT6&-h z076Da!zZ?>&N`$BHADr}cW+H{F+?lhGtI2uqqWVrBV?$_D6k}NNE+iom7eO`@=V`` z>s%492<8HmmQ4Mq;*Bms$*@iDY?djYk2JBKQQ@!Ax@%|s=n>J|5LcFr0-C3s#&0ZT zIR|SGeYL8*gku)9^)ii1G7VolPg!5-ii@ONSsSoId7zt?mkN*IeFQ`|#a_za#<@0x zk_BcnelRTCMllz36W)Jt7Icfuj!Nqc-e8OZSlkk*DdQc+3OW&(G3x3*xXcz#DdR+M zwM-607bgb`Bgn1hRD`EUnY8q{t;0g0R-kks*Y{;mbky9hf6ia_a%1@2`~B=Kpm)_6 z8*!M?nCnvl!nWuh=qFbK3zc1dtnajJGH`VV#|+DfcPKWws zNly2SDLCQDApLmn^VKK@4iOfwZzyh5weo092SWACjR!Lg!kq^>5*<8_=EPqv#%riF z+Bcm&$@xW_sC+K9yM0}udbu&KU@S`K<#`&}^2IRszSR@$p!3_tg&ps;igJ7*_qZRY zW+7@SOj9i=-yn`JtUH{PDC;S|FLf)%u6#MNe6m!saJH3@WwV;Eu;u}E|5Gg+ zW`NYofj+CP9}}Z)_+d3mc$iF2gJiJFH{m2_Zw+tk%8@aTY2xs7MXT|4bXn4q{3`FY zRm!mAY%)AHhO>_ob2J*Ly3z@P=e!#q9`Yo&xlZ6HsZ}pt%~OgDze&N#sf$?IeYOi4QqHiAO)Alnk4LU1LshsI^ z(!oqhepNWU=RkI^)nmeJNuhoBC2_Z8+RaTp$7+p+mGqzQZK;8qAOgN^V3~c~X0Y&H zN`e42!xw%uOh?aQx}6?bHL&9~FLsNTg_kggIhPebD+C59zP9K#YuP-;e6g=0qcXxV z8+I>W>l2Rf^tk2Zc`#clZ<4kxSS7jEaccXb9g_4^JP)U*!F6ijgqj8z)#{vOxAUp6 zIp%#SU&7$6=2H!ArQ02H;o7*C@#x;Fw0zHDTXRAxr)GL9Lz5eEw5Hv|#5sQD);*4| z;gULPLv34YWsCL_Vv?;ox#5)5jIE%eV)Dh@oYK2zlw+>TV5lD13k)&6e?W=pMoWyK z|Isu3=%6wutiyv3<^|!L2FgM&)7}+ecH((rlqK=6VfSovJq8l-iWBB&}5~w+riCOj?x@w&}Xu9=+^ZXoj-gPMlwU zctA-&(xs&MGoy-qu^(BSjr2wKXtEruIcOMD&E-unJU^NV0+6MQQojyx4A z%_Ayt?v>oaTXkeuvu1`$wic(!l5g!LeOg)HRCEZ_YV6kBFO(V*@1kDU9a7%JZy(st zWHi%X;Xglwgjx1wUdq!g{mE%gtchR9*Xi5GeePNEI)d8n98!d?z`XIGoKM-P_^_^^ zn4VzII6bKqS*UtI7*vNlUpK(0SX<{x&u^^k1V+4d=o)u~oJT(#Ze0DiR50nJhtV?*vNLQxD$ZmJHBA(6gt=V=HgC^Bo02Y zeQY!F_UoUY_aNt7EZm3&`EPNRLllWP;T^F@Njip}-C1RZY9D?BL>h!WemSJ z3hy0=!4C+3aBW&344Z{IkG?lc0KLT7c04d-y}90q!#KMsRtXrzt)`v2BWl*C zkBRhWt5mntsuJ1e+{-Q1l-XXnWKY%G4V5)TFTHs2Lg=MEPCEGUC=AY#39QXx$p~0w%(>#EH6ogUNB;t% zX1P?n_q`rRhVq?9@R3tzt2!v&9LIkSWVw+u{J8nez!AlSys`I9!owY|A5YM#bp|Nt zvS5J?UG$@U(($o{MwZN@d+z1|8b5o-qYS_I0@x(F_+)gq-Y$AXGXnf(ndT!iq*j)G zvp!XbY=M`I!vHYf67y~V=Gv&4Xk1S&%+E zx?Em1Ag=Gbkmr>K*Ri})^rHRU2BkD<1GLfA&U<~XPBBJ&M4x!bed1lwIS$D(z`r(+ zv}2ME%@saw=h;}DcIJw1P%g2``NAuTc|6*@&(FX0PzG0|NZx(z_AIwl`WJXRpKT1a z$-oNzRJ=AtcYsc*g-J#*vuMo6#1}si?Bq%Hc4qDIk(ixm>*E~4z7wQv%o78ata~|? z6Hl@)V${+pPp}0yA_D;`|@bI45@ut(bAoe zmGb6it_ShmQJa-wqBP5Dpf!eYsTt8CD8lBYR_4+m3W zh@bqPP{N-z6tL-k77ksf4-@*9{4{u!d??29k}Dc1A1h=V{jgHE*`#v}ew#Ax+yT<9 zSfS2+2b6S6QWX)~h0>R9g85Zk@`s6UGcz*}8i$-F1RN1H|0aJx=~HRo5%yzFpBb#s zd7@<=3zM(kh}bX{kyrVV&1kg<`nW~uYi*VK0cd2*AU3Apm7r3*zIV16U} zUF1{w+jo?jI-h7gr<(j4=3>j_rV`21;trp^bpQN<7?`WQfiD6b$MaI1yMxhjHYE9- zNaSfrwe4u3hO;Y-_%kvqCJ$)}F406?qy{ zV%~fNXM0=Lu>=S)_G1U#4-R3h$Um{W+bBfSK!Z?xVPLM0&x1E!9sdt|?-|u(x3vp{ z0*Z>Lh)9tlRS*!QcSWQLNSChCyYw0YqM%6cQdNRTmtH~<5s(g{*U&peYN*Ls!Dqi` zf8(6@-SUim#`u2hKMqB5=U#KoKCd~a&x?v^e5Pa=$u>+Oz0Y}H4s?5sR#+3#k!VXjkukf`x^XCL{ zmvN+P-mvOvQY!DWrPZ6`fxKQFVm;Mf1EFd;7MIDcS`HK>s#DIDk9r*BB61eReFF6g z9Ahp}^E@n`>PpNHag}BkSosK4$+!;i9cR#Sd=^?R^jbb1I&7UN5cGp4W7Jh-=I;COW(Fq?Ctke+l{UF&Is{^_jG1nFKNiU zn6AVj8FR}(t#~R_t3#*MJDo<%y{kIiUZ_#rJ%t3P#t4~i^lMolN)YpfoR9Gq$>t4` zSE`D1nJs>N^>cWsyED973mF(A3U^%@z2zSm9PJ-?QJ6LzW}7(Qc5nqdytz7J9!4jH zkm^dQ_LAYCgB%>WtK%y+Rpu#kdVsR**fYqy)=mO1Vw||4!Jewu3RQ*Pw^uHBE|cyR zcX1sa4_O`fsP3jtqJXr8G(q&rPs#0|(%(3BrmU}7qVl0dwj*vlQ20J(8HrDF5>>?K zr#fBMOsBZRDzfTH&Z`IyaH!?>$jn!Ceo5iMJBmytarJbit=mECN}iH4)Vn{B>qa8BMaTC@z-ExG!f}>Q(~(aq zjT7M2feS=-YSHdHNxEW8wDOJN1nZTs0wV}x?GYw}I4AhJ$hTLHD;1kZHSu_eFFg6p zwTf}?^)65&j0(+L&F+1NEE9jSNl8EH}Re9`4A z5jmnW{d5FO7?Bxp=wGQI=DM}|DgvY&&F*u^1YM0yk^l0-^h^;$5)7H4OUH9R^P0ojtf(MV^WD~dNTPru664?g zSf$kc(Nb^TqNq*MDtFDHt`F8YlGvEaIEqdYd`A5lS3IgjV|( z_HVZ*yB$89H^?}NA0NSTXTQmI<6!E?X}L13w%gqNZvee|2VVE^AG5;Rzhnh@*8RVH z)JH!*1d?6vZeetqZ;vY*_dtp@ZFWk`YVc;QNT@%@XIkCbE|Yvi#8ABL238)5YG?k` zFkI}?3_V1r^4YnU@!7nHTO?Zv16IgoX;|GAHE#T!%DzgZMJ(ICgeBKE>NdO1w@l!l zAT?|~*I%2bKYzXPIn{oUu>dbJKMu7`aYYId-p-KG(h)aZ!%v>f2iw@^FqhVF-KZl7 z|E!dHi_YipeFe-u-%jm=l#iE3SFQ1L*Lb|29m#Me#n?8p3%M;@t8UXuUmtPI>HjPj zcoo%)hX6SCbmKT$GYmO_`pB$jU0-Gtb>Z$<`aLC!$7ARY(0J z0LMvM0IgIT{>xgouqg7ys*WS4D|t8 z$E9A&ip9p|*#cQwz5$g~9!0(f(KltzbuY>4R)}P(^3D&w2L;6+& zInPS{iRo9z;GF~^v4@-aD`RCU#n1aP)ic_*_op3+!bjzkMxFp$6AYXm3-ZK=B+H6v zMBCGD#8$|F7m-v_x|O{Sv`+ndd7}1lpOvU8(C4p8Audws?}IFZPOmfL`g>DKu-J@)D9C*%|7A$uo8qdm^d@L_|tv+9K*l>%|w$ z>)q@y7=i7`bxF)^WEi$t-!|KCkFteE_v?#-s+~qXGf|&QJT&+)(^hQ}R9EYq4^AI# zEh65p{_yFoUi9p?0*hGx=M2$5|1Uj)KsiN%F&Ambn&?W07Tw|8(n){`qe>>}$7;Z2kC{$+b!YWMO*vr@&Em zeb${LqKh#k)B*~ty8JMZXDQK(9DYp{?#)p%>VD*cI4lTkgFsR}dVkeL3OjvfYG;lA z8hB9%cn2Qy)uio%$)YtT_YEtfp5TFLjK&*l2XxKfWz3~{zy-!mHM~>kzpcX*MK-Ei zVO5f2Sk!+P9|mUED5PTilP-4%izuB)-ao0!O2tRY*XfPFz=dLG#)uPyyI%B1^w2VM7$OlrwSsgE|6 zKUr%HX43ZOI(d;5I-QaG4kY;kC88CiCzvN&iVPt0*Vugd{^1Y4+|;a10HJ~hX^B%@ z=qk*ldCJ^==I{d0*#lA}#SKQ%PT_PXkkoJFEMJYW#FV?+W;$d}w>zTJ<;j`H66fOB zWqO)~?c9Kaw^Q>G^JjO+f!p)FzeUZISZ3ogZnlLlqv-r%gwIIG?V&9rOyc+X{3_$runzX zSbH}b;-+WNk}O^~ePQHb#TyY?K#{P=Y&ir2B#>#!`hB0@DGva{i>)~w5P$BWaG`k| z2I3W8F?eu>OsWvFjrL?^%fSD-I%3>535>H`sg1ef;J%(4Nswha{gG%T2vHE9_84pG z39D^W#gp)1vm9CpzrvNXl$Ontm+sA;?oi=)Wto1**7)JYx9TOgY4Dl0z4j|8Wq%=NqBeuMc?fl7!xJmH}eFZP3$SvwB{w)aJcVnF@FbZbQ_o zh5gj?-6fDo;mpS$lPK?YRbub>ygd9hP0%yXlkps(q&y3Q2^_3UUZB76f?c4x_ha^Z z-LXWwOC;rlR%`G?uH>qvDtHYixT70J{^7cQSyFz7ENy03LvK{O!2e~jp$P3AA#K=Zd5eP>F@pGh1GrVk-lwr488aqpmR7MKfXgb{SJns|i|URGei)?{>E zz;|YZ+hwWO@o?9{<8xn>TD7hwv_1v>1f-5}nP>Dk_K8-Wu5DxcEJ5b}_8QkM^~R%G zd;pxKV7Z>&7XhL{E)U1~9nmo9z>A8`&PzfA2SlpCPgHG*R(^8NvM-CD_eZ7~EZ3nP zp8m`qKDvIIFuaBi8x@RQH&?HlZy$IF_ha_@NR-`JwGnW*i9)m*;#)RHLT6_O#`zey zNREoV3S3_94SSq97y%bTOmEqjj+Q)pfb*#W@(r>BioHL1ywo$01AZi(3#zX(nE$I0 zcXQPI3Vag2#uz9{p39q>YmvUZv9xU83_|%wC0QLeh81{NU&KY5;e?1OxfA3cxq+wW zHeL|T>n>$f#vX^#?{gh|!!!3ds*z-NZQpG-ML;vUI3ZH&>heH_Y?4!DT1JP&1O=Vjy-$s}I_4kyu@z z6QS=em=2qSqo}1kf$d_J4PB|pkU1?5bZ7(slD2G+XFr;d7rn}%`yj<;J$|MmnL`;m zri$hoJBUYG<@Y^h*Up+C3gKhp!Py8W#MQf@L?JmL_LpS*X*d%k*>Mr{BpGDq^}B0{ zFWS1(nwV^d`FOp5;<4U|ZcLU29w(7BAN{9Xps&(FL1c~pU@5?uWwkPd35yuI4ju93Jtz+GSr>L~nuRydD4bFDYu zo>VY6YS3j~)LdGqySsbi`=(0M;+lzf652Aqs6)@RNS#^sv>DZ5w^oL$5^I}dD$iS| zh$1pz?D`zy1#AOGd&>QyIlMx=bU>6>L_`y zQLsrzlDsE+fgQL_&Q0P-U_oD;3EvV2)+B$Ax;c`$sMu=gzJicu%hp)Gn|a;$hEGs? zDyrUjx~}{Tk9^2HUEVo4Pf`*IOFV`79-LCPu1;)6hNtwPZFg2GHlnn~9Q$j+HZfWJ zCkck7=r;(y9~})nm09_nb|VO{D!tiu2FGdN^1&Y7+S~FH7Lw)e48G1a&1a~k5DqMu z4S4XuoakLxEj#->JPzf7#EV3&OO0fzrAK<9EG@FKfzG`BSg@O2233XqXz}4;VgM~D z!LZ0CNks+Ru(9s_TEl1c7`YZi^2y@t7qe}v&yi|DS8qMKqrkC|B;@dYt395g)zj`Nz3Bu zUG0qGV@t%Ds;j!lCin!%$P&By+6)ycY|7FFkv(^e()sB%n>w=#b! zX!vZc+@_uZGyhned(zcKZ|TCmioy)s#4mx`O4IY_u5#FW(lP_8(&EWU3Ua#7IO2gC z7zJve6_k@^$4Dh&fe#j+Y59iBI`(#9tB0FPvWRJDW)qm?{w#~;{b>ow@03!AuBj0e z15u^S1L~X0=Lc2eHCT)Ztz-HfiDk2<(~k`g87$Dc9db`bZjL3@RVFu8qzT z(KtWK4R&g>-G)7_JLS+=c<*Yi=hk6S?o6B!Hhl4}`Fp$|BBtUEB~T)q#h9Uk0$8WY zfU~m-KuNB9GerfTzlT*TujXYND6YA(f45j3U$!AkY*ocy?CGqHmXFE^3ed94^GX{X zD1MtfCxb0zNRm3em@wCxs(o%jL=>y(c%Kcpy%&4OXh=Z};*!AQRGRss#MUb~6O%@< zaFDg^V^rkDq}`F^&{(>hcjkyNd}~({%M~MtLFZ-C!=4oc(p9ODrj`wv*Ios;6^wyz zf*?HpX(9y0e> z7X($TtMh#Fz7xLWKL;28O@;b@|B4vLv6VfT_@86R?*Jga@#?ekgU4_ z`ep(wdVgJXI&{y;6o>}N=;owb>XD}}>hdq{7EJp{%gQHL1VrzwjB!}@z%J)*rIANi zOkNg(>=zS^cA!SE0pS6?@|dV(P2FWIy|?>>7_sU!!a=~ z9MrwWQ?n4GJUNlSjr``(z_OB4ouPPYPpLbO!2|Acpr^p%TD{K;2H&exDi4o=DN_GZ zQ~VPj{VM&J?3oMD>!Cp_)4e$A2Of)51HZF0=`#o+~5S@8Yffb zR1r=u^r{njsQiv!mB*%Bb)tRbmoIGZ1t6bu^lB%+6HT!L;h|3f1F_xdDax%S%P&b) zN=b1^pM*1y+4v3HUpnB^FK-sFKB92D%5~3*+M#N$*8yRb=#}NQq6lX{Ffv>oMQb2a zZ!oN!EW#`u5E99$SH=RllZSiA6wt6iXB_?DJN{q{_<4dE-V;kU06_euy+mx;_8)WuXGkf5twS5&c z$cLBj)=}aEUGIrgZytpIKE*k21JtsQe55B>&N>Bw))b zv_zMm#IS3H1EgMpQ=*`KObmzi+m21|T$8s`YUPg^nj;wDFr~zYJ9I+yAa54|7Bsc4 z4-OKih>+|oA$U(+$`-RHBjY(Vhy_Ps`j$4r#cVy$ZjJUv{==H@q zmQ!clf7AE-zmvY8pfRA8dlM}P*G6Qh%xilfYmPRCD2#Bi*HH>;IJ5fd?I+)o5{11& zz0pTu8xu!L=~gi<#QW9@W-D>iCLN=-SCV>8zdlDEZH69aq^emT*xL6$bFopFAB!S% zL=d0l{{qeM@*WO;ztJ%0u;z0Za$J%S#SZN(nj6c^=h^Ot`#IbmE=ApLN`9<<7|XAC z%>$$`(qECqZVb4Bp){!?b^v1Is)BT{ciH#`Q5rj2*pJLb3RwS8FdzeUm;#5PrYt`msvua_2pF zV&&pnMp(6Rq$5gdZ%vqT1E?1PkiNGh{}8Lf7Z*g{a;AS<_^$Pi{@&JR!6ya^ zi2JV(G%oC zv<#$G`JD1^zrWl14O87tv*kR{t<~r#jdcz;nZa_364Da5QlrIPxifBQTh-{cU^dM|Aznf$mLGQadf@ zCQ9zVg!F)OcmeT!k44`fD)uOPAk2^qnExG-E#Ft;M6KoSEb*FlL0^-wR3V4^T6y}M zAY~i{`lJ=xsrs0m<{s@7gT7t$eG;0Ro+=}iLNU?jlCxnjh74h+`R13e-^rvZN~;a@ zWiso!{4CvG7W^5cnQgKktn*1TAqBF3EAw$pjyNa4Fnn}6x(VtD(d;_+hf6)i*AkW` z=?<`(Z#pQX5EE*slrbikEDf^@kbuk{^PjlfK`j;oqVUb; zJcwT06>*BP|KI0+I(M+#!iVWsI4XqYB|pffw-og`EI&l8qD>lFH0K|R9%L)bDr}g% zYZ`62PxW=N2O3Tz;yk!YA?aHT6cjPmChV=lfk|7uDiP_zbZ8oDz(qPvY5_Yw2&fA$ zYiv+11SA(D!n6+8Z8fvCVq-ZI;DL=kdnLq}!P8U{h)a>SikLlZuiP*gE|uFU6FjdmDUB#$&vQLTHkWTUp5 zU2Sd(uF5W)C+W?>wCKamItaT40L;AxWngZgp6B+BiM8cMTwN8cuOGH48_{5qqj&xG%jT)$Z} z$v9GAFhT))u>RatTVi*C>^*t_X;%B-?G$3Ip?|GHMUsx=u6ery+C{ovjWK}4k%Lqz zg;xm&Brj9Z(1^aUGBA=`?7Y-_YjHF;ZntJax5Q#$0`r+Y%COwB$Ba_U1|}L{$8=4q z1pqC#mc|=aQQT~%D*HqsV9q-Ww~LThazO3A5P7tX-bSYyE8BMH7=K?%isd$J$OvHA zLHhRxiQV=pN<(pY9orWP^8O6MjwXT-{@rxVbPE8XF*uI6s1HzJBF?`{Jp!!6>gc_5 z*M6e1h|ZB%20EJNM*vjT?9O)XT-q5xy5jo?@cLsI*J)fen`j$V4Clo(5%aDOAlqwv z-g@tbYJ8^ftmTMqAoFDnsp)s`C_mP85XBN-lC|=`U<9mh613=P)7=9;udP8$7VU~ zZS5h;G<1Jx%=|PyK@}@5{bBta=eeH?VNLr(sQN!8McnniaUfGmHh-0BO$=R@5-}$O z6Fq?^$!j+Am~5e2u`@}S5j1SD0f_ciHcjpGPJj)8xz+mFApv&2Y}7l7&lWLQZTC`L zevvg*LBT+zBjc-Ur553SJ}Y2AaphY9oM}rd-mPEm#E&!HB%+A*o>6^O^u9&u)+fBg^qn;@kYr$ddfDQ_QQa(XW@&OpgMJ{OCutp#Z}gWK>}>#a;Wp zMW$xpU<6FSkrebc=_Fl3$`+b5+qjnOM`+!%a#WG7*p5wXFEH{skoLKbjT%}T$%fCg zy|1@{{_180J$$cupD#$sN3nzm3s`PwPy(Fl|4aG|L%Q%-52rK;3UdMAd?Qs|v&o3# z34N{e>S&#K$zQSqr)$Ae%T3^)srjt*2+y)9G&z!2Q$g5iKX_%dM6tB#$Iq?Bq6ZwO znfpI|`egD8p#1=*zeg#5S@0YI&5a?6ZF?*s$xqd)i|SytbKK#Q ztV*Hk_bfpVfl2$Yi+qJROz7GR zcG@9R%%t%$4H?l>s4 zSO-JS+!z5IAW{M%0+v_hqn;Jzmev!YDGmtt0V;(FJHQu3PI z2`sf4Thek$5Vj5laK9%bF-V|to*ipvnuEFq%mHPB>fcDp;^Et$`zzn8A%e|0OP_of zOgt@bi|0S6dJZ;UCDMqywq?%rsBX-*PwyC&TfFsNpVf9;=z8XK8$dk}huwkc(dwB% zwQN)Y^0*EhuKg9JiuY$=>4yr8GvM}ub`^Upmcy`uF_)~}Lv~4}_=Pn==oUk!PFf{S z_xBSs-w<+t3<_w>xCS_!c=&hteAs!uJP&hTEc(cZl)!-==^z{LQ6Ggy09lKThpb!V zmgiGk^Si(Hl1@V-K^XcjAhFoAC0af&UtMwQJ^w4%$6Q>A+^I&A)@z0#Q}gcR-7t?? z7af2Dv)A?j884V}Zh}MTVh1i2q!`Dk@*?T<{{xc;65X}to?C0?>>Id}|8Q+@W9}6b zQJg$PiuQT%nzdPwzDMG^yzu=4S}wBU&5Ya!TX%6b$Ol6ypUfVE`h{P{|6+ST(Y`sM zWchF>Q#ZZv7?I(`_^|pmh|5%7jM54LWZl7Hxk!zD59knBWD^k?))3ziF9Xr`;$nHK zm`e-#s|K5q7Kpwwg_=TX_Ebb%RwF)4Mb*|cCDH3Nb&Qb(Q=3bHyx+IG$8q`9e_vew zO~9vf5HB+2w$7(=&@|>BDefgu3t6qp9Vu;XQttbplvp+>y@q-Ws*&$zs8(=dWDzf$ zO`I;Ga$VkNJk-E59<%nU!xko&qEAG+vi!;q0nY$xTMm@}Mj=pY0N8alBtg|Eg4(F@ zOFZpE9yFLOZC|yWXERpGiMb{Jo;MxfGVUlZSapngD8K&P>AxfjQX(7UXXscLT0y<& z*JoU$oudeYz90@c^*3BaecMxU2ha(+MdUQIZ}gAa>!8eUnDs0HzE)+>63xX7@H@O8 zuZz=CQ*(@zHvNo*Vq%a!Sas!w?C~^6@oO;5_^XtU<Bo)i0XE%2R z`j$ndL@xwiMLcg;I5=hBjY5#KgBpQ%>yNf`30i@{^N1lt^& zt9Rr&;5BA|RYs4Bq9APNuW>n|hkzosKaW$y`w#Zd#C5UVIeD7qTOTMyE>3A3W|7bv z&?I8B(>{G-G7qKsgr5LV(FeJ=XRs~rM2CSc0cgu5vv4VL-<2Exr88pc>L0dzR!ST@ zYAuNXDziC-6HX)Q`UnhAWNk{uqrd?;e&Ld-*$$H<1mRqxp&XZw^X@14<0j}=Ks4ln z9MZeZ%^!XKL|YNJm0vU3Zek7TQIKB+Lp$hckRp#-Ug{Odz%|%{m;`Qe?-q1(@;XRc zUCIIM^ECYmN*3>y16{|>KWmEpr$|HpJ&-vrI|E{RgQQf}JUh@7qmif4o!pu;Y60 z@OUX01t^$B4=z3YSpg~{zfE4)~a-LaV(xY2W|a%;!br?}6O%qVJKAAIO!v zD}ip30j*bie|(yMx&W!KfV3}TJ|USe|BT_t&|uTn0^fBLCs1H?`kR1IoZaE!5j6q5 zoB(p3smM!VhpRfgQUi%0Hh#+UCoU)BNR$ppq?p+b7S(}&<>>-Lt-XraocJ3z^Pmbm z>W$HTTJRuHkh%gYBr@OGd1OyqF2KnN2#K3h&o%uno}MiLPrl^OOLOAHDr$383;Rc0olk7>(_L~~?F9AeU=GPRD3+_yQKS5pX zs<3s#qrX8cDf&EcrgGYq-)%dWu7Q_)_RRG0-yv2x0Z!}S^OpU7OJBSzC~&hU7qSOg z;FaVIgy%wVAHSpuo_f=&BL4Q@dDbq7fi~)%k{wH(-wPbFB<}X~$u%myuT(i8`fI)T z_1{!}0oZDt>g0z54}yV6gDhvvGiMFPeF| z{tl&H=>Y{*{+jYHEi4PJFCYK!Jm^2y_fO{He-;4WFsUDB!do<}c7i)MzrH>GWnWgp zxwfRKW)Ef;H82ZVafx~BZ>R`7zq1rTD@>mMxpmANH^I0dHIp2&BAmtjtXxX>7=sMsxOj`>5X;fQZp#1^*`S|9mC?$N$FN2M$L1<2l;n zBWdGIKsJUP?*wH0FVejMe&y8y#ik#>uS6bP2~+Mhr;|+I`Ny;HagEb8R5pyqympBN zr?y|3KKbLT{jcW`TsjK}NBTVKr~KhpP?O#T1aDU{so2xq7U6WO$ZYr_f#g8dAQzu~yidrMNB5!Iz6Xvp1{ zm%F5VScb$#Hz;Bp(A>_99vd@}9NM7sTC{9|uD*1Y$MM%h-T50_GXtRO{jG%8`tt^p z&AE2m6gV7aEF2k#e_4wD5cm(@?b~krlcoFD9?xIDOfQD}@U&<1LnQzY8+ACyb)4RI zVFHjOhcz6^1&2*&OA%MWB#Fr=%e=V0IPOIyU#+)P*@*@vG8`}k6mSI3k>93oPY?hg zuya8H;ogZD)f}T*)f#GSn$1Y*7`m4k8Hyc+az9~1)nL1sQ_l!K!1H?tyf)|cfZ)Gj zfALPm0jC`?>p~f7>GnD$Z(Yp8WEO0wG|A zn=I&2w@=zM9C}OlqXG<#lE@Er0W}SoGBRtbi3BhX05`P>v>LAes0>&g4flgEtABp9 zwkwiRx+)r&drqyg*m8C_OOweXXa=;N>jLc0J1=_yfW4do0g^!yo%U}Je3iB<$a80T z^^iEGs_(Jgvfcg3Q)qV-0MoxxSYsgS7XFfO13rC2!utV8R5O6Gkwe&P$23*{{m-9b zL-)4JkgcgvpIqz z5Z;Pd-)!V=X_ejKK$R(xDv1q6-$a zF^ambM8Ck+UA)n&f-7&NfW2tUMpkz2uK}qmzf;6Fog73hHF56RS+^91QD@w!D<_sw z!S&%?kW`PwO&9AKUeMsD;!1#o-ET`W0==+MalenXGhi>@ge_V)5Wu|2=br#^#EtEk+xPa^ zRLIiEG+8dSEp(V>(J64$Oses7#X%qP1{}6(XH=U_Tl;f6pd%)KVQq!t#=TS+Gu;#o z(1Y{FwULW=%>WKlI-4+tTU!|+)M-9a1={Twx{VRz9{p1dLBsVMb+V~Ht7Xl@h6 z%udx}i_5pdxl_StjEDVsM%;SI^L?K`7J?*qB!Htgiqz7VHClm(%t7Q%8Kpx! zx@C6NaFpmc^8B@y2rTCAytC3d3U;=Jr1|#woK2wW3td-5y0?41n(TGAzhsehROaiD zp`-V?^os|_BmolceWKU5p)T~76@F7D^A4KGyRxprFD5>~1AuASbv301gUf(U)Wn{{ zJDCRh?Nj~0Woo{q_k_1h;6tX{4%1X5;s7GCLHL@*{M#nF7^?v-5@(T)^^3{ycMy3# z8>i*mvY!A-$PS=wU?c3Bh0I5l+UwRY*>;{BBAFGh#x>D-Jpk!q8f^3svf4b%dqu2s ziQjr`6O^3PL_a3(tPach9qx@SV|JYiy*I~5&9D)HwBaHp)|KXxG!9|R zrqj<;jRBq)k!wze13!u#^+sJGC!ZbnY2(OmZPCo0ZKTeNI2^n<2nqwr)5fb+a(thq-mK9PSaGQciNNYmTq zU>=#iF{g*BB!}XLPL2+2VL1*hY9R;cRur(8-}RuvnvtQyik%0d8l5~QgL3Na>|jlg z!&>G&I+8dxd7rH$i8&Yo|3~vdp`<@`K9to>xXp{h6_8b+jbA zgP$STJ@d>Jw^L#R`sxqC^qkAA8hn2t^K9KV;b3I2a(XK36pdbyYjVz$3WXg|0tJA= zII6zv_a2MlXGm@^0KLq2)JY*#S)bX``{f?QZ6#OP-TcQF9>0$JkyEecyT+;xsQKgCj8hbTiAHxifDMQQy`|NzH+e)cs)gMgU^MJMs24-o)wKnEEIRNB?93p6=SK=9BGg{odCK3~T@vYX= zmIVzhs;>MvJwn9+tKndsLWGViNv!3QT-Wv`90~_FGmqD4hsN!Kz@_p8kkB<~&+Y_G zUMFVcOGCKyl=Bfl_`p`rcgnwYuZ!FbOT$k^L3dUA^YrMj(ZnPrwwqO6-p!KOgrIwC ze(uz00n6Jm=O`lI7nvmn-J^;w$bIqgJ|a_EPw*8i=5^)vg0YI?xs01C`6&j>vO6nl z1#fFHERq<$?%c;P)?%af1b!3HK3X_T{B1B6fMmQY3OB$g*fB5bFXlhN9Kl`_u<5Ba zrut!uE4$Pp*F;LMXVtc`8 z75@FH)_l{(Hk~=oqmLgy0M)@RsBhFHUJ6je7BS37ew)Ww<%;EwkueD)=t1=%0L=m@ zMzLqCR(Ij5cE%C{Ti{0b)Kz1a&bM}JoFn}H{rmPGUtJM7%l2t2lwK1U36iz9KtGNLz~P4(u~NOqR~;X3C?N z>a$^B13-gmoc>kIJ8aOysmRvz>?U9}Zt?WRkp}#O)u>b!TKVs?D$EQ_XYfzOfTd5G zYt!t1PKsl?HQ=^JRC%ed#-vY1auV6mCfb);ZY>QlW)o=mycC6E1Kp28uqI5BcU3pw(FE;H6<&NxkA4jM0x*e4pmB{LD5opG3$l5CM%bW)xxZ!@N%REU~L zFN!i%I`4hXQll!aTwasBR%L9unKx8xWK-RDEkf%tZX3XB>7Eb0v)YDHn)kC-(Q+K* zV@^naatYDZ980{#@dLU?S%REdJ{qo5>XAV@*7+r7{VqM6Wes2leSAqawUn;;YRS}0 zl=9Ct#cZylBf8EeN$g(!t`!27gCxd3^%`9GYg*kuWstwPDLNEnXBSsAOSFdb4B+}_ zExP*k9_rrsvchBB7%a4zl=^_GS3b;?gdPm5taM(Z0i)|faSIzdz(UZ+_=_#pd7bQ+ zlO5Hr_~>}4?#}KTA!+DX@jorm&YqSdA9F*~q257j_jP6B*jE)f6}Q{8iEV3F9YLw;JY|DCwFUFh59>Zwe9&E!iA1h>O?-4;PmkMd|6+%i zsnhd$y(cw^ELqg0Wlc#1f$Hn}SU=TXHXb@)2)&CyCHmv};r3#^yPb3y?6W$Fxafk9 zrI#4>8QM~14MCCB=d&)R3mWadQ#2mk<#yV!zEUi`W2hp2WFxjw)>P!`a$0VYBpbbUgOvvA z3_}J6g$g^({YVQFk2r6~+3KUgS0-^PogMIXmZE_s;0QQ4aAbeZOT!%6dU8)%2Me`v%#NK=grMTDDPc9>$S$-bSs+42U zC%=b>5JlBcq%{S<1v_5YGr#q+z>hki9!x2awY{8bK2}k?S_7J|Sc#!ru$trTJE(_D zo&mV)IDA+=skl(-xYfIrYFbaB%$2S0f-%X64%~OIgBjw%_7LlNux`bV&@0@ql@984 z*z7*loUy5tO0ZM{c(!`nhg;<&S1k1b23DXbcphXK9)_tLs^-8uhKIgc=hgB^9Bmcp z!&&fQ(icVOOO@E^X2XDE+XzK^2ukelM#T%QXUB_~I3}Z2TJZ zE>bG8F2nA0xG%5TzkIA?&ddtfes4m#mVdu-F#{un@YV2aOBCex@o3QGF>4!CFv~tv zOO?oO8Zu8xAfZZfH%Kf`Z`$w-TX{CCT#B?y6k6~-Djct6oy?MCX2?D)V2V53E=*-* zMZR`v@usk=+Uu9gemEPJKoq`#PVXz-N9!>Pj5tS)<^!D!wDn8E^HarlJ41?ZM*2%Z zz*^8O6cP`0LNYny$mERjL@!Y~&2{ARS~xY!P&~*`zEM;rHodY5^a5oCjyG{SAJHPY z7v32Tr0}zzUF%%4iqDV9Kqh>c-=5h$yu}eXgrlZxo_45&0=w-v>V}opfoDavyc9TC zE7D#m?728}l~Fb%h$F8`V6HPYbvvCE*#1^RQwhpL%QmHzSZ5e2yhaftmran~_Yz_3 zQ6r1-FqO3C@a+ZbKgw4k&!>TAo}n!YeP?;^z1dee)y4QQo0l^%Fz?8rB~0awW~Eza zCDdixg@AAd& zkZYU?O&;?}lm;Sh9eHDW2a-RQ?GIT83{y}M;$Pe3l}^i%0xPmUDrv}ew_Y$~#5Qqd z((m2Qi>(D7u+_U(A&G1OdjomYu~s0v!2uQ9*^OG?jZ&FU?8A(T6DLAy9}TX2e+Q+U zZVbuaIU>69LR)6xg;mK&M<>OaK8K&kvLX>!crkL%XYLNZodj5=$X`3AqjGkLh zIN?s94S2l~Ivxaex-@7TDYa;R9C~`>Vhr{{nQ;6lyISL94pLM4q zJCT9IEPq9o!fAnVHex1{(EQqzYl(Iu^r3r`mxs!+HJf&$o(HHx*R+QrH%ZQ}g6-it zMxKtd`~ywl4AMn4X;H!gigPV=xCOQ&P%rafx&CC@MX`|!!|Xd4OiIO)OdP9qv-U#f zZQtnek&MnykF|ykzdpUEA0q}`_&RBM7l9UDi>I6G*sKk?&ci$Ih4sIF*G~Vo{?|KN zI_X|EsRS;7f1>EFEXH%>RSF0i)i~jJoN})d2sn^v3R1DH4EI@N{%n7eRxVZfo|(f! z-5Fq!Tj*wM&s$&_o0^D_yigf4ZORx8BVW!}*w{ zaX4)qr6R%r_Jir9#niqhi1zWCA0tG=o<(HmmGfop_k8*Q^||sup+je=3Dd&#>ycJR4?bmZ&0RG(|WUoNRa6|>mV z8JK~8dKuKK2~WoRXQQ)#K_gz%r$P*Q<%=7S*b>Q1GqGt5MG!qO+?`ik{|Q!{t-#dO z_KY)bl!YCk$Kc*>{WWuyMok&=gA3n|&>=TUkpj!yP+m*KOgXkLaO%}`SUXn?DSbMH zCwh%s_J)JI^Xf1&wRX2WRb<6%{|L}qixsV4IXA!Es8EOGe49RV+F_FAQx=jASX08$ zLBqW>YZTeesFd2OADw(vPMr|aneY7MB)Tam)g2Fh5_+X%5q_`@TF*7;HE&YV7cNNEaRUyeDF2Sp%H?C6W)%rN2#&ai>Sd>y|jDo3dgt7LS2awPi zzR0y<%(aOM2;VtebNd85$f5KCXOa@iG8(;lV%u#A1147Yd-kv@_HwQ zQIO!ccQ$>wS~8xRNRw4|-W4o5%{a}tDb(_=U=wanI~|l)Xh1o&WRd0c^CG1)KZfN? zQVLN?S|n6aRcJ31^pc9?CR%?MHman!Ym3ta5rEQTKx^>Wk00vGu^suqWS2x7dnwkD z*cvhw$pd{qYmD$-Cr-!X97up^mdRUE#bAnCx{c`e^e)ix@Cx$f#ujfXi~iVerj5=0 z5F^2n8?f~ws*{Plc)VF`>*UnHvNQI+WR9}6SWdl%a97(XDW#(8 zfDH9_v{lfj4p4`e@h*YW$Sbe}l#ZQ2;ZBE%il z3=@^65NadS_^c{ZUDIs6fjk~4=I}apHm;&`!x-VZ50Ud%w$&}`(9BM_9e0NXJEwm0sqv1fL4=uF#$$2vP(tLHSO-)gOlA{|H9D)PNV* z&JAXI>N`AuB`Kgv7$ zN_Dc+5oB?L<3TtWiLWMu*Xsro|1UrJ1oFvOEcH(oMoE463Cw?xxBu-hDbrJ6#rB)E zF}S&O00}kibnPLpwJ3ws2X_MS8|K_OuTFU01aQi}wpNSdvwhXT5v^g4<%A~> zF-~+Rc?9@A4qYicOBs~!JQ+BGRP`mGO({lJm`|upqrnk4W=lP9;mFA*0AA(!Uwb1@ z@H!tV!BhHTctelLaN8d+5bs1q%!!DC=SL0#+T#0r;z_vAExiN$xQf~WrIzfZ;(PvY zSdEAa-lO9a~SDW`wM9=<+*|0YBt`r#B98Rj+9CJfHcwQiDtM$lloV z&sjYgw|xr&W=S_xDIx=Q&=(uI@z$I1BxVeVC@EH_ZQW)9D5y=i$`^;>+7ukMV2+y2YC)4 zs4}r-J(;JV1p`D4>P6e&?&*slpmzzpj~^^Y-I^J%_H0z?lw>8oX{+Bon`7Vmg?sAY zfHock8G?pT7n_pVYkPCNP_UBm?nmMiX|32a@THDF`1y}{;U~zy%`#ifJL!Pz1UnU< z#ifI_qa&d`7}+NfjFEG#M8Vj*8RT6)Z8VYBRte#3{>GT%*fl9#D-ppH$yu)-xcnRR zUIfSA3mAJ0B?U|{@QY=`XtT-1EGECd#^o2ktdNRtgzY zbl4jP=|Ix~5to(gq>{gyEJjLg`^$1zPsz2iFZi59bNJ2PdOQRTgNvo=={X4wnoN9n zUBds~~=SfYFft${xV2h<7X5bF_TD0C=9VLy~9tExPFKD%LA;`H^gQ&sC#qQdto7yMKE5 zQj2G+_)Uh-8LY5C^zysry@dSKF0maT$6~*Gw&oYqv7A1`c^jE|ESdyCN;uhcGr@7A z)f#5H+TkeQp6kh=Rdy~FDH5u}XFJTajGceS-O%-nvCuUm^v3f}ln<+QoaElZw8~Vn z+xWX@j1PZ+*3>lMLv+_dYoFZRD_Ij+zS@>tTLyAMTcq}#5@_#7DPqh}ubk2)_Vru? z*OuYEsB|4gjA7~@-_wUY0t6mH1!b^>TX~1udUhZ*?Umg>%P9U%N*-)DjhQLc z;lnX|bOKK8tv#_N2%qanraqu`w>T~bG>kdd^Me%B>7trVpZ!huxuN;Oonh--O7!Rv zJSSOl@A+1I`DA0_G)i8`LS7bSC_c?PpG=l$SLjd|zC;vm)}BD#L<4;etNV1=ou!#w zzFb!J5Gj#84}Y%HAE`9;=Ss3SLQ2B77^#)Kyzmw&Ha7`X`BH?3h*O^jlJ{;Yzu2aq zZMf7%BO4`ZGMZDq*vvDOw7g|O*|dTH6LDr{g5d#X^@)6T*W>8=MXf37o6DP>j3>X# zq>$%k%2qNfP;Wpe2t@^oiU&wg8Vq^5h94x{aTL8@O22S&gA5S@gT)i z-S+}%FE3VRiBK^?gOuhacfTDKee5HlPd6e`f0aM6R%b=}A`ec`h5hd^t{tRp})ru*6`vYPXIgwegVf-Ko0}IDZ&**s5MO zY9I54(qU(;zED^YH6X$z@cJY%OsHG@ax*R+5 z!L3!uG)&XDFH|W`X!n1y_m)vnw`<=ppxA;1D6Mo$BaKLx3?;1~AT6E45SOBKcPJqZ z(m7y)v~+_ANQ1->12glUf82ZDdOi2vOW%7vYds(CFRbfQnK{qnJo0yx4gzz-NIst? zR*X|D%kA94SiX%;Xg6Vmm9ln$ARnZ$y>pATnFOvK8IxQU=*Ima2H7tsc83e@_u^C7 zUvV4v)Q~dP3hfrhi4uviczhHFxE1!F0tj1VMG(M z+|@Hmd^u8%COlMd@}}#gL!iI47GVSywaKRNdSTq(0)WQ5Glx#ytO+>+gRq+~LFLPD zs*K!Yez9OP?+NNK;>BBvd0`|eC3M$}hMO%;7NKw`q#t&PxtM=qh ze?>*uAzTd(=PI8QMo)N;lb3o9nG?eKZGq>kS?Jm#cn^`;37pQMejDfzuPKik!S|oc z-L#%i1IuK~7^y$j*ei<-3jS6lpfMuHgJ~ z;J7q?RoF-S+%-WFadLh-r*7g=2aK!3pi#kG^2q$`;?~y`iF4s#zrs9vXR6NW@NrJ@ z2r66bqNJW)?P#qUup*S5pa%kF+>;Xf-jweA^|^2(F|X$J^#%?Q??$h; ziCdd;j678RZG$UGb-J(vKg$?{3U;5yuq4hFQ&fjrU`1|Or=usd=vE6tGsRCvs7{*3 z4#On_8F(56y=4tB3uN3rZR7sjWYojFCw7bvn_5$GwJ}=}W&oc6u*Eym8_#mWWiV`_u~JENf1CHn zVS%bm+h3LoTB9ba#PopfTZ>D!9Cl%KN}KKtC8HikxYXM*6y^* zIin@uKnSb_$&3C6@xaA2@wx&@B|8%MxxHgr&K9;>lIR18v~Z`c1KqcDgU0p~dzf{* zb~J=I9xJKaLD#Hf1IxVH(y~ZmtEehmR**w!r61pPW=iRaRF12Q`)aN^7LU|8%(#D_ ztj}~?HzG0YLdUsqjNJL7_h(naTV&cj7hWBx8t$d0&pTReWw1&@d`*x|wGJ--Pya#t zpfTy3_bjU9>!3xmIoJ}F>qJ>56aaA9< zu(`Rj&4duz)tXwrWPtH$SUQ!(lo)$Ge9Nb3CL0kiNcM>u`4z1SPaX4-dXWJL^phjL*(PMh;t}oC@HRG z;_L~X&-X?FP&rVNe)Y0iBR@-WrN^b$o?kjD%UrU&;?@kY3)PBSHPZ`?`{rv-E3>t& z2ce+|#HNcBqA~L6bl6m-zD<)+y|<30ps%J6+%mSXo!D4R-&o)QRXQ*?+%+vw3SJTe z;ky&?l2AMtdH=|+ue9lQ0yklB{r=DpLu`-$kg3a(ZNxrHiA^oYU9k%^-h1ke)}`IW zhIJp{hz7RNYUAybZJYR6jd1PoqUuSWN%$@Xq_%d?eiOotmzzu>n~Xo}sGC|2!FmkP zzpY%~Y+ku{?U=mflZ?J~%A``1+HLkB9M=aPm*zvEmAbdw>j*RV(W*yR5JE1UipLn& z!xJu&N$~OXE{P6^v7Vs?7S-r*W%8mzWtQ$hDx;Mi{$e6dHB1C6&iSe{-?K=>_A_VK zA=YZZNXh357#a-Oqplk3dp`N&^VxwrVfb*pxvqjUw4KVVR2ZSWG=AaJe`&d-0KINH z6goElREx=XdpOznW2YL&nH(4EDf(i}gLHDO-Fzz*B`-q|gUyW}dAY}}Xh95itkCLQ zQ7B$-Y7iPJYx3+hM-n;~b85wQO2 z54>N9$U|ZR!o9SrSRwJe$J>~!UUlrA46Jow;B9dJd`kJQ72$y6=1gz*KF9~v=!=JQ zn-OqP=?R8SMBQ&+GE8m(k-^uw@TM@J1LBZH@6O2UNT6jzch@rV?}SnaJev?)ykK22 zc*DFSjb{B^a$0i1${h$aKkQF%U+GjBxw4G1xwee5x@MXEk}N7no{o_{|4b}V-R83a zIx3B5Q(XdiOT3jA*5WMg7`XqY%UK2RYMqTn1lx#Ic?-K zH&C+>W!(JXxv|;A5t@XlA1m95B9LG7?Utaq6iDsh%o!5X^dK`-;F*YzlLj9E-KVsQ zx|a&G^)6q#^V|NGmHK@%kXj~jBtp7A?ntVq&FN=8y?@A^_qe~n>f5} zl%i;ol~bh9ZIIJz^Mii$*Jh^XhlT|VZ{wV8=Bt9SZ&4LVy((&9&vT}Xu6VK<p?S>ptRm-8+0EIncS3;A-gOx?Oy4{RqqO80Tw zOCR=ZVb@s@>?$N#Wo?yDg6`AKcr=7c;$&6R36NK4kROJXe4J z{E;Kv3qY-bHBx|NEVkyPJ#Q~*U<9*Mv|s09b|yr+L=Hmy8!Jk|qdA93;7~m^+hxYt zIkk{s-n$d{P_HTY-CWznA=$Tgot(_TuM?`v#*zOU-JgHkTf?(pWGJ zMD+%V%!TjDbv!Fyr;c+05}o}rgU=vFqA^ud9KGSD-70uie79!y{hqNZixs&fYeKGn zbBf1V({(oSHvhXAZA)rF%86?KNToHsLA>5@pDhn5hF4{zAebSNf2Xt$w;pIvKir7H z-pXVs*-2(o0@_Q}-^yZ~pZzRPBAZ7Q?+W30?$Mj-uW;noP6ycgGRJuR%oK8lCgulX|8J(q$;`HEYj| znm84ifxE-bxM5SJlYwii45%N$gQ1D!sJAlrz621LdnNH%UP2sVsCw)}`O6x&AL