pax_global_header 0000666 0000000 0000000 00000000064 12661745362 0014526 g ustar 00root root 0000000 0000000 52 comment=ebcef766a6b0e243eccb6f2716d52416641d50f7 msmb_theme-1.2.0/ 0000775 0000000 0000000 00000000000 12661745362 0013646 5 ustar 00root root 0000000 0000000 msmb_theme-1.2.0/.gitattributes 0000664 0000000 0000000 00000000044 12661745362 0016537 0 ustar 00root root 0000000 0000000 msmb_theme/_version.py export-subst msmb_theme-1.2.0/.gitignore 0000664 0000000 0000000 00000000076 12661745362 0015641 0 ustar 00root root 0000000 0000000 versioneer.pyc *.egg-info dist build __pycache__ *.pyc .idea/ msmb_theme-1.2.0/.gitmodules 0000664 0000000 0000000 00000000127 12661745362 0016023 0 ustar 00root root 0000000 0000000 [submodule "notebook"] path = notebook url = https://github.com/jupyter/notebook.git msmb_theme-1.2.0/LICENSE 0000664 0000000 0000000 00000002066 12661745362 0014657 0 ustar 00root root 0000000 0000000 The MIT License (MIT) Copyright (c) 2013 Dave Snider 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. msmb_theme-1.2.0/MANIFEST.in 0000664 0000000 0000000 00000000344 12661745362 0015405 0 ustar 00root root 0000000 0000000 include LICENSE recursive-include msmb_theme *.conf recursive-include msmb_theme *.css recursive-include msmb_theme *.html recursive-include msmb_theme *.js include setup.cfg include versioneer.py include msmb_theme/_version.py msmb_theme-1.2.0/README.md 0000664 0000000 0000000 00000001046 12661745362 0015126 0 ustar 00root root 0000000 0000000 `msmb_theme` ============ This applies slight modifications to `sphinx_rtd_theme`. It needs the aforementioned theme to be installed. ### Modifications - Styling tweaks in `msmb.css` - Styling for Jupyter notebooks ### Jupyter CSS Jupyter css is committed to this repository. It is slightly modified from the upstream stylesheet. You can regenerate `jupyer.min.css`: - Ensure the `notebook/` submodule is initialized. - Apply `wrap-notebook-css.patch` to it. - Run `compile_jupyter_less.py` to turn the patched `less` files into `css`. msmb_theme-1.2.0/compile_jupyter_less.py 0000664 0000000 0000000 00000001303 12661745362 0020455 0 ustar 00root root 0000000 0000000 import subprocess import os os.chdir("notebook") # Check for clean submodule unclean = "Please clean up your `notebook/` submodule!" gitout = subprocess.check_output(['git', 'clean', '-ndx']) if gitout == b'Would remove notebook/static/components/\n': pass elif gitout == b'': subprocess.check_call([ 'npm', 'install', '-g', 'bower', 'less', 'less-plugin-clean-css' ]) subprocess.check_call(['bower', 'install']) else: print(gitout) raise RuntimeError(unclean) print("Calling lessc") subprocess.check_call([ 'lessc', '--clean-css', '--include-path="./notebook/static"', 'notebook/static/style/style.less', '../msmb_theme/static/css/jupyter.min.css' ]) msmb_theme-1.2.0/msmb_theme/ 0000775 0000000 0000000 00000000000 12661745362 0015766 5 ustar 00root root 0000000 0000000 msmb_theme-1.2.0/msmb_theme/__init__.py 0000664 0000000 0000000 00000000552 12661745362 0020101 0 ustar 00root root 0000000 0000000 """Sphinx ReadTheDocs theme. From https://github.com/ryan-roemer/sphinx-bootstrap-theme. """ import os def get_html_theme_path(): """Return list of HTML theme paths.""" cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) return cur_dir from ._version import get_versions __version__ = get_versions()['version'] del get_versions msmb_theme-1.2.0/msmb_theme/_version.py 0000664 0000000 0000000 00000036672 12661745362 0020202 0 ustar 00root root 0000000 0000000 # This file helps to compute a version number in source trees obtained from # git-archive tarball (such as those provided by githubs download-from-tag # feature). Distribution tarballs (built by setup.py sdist) and build # directories (produced by setup.py build) will contain a much shorter file # that just contains the computed version number. # This file is released into the public domain. Generated by # versioneer-0.15 (https://github.com/warner/python-versioneer) import errno import os import re import subprocess import sys def get_keywords(): # these strings will be replaced by git during git-archive. # setup.py/versioneer.py will grep for the variable names, so they must # each be defined on a line of their own. _version.py will just call # get_keywords(). git_refnames = " (tag: 1.2.0)" git_full = "ebcef766a6b0e243eccb6f2716d52416641d50f7" keywords = {"refnames": git_refnames, "full": git_full} return keywords class VersioneerConfig: pass def get_config(): # these strings are filled in when 'setup.py versioneer' creates # _version.py cfg = VersioneerConfig() cfg.VCS = "git" cfg.style = "pep440" cfg.tag_prefix = "" cfg.parentdir_prefix = "msmb_theme-" cfg.versionfile_source = "msmb_theme/_version.py" cfg.verbose = False return cfg class NotThisMethod(Exception): pass LONG_VERSION_PY = {} HANDLERS = {} def register_vcs_handler(vcs, method): # decorator def decorate(f): if vcs not in HANDLERS: HANDLERS[vcs] = {} HANDLERS[vcs][method] = f return f return decorate def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False): assert isinstance(commands, list) p = None for c in commands: try: dispcmd = str([c] + args) # remember shell=False, so use git.cmd on windows, not just git p = subprocess.Popen([c] + args, cwd=cwd, stdout=subprocess.PIPE, stderr=(subprocess.PIPE if hide_stderr else None)) break except EnvironmentError: e = sys.exc_info()[1] if e.errno == errno.ENOENT: continue if verbose: print("unable to run %s" % dispcmd) print(e) return None else: if verbose: print("unable to find command, tried %s" % (commands,)) return None stdout = p.communicate()[0].strip() if sys.version_info[0] >= 3: stdout = stdout.decode() if p.returncode != 0: if verbose: print("unable to run %s (error)" % dispcmd) return None return stdout def versions_from_parentdir(parentdir_prefix, root, verbose): # Source tarballs conventionally unpack into a directory that includes # both the project name and a version string. dirname = os.path.basename(root) if not dirname.startswith(parentdir_prefix): if verbose: print("guessing rootdir is '%s', but '%s' doesn't start with " "prefix '%s'" % (root, dirname, parentdir_prefix)) raise NotThisMethod("rootdir doesn't start with parentdir_prefix") return {"version": dirname[len(parentdir_prefix):], "full-revisionid": None, "dirty": False, "error": None} @register_vcs_handler("git", "get_keywords") def git_get_keywords(versionfile_abs): # the code embedded in _version.py can just fetch the value of these # keywords. When used from setup.py, we don't want to import _version.py, # so we do it with a regexp instead. This function is not used from # _version.py. keywords = {} try: f = open(versionfile_abs, "r") for line in f.readlines(): if line.strip().startswith("git_refnames ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["refnames"] = mo.group(1) if line.strip().startswith("git_full ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["full"] = mo.group(1) f.close() except EnvironmentError: pass return keywords @register_vcs_handler("git", "keywords") def git_versions_from_keywords(keywords, tag_prefix, verbose): if not keywords: raise NotThisMethod("no keywords at all, weird") refnames = keywords["refnames"].strip() if refnames.startswith("$Format"): if verbose: print("keywords are unexpanded, not using") raise NotThisMethod("unexpanded keywords, not a git-archive tarball") refs = set([r.strip() for r in refnames.strip("()").split(",")]) # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of # just "foo-1.0". If we see a "tag: " prefix, prefer those. TAG = "tag: " tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)]) if not tags: # Either we're using git < 1.8.3, or there really are no tags. We use # a heuristic: assume all version tags have a digit. The old git %d # expansion behaves like git log --decorate=short and strips out the # refs/heads/ and refs/tags/ prefixes that would let us distinguish # between branches and tags. By ignoring refnames without digits, we # filter out many common branch names like "release" and # "stabilization", as well as "HEAD" and "master". tags = set([r for r in refs if re.search(r'\d', r)]) if verbose: print("discarding '%s', no digits" % ",".join(refs-tags)) if verbose: print("likely tags: %s" % ",".join(sorted(tags))) for ref in sorted(tags): # sorting will prefer e.g. "2.0" over "2.0rc1" if ref.startswith(tag_prefix): r = ref[len(tag_prefix):] if verbose: print("picking %s" % r) return {"version": r, "full-revisionid": keywords["full"].strip(), "dirty": False, "error": None } # no suitable tags, so version is "0+unknown", but full hex is still there if verbose: print("no suitable tags, using unknown + full revision id") return {"version": "0+unknown", "full-revisionid": keywords["full"].strip(), "dirty": False, "error": "no suitable tags"} @register_vcs_handler("git", "pieces_from_vcs") def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command): # this runs 'git' from the root of the source tree. This only gets called # if the git-archive 'subst' keywords were *not* expanded, and # _version.py hasn't already been rewritten with a short version string, # meaning we're inside a checked out source tree. if not os.path.exists(os.path.join(root, ".git")): if verbose: print("no .git in %s" % root) raise NotThisMethod("no .git directory") GITS = ["git"] if sys.platform == "win32": GITS = ["git.cmd", "git.exe"] # if there is a tag, this yields TAG-NUM-gHEX[-dirty] # if there are no tags, this yields HEX[-dirty] (no NUM) describe_out = run_command(GITS, ["describe", "--tags", "--dirty", "--always", "--long"], cwd=root) # --long was added in git-1.5.5 if describe_out is None: raise NotThisMethod("'git describe' failed") describe_out = describe_out.strip() full_out = run_command(GITS, ["rev-parse", "HEAD"], cwd=root) if full_out is None: raise NotThisMethod("'git rev-parse' failed") full_out = full_out.strip() pieces = {} pieces["long"] = full_out pieces["short"] = full_out[:7] # maybe improved later pieces["error"] = None # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] # TAG might have hyphens. git_describe = describe_out # look for -dirty suffix dirty = git_describe.endswith("-dirty") pieces["dirty"] = dirty if dirty: git_describe = git_describe[:git_describe.rindex("-dirty")] # now we have TAG-NUM-gHEX or HEX if "-" in git_describe: # TAG-NUM-gHEX mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) if not mo: # unparseable. Maybe git-describe is misbehaving? pieces["error"] = ("unable to parse git-describe output: '%s'" % describe_out) return pieces # tag full_tag = mo.group(1) if not full_tag.startswith(tag_prefix): if verbose: fmt = "tag '%s' doesn't start with prefix '%s'" print(fmt % (full_tag, tag_prefix)) pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" % (full_tag, tag_prefix)) return pieces pieces["closest-tag"] = full_tag[len(tag_prefix):] # distance: number of commits since tag pieces["distance"] = int(mo.group(2)) # commit: short hex revision ID pieces["short"] = mo.group(3) else: # HEX: no tags pieces["closest-tag"] = None count_out = run_command(GITS, ["rev-list", "HEAD", "--count"], cwd=root) pieces["distance"] = int(count_out) # total number of commits return pieces def plus_or_dot(pieces): if "+" in pieces.get("closest-tag", ""): return "." return "+" def render_pep440(pieces): # now build up version string, with post-release "local version # identifier". Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you # get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty # exceptions: # 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += plus_or_dot(pieces) rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0+untagged.%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_pre(pieces): # TAG[.post.devDISTANCE] . No -dirty # exceptions: # 1: no tags. 0.post.devDISTANCE if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"]: rendered += ".post.dev%d" % pieces["distance"] else: # exception #1 rendered = "0.post.dev%d" % pieces["distance"] return rendered def render_pep440_post(pieces): # TAG[.postDISTANCE[.dev0]+gHEX] . The ".dev0" means dirty. Note that # .dev0 sorts backwards (a dirty tree will appear "older" than the # corresponding clean one), but you shouldn't be releasing software with # -dirty anyways. # exceptions: # 1: no tags. 0.postDISTANCE[.dev0] if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%s" % pieces["short"] else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += "+g%s" % pieces["short"] return rendered def render_pep440_old(pieces): # TAG[.postDISTANCE[.dev0]] . The ".dev0" means dirty. # exceptions: # 1: no tags. 0.postDISTANCE[.dev0] if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" return rendered def render_git_describe(pieces): # TAG[-DISTANCE-gHEX][-dirty], like 'git describe --tags --dirty # --always' # exceptions: # 1: no tags. HEX[-dirty] (note: no 'g' prefix) if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"]: rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render_git_describe_long(pieces): # TAG-DISTANCE-gHEX[-dirty], like 'git describe --tags --dirty # --always -long'. The distance/hash is unconditional. # exceptions: # 1: no tags. HEX[-dirty] (note: no 'g' prefix) if pieces["closest-tag"]: rendered = pieces["closest-tag"] rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render(pieces, style): if pieces["error"]: return {"version": "unknown", "full-revisionid": pieces.get("long"), "dirty": None, "error": pieces["error"]} if not style or style == "default": style = "pep440" # the default if style == "pep440": rendered = render_pep440(pieces) elif style == "pep440-pre": rendered = render_pep440_pre(pieces) elif style == "pep440-post": rendered = render_pep440_post(pieces) elif style == "pep440-old": rendered = render_pep440_old(pieces) elif style == "git-describe": rendered = render_git_describe(pieces) elif style == "git-describe-long": rendered = render_git_describe_long(pieces) else: raise ValueError("unknown style '%s'" % style) return {"version": rendered, "full-revisionid": pieces["long"], "dirty": pieces["dirty"], "error": None} def get_versions(): # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have # __file__, we can work backwards from there to the root. Some # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which # case we can only use expanded keywords. cfg = get_config() verbose = cfg.verbose try: return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, verbose) except NotThisMethod: pass try: root = os.path.realpath(__file__) # versionfile_source is the relative path from the top of the source # tree (where the .git directory might live) to this file. Invert # this to find the root from __file__. for i in cfg.versionfile_source.split('/'): root = os.path.dirname(root) except NameError: return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to find root of source tree"} try: pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) return render(pieces, cfg.style) except NotThisMethod: pass try: if cfg.parentdir_prefix: return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) except NotThisMethod: pass return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to compute version"} msmb_theme-1.2.0/msmb_theme/footer.html 0000664 0000000 0000000 00000000113 12661745362 0020145 0 ustar 00root root 0000000 0000000 {% extends "sphinx_rtd_theme/footer.html" %} {% set show_sphinx = False %} msmb_theme-1.2.0/msmb_theme/layout.html 0000664 0000000 0000000 00000000220 12661745362 0020163 0 ustar 00root root 0000000 0000000 {% extends "sphinx_rtd_theme/layout.html" %} {% set script_files = script_files + ["_static/js/versions.js"] %} {% set show_sphinx = "False" %} msmb_theme-1.2.0/msmb_theme/static/ 0000775 0000000 0000000 00000000000 12661745362 0017255 5 ustar 00root root 0000000 0000000 msmb_theme-1.2.0/msmb_theme/static/css/ 0000775 0000000 0000000 00000000000 12661745362 0020045 5 ustar 00root root 0000000 0000000 msmb_theme-1.2.0/msmb_theme/static/css/jupyter.min.css 0000664 0000000 0000000 00000716706 12661745362 0023064 0 ustar 00root root 0000000 0000000 /*! * * Twitter Bootstrap * */.jupyter{/*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 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 */ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ /*! * * Font Awesome * */ /*! * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /*! * * IPython base * */ /*! * * IPython auth * */ /*! * * IPython tree view * */ /*! * * IPython text editor webapp * */ /*! * * IPython notebook * */ /*! * * IPython notebook webapp * */}.jupyter html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.jupyter body{margin:0}.jupyter article,.jupyter aside,.jupyter details,.jupyter figcaption,.jupyter figure,.jupyter footer,.jupyter header,.jupyter hgroup,.jupyter main,.jupyter menu,.jupyter nav,.jupyter section,.jupyter summary{display:block}.jupyter audio,.jupyter canvas,.jupyter progress,.jupyter video{display:inline-block;vertical-align:baseline}.jupyter audio:not([controls]){display:none;height:0}.jupyter [hidden],.jupyter template{display:none}.jupyter a{background-color:transparent}.jupyter a:active,.jupyter a:hover{outline:0}.jupyter abbr[title]{border-bottom:1px dotted}.jupyter b,.jupyter strong{font-weight:700}.jupyter dfn{font-style:italic}.jupyter h1{font-size:2em;margin:.67em 0}.jupyter mark{background:#ff0;color:#000}.jupyter small{font-size:80%}.jupyter sub,.jupyter sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.jupyter sup{top:-.5em}.jupyter sub{bottom:-.25em}.jupyter img{border:0}.jupyter svg:not(:root){overflow:hidden}.jupyter figure{margin:1em 40px}.jupyter hr{box-sizing:content-box;height:0}.jupyter pre{overflow:auto}.jupyter code,.jupyter kbd,.jupyter pre,.jupyter samp{font-family:monospace,monospace;font-size:1em}.jupyter button,.jupyter input,.jupyter optgroup,.jupyter select,.jupyter textarea{color:inherit;font:inherit;margin:0}.jupyter button{overflow:visible}.jupyter button,.jupyter select{text-transform:none}.jupyter button,.jupyter html input[type=button],.jupyter input[type=reset],.jupyter input[type=submit]{-webkit-appearance:button;cursor:pointer}.jupyter button[disabled],.jupyter html input[disabled]{cursor:default}.jupyter button::-moz-focus-inner,.jupyter input::-moz-focus-inner{border:0;padding:0}.jupyter input{line-height:normal}.jupyter input[type=checkbox],.jupyter input[type=radio]{box-sizing:border-box;padding:0}.jupyter input[type=number]::-webkit-inner-spin-button,.jupyter input[type=number]::-webkit-outer-spin-button{height:auto}.jupyter input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.jupyter input[type=search]::-webkit-search-cancel-button,.jupyter input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.jupyter fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.jupyter legend{border:0;padding:0}.jupyter textarea{overflow:auto}.jupyter optgroup{font-weight:700}.jupyter table{border-collapse:collapse;border-spacing:0}.jupyter td,.jupyter th{padding:0}@media print{.jupyter *,.jupyter :after,.jupyter :before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}.jupyter a,.jupyter a:visited{text-decoration:underline}.jupyter a[href]:after{content:" (" attr(href) ")"}.jupyter abbr[title]:after{content:" (" attr(title) ")"}.jupyter a[href^="javascript:"]:after,.jupyter a[href^="#"]:after{content:""}.jupyter blockquote,.jupyter pre{border:1px solid #999;page-break-inside:avoid}.jupyter thead{display:table-header-group}.jupyter img,.jupyter tr{page-break-inside:avoid}.jupyter img{max-width:100%!important}.jupyter h2,.jupyter h3,.jupyter p{orphans:3;widows:3}.jupyter h2,.jupyter h3{page-break-after:avoid}.jupyter .navbar{display:none}.jupyter .btn>.caret,.jupyter .dropup>.btn>.caret{border-top-color:#000!important}.jupyter .label{border:1px solid #000}.jupyter .table{border-collapse:collapse!important}.jupyter .table td,.jupyter .table th{background-color:#fff!important}.jupyter .table-bordered td,.jupyter .table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../components/bootstrap/fonts/glyphicons-halflings-regular.eot);src:url(../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../components/bootstrap/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../components/bootstrap/fonts/glyphicons-halflings-regular.woff) format('woff'),url(../components/bootstrap/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.jupyter .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;-moz-osx-font-smoothing:grayscale}.jupyter .glyphicon-asterisk:before{content:"\2a"}.jupyter .glyphicon-plus:before{content:"\2b"}.jupyter .glyphicon-eur:before,.jupyter .glyphicon-euro:before{content:"\20ac"}.jupyter .glyphicon-minus:before{content:"\2212"}.jupyter .glyphicon-cloud:before{content:"\2601"}.jupyter .glyphicon-envelope:before{content:"\2709"}.jupyter .glyphicon-pencil:before{content:"\270f"}.jupyter .glyphicon-glass:before{content:"\e001"}.jupyter .glyphicon-music:before{content:"\e002"}.jupyter .glyphicon-search:before{content:"\e003"}.jupyter .glyphicon-heart:before{content:"\e005"}.jupyter .glyphicon-star:before{content:"\e006"}.jupyter .glyphicon-star-empty:before{content:"\e007"}.jupyter .glyphicon-user:before{content:"\e008"}.jupyter .glyphicon-film:before{content:"\e009"}.jupyter .glyphicon-th-large:before{content:"\e010"}.jupyter .glyphicon-th:before{content:"\e011"}.jupyter .glyphicon-th-list:before{content:"\e012"}.jupyter .glyphicon-ok:before{content:"\e013"}.jupyter .glyphicon-remove:before{content:"\e014"}.jupyter .glyphicon-zoom-in:before{content:"\e015"}.jupyter .glyphicon-zoom-out:before{content:"\e016"}.jupyter .glyphicon-off:before{content:"\e017"}.jupyter .glyphicon-signal:before{content:"\e018"}.jupyter .glyphicon-cog:before{content:"\e019"}.jupyter .glyphicon-trash:before{content:"\e020"}.jupyter .glyphicon-home:before{content:"\e021"}.jupyter .glyphicon-file:before{content:"\e022"}.jupyter .glyphicon-time:before{content:"\e023"}.jupyter .glyphicon-road:before{content:"\e024"}.jupyter .glyphicon-download-alt:before{content:"\e025"}.jupyter .glyphicon-download:before{content:"\e026"}.jupyter .glyphicon-upload:before{content:"\e027"}.jupyter .glyphicon-inbox:before{content:"\e028"}.jupyter .glyphicon-play-circle:before{content:"\e029"}.jupyter .glyphicon-repeat:before{content:"\e030"}.jupyter .glyphicon-refresh:before{content:"\e031"}.jupyter .glyphicon-list-alt:before{content:"\e032"}.jupyter .glyphicon-lock:before{content:"\e033"}.jupyter .glyphicon-flag:before{content:"\e034"}.jupyter .glyphicon-headphones:before{content:"\e035"}.jupyter .glyphicon-volume-off:before{content:"\e036"}.jupyter .glyphicon-volume-down:before{content:"\e037"}.jupyter .glyphicon-volume-up:before{content:"\e038"}.jupyter .glyphicon-qrcode:before{content:"\e039"}.jupyter .glyphicon-barcode:before{content:"\e040"}.jupyter .glyphicon-tag:before{content:"\e041"}.jupyter .glyphicon-tags:before{content:"\e042"}.jupyter .glyphicon-book:before{content:"\e043"}.jupyter .glyphicon-bookmark:before{content:"\e044"}.jupyter .glyphicon-print:before{content:"\e045"}.jupyter .glyphicon-camera:before{content:"\e046"}.jupyter .glyphicon-font:before{content:"\e047"}.jupyter .glyphicon-bold:before{content:"\e048"}.jupyter .glyphicon-italic:before{content:"\e049"}.jupyter .glyphicon-text-height:before{content:"\e050"}.jupyter .glyphicon-text-width:before{content:"\e051"}.jupyter .glyphicon-align-left:before{content:"\e052"}.jupyter .glyphicon-align-center:before{content:"\e053"}.jupyter .glyphicon-align-right:before{content:"\e054"}.jupyter .glyphicon-align-justify:before{content:"\e055"}.jupyter .glyphicon-list:before{content:"\e056"}.jupyter .glyphicon-indent-left:before{content:"\e057"}.jupyter .glyphicon-indent-right:before{content:"\e058"}.jupyter .glyphicon-facetime-video:before{content:"\e059"}.jupyter .glyphicon-picture:before{content:"\e060"}.jupyter .glyphicon-map-marker:before{content:"\e062"}.jupyter .glyphicon-adjust:before{content:"\e063"}.jupyter .glyphicon-tint:before{content:"\e064"}.jupyter .glyphicon-edit:before{content:"\e065"}.jupyter .glyphicon-share:before{content:"\e066"}.jupyter .glyphicon-check:before{content:"\e067"}.jupyter .glyphicon-move:before{content:"\e068"}.jupyter .glyphicon-step-backward:before{content:"\e069"}.jupyter .glyphicon-fast-backward:before{content:"\e070"}.jupyter .glyphicon-backward:before{content:"\e071"}.jupyter .glyphicon-play:before{content:"\e072"}.jupyter .glyphicon-pause:before{content:"\e073"}.jupyter .glyphicon-stop:before{content:"\e074"}.jupyter .glyphicon-forward:before{content:"\e075"}.jupyter .glyphicon-fast-forward:before{content:"\e076"}.jupyter .glyphicon-step-forward:before{content:"\e077"}.jupyter .glyphicon-eject:before{content:"\e078"}.jupyter .glyphicon-chevron-left:before{content:"\e079"}.jupyter .glyphicon-chevron-right:before{content:"\e080"}.jupyter .glyphicon-plus-sign:before{content:"\e081"}.jupyter .glyphicon-minus-sign:before{content:"\e082"}.jupyter .glyphicon-remove-sign:before{content:"\e083"}.jupyter .glyphicon-ok-sign:before{content:"\e084"}.jupyter .glyphicon-question-sign:before{content:"\e085"}.jupyter .glyphicon-info-sign:before{content:"\e086"}.jupyter .glyphicon-screenshot:before{content:"\e087"}.jupyter .glyphicon-remove-circle:before{content:"\e088"}.jupyter .glyphicon-ok-circle:before{content:"\e089"}.jupyter .glyphicon-ban-circle:before{content:"\e090"}.jupyter .glyphicon-arrow-left:before{content:"\e091"}.jupyter .glyphicon-arrow-right:before{content:"\e092"}.jupyter .glyphicon-arrow-up:before{content:"\e093"}.jupyter .glyphicon-arrow-down:before{content:"\e094"}.jupyter .glyphicon-share-alt:before{content:"\e095"}.jupyter .glyphicon-resize-full:before{content:"\e096"}.jupyter .glyphicon-resize-small:before{content:"\e097"}.jupyter .glyphicon-exclamation-sign:before{content:"\e101"}.jupyter .glyphicon-gift:before{content:"\e102"}.jupyter .glyphicon-leaf:before{content:"\e103"}.jupyter .glyphicon-fire:before{content:"\e104"}.jupyter .glyphicon-eye-open:before{content:"\e105"}.jupyter .glyphicon-eye-close:before{content:"\e106"}.jupyter .glyphicon-warning-sign:before{content:"\e107"}.jupyter .glyphicon-plane:before{content:"\e108"}.jupyter .glyphicon-calendar:before{content:"\e109"}.jupyter .glyphicon-random:before{content:"\e110"}.jupyter .glyphicon-comment:before{content:"\e111"}.jupyter .glyphicon-magnet:before{content:"\e112"}.jupyter .glyphicon-chevron-up:before{content:"\e113"}.jupyter .glyphicon-chevron-down:before{content:"\e114"}.jupyter .glyphicon-retweet:before{content:"\e115"}.jupyter .glyphicon-shopping-cart:before{content:"\e116"}.jupyter .glyphicon-folder-close:before{content:"\e117"}.jupyter .glyphicon-folder-open:before{content:"\e118"}.jupyter .glyphicon-resize-vertical:before{content:"\e119"}.jupyter .glyphicon-resize-horizontal:before{content:"\e120"}.jupyter .glyphicon-hdd:before{content:"\e121"}.jupyter .glyphicon-bullhorn:before{content:"\e122"}.jupyter .glyphicon-bell:before{content:"\e123"}.jupyter .glyphicon-certificate:before{content:"\e124"}.jupyter .glyphicon-thumbs-up:before{content:"\e125"}.jupyter .glyphicon-thumbs-down:before{content:"\e126"}.jupyter .glyphicon-hand-right:before{content:"\e127"}.jupyter .glyphicon-hand-left:before{content:"\e128"}.jupyter .glyphicon-hand-up:before{content:"\e129"}.jupyter .glyphicon-hand-down:before{content:"\e130"}.jupyter .glyphicon-circle-arrow-right:before{content:"\e131"}.jupyter .glyphicon-circle-arrow-left:before{content:"\e132"}.jupyter .glyphicon-circle-arrow-up:before{content:"\e133"}.jupyter .glyphicon-circle-arrow-down:before{content:"\e134"}.jupyter .glyphicon-globe:before{content:"\e135"}.jupyter .glyphicon-wrench:before{content:"\e136"}.jupyter .glyphicon-tasks:before{content:"\e137"}.jupyter .glyphicon-filter:before{content:"\e138"}.jupyter .glyphicon-briefcase:before{content:"\e139"}.jupyter .glyphicon-fullscreen:before{content:"\e140"}.jupyter .glyphicon-dashboard:before{content:"\e141"}.jupyter .glyphicon-paperclip:before{content:"\e142"}.jupyter .glyphicon-heart-empty:before{content:"\e143"}.jupyter .glyphicon-link:before{content:"\e144"}.jupyter .glyphicon-phone:before{content:"\e145"}.jupyter .glyphicon-pushpin:before{content:"\e146"}.jupyter .glyphicon-usd:before{content:"\e148"}.jupyter .glyphicon-gbp:before{content:"\e149"}.jupyter .glyphicon-sort:before{content:"\e150"}.jupyter .glyphicon-sort-by-alphabet:before{content:"\e151"}.jupyter .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.jupyter .glyphicon-sort-by-order:before{content:"\e153"}.jupyter .glyphicon-sort-by-order-alt:before{content:"\e154"}.jupyter .glyphicon-sort-by-attributes:before{content:"\e155"}.jupyter .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.jupyter .glyphicon-unchecked:before{content:"\e157"}.jupyter .glyphicon-expand:before{content:"\e158"}.jupyter .glyphicon-collapse-down:before{content:"\e159"}.jupyter .glyphicon-collapse-up:before{content:"\e160"}.jupyter .glyphicon-log-in:before{content:"\e161"}.jupyter .glyphicon-flash:before{content:"\e162"}.jupyter .glyphicon-log-out:before{content:"\e163"}.jupyter .glyphicon-new-window:before{content:"\e164"}.jupyter .glyphicon-record:before{content:"\e165"}.jupyter .glyphicon-save:before{content:"\e166"}.jupyter .glyphicon-open:before{content:"\e167"}.jupyter .glyphicon-saved:before{content:"\e168"}.jupyter .glyphicon-import:before{content:"\e169"}.jupyter .glyphicon-export:before{content:"\e170"}.jupyter .glyphicon-send:before{content:"\e171"}.jupyter .glyphicon-floppy-disk:before{content:"\e172"}.jupyter .glyphicon-floppy-saved:before{content:"\e173"}.jupyter .glyphicon-floppy-remove:before{content:"\e174"}.jupyter .glyphicon-floppy-save:before{content:"\e175"}.jupyter .glyphicon-floppy-open:before{content:"\e176"}.jupyter .glyphicon-credit-card:before{content:"\e177"}.jupyter .glyphicon-transfer:before{content:"\e178"}.jupyter .glyphicon-cutlery:before{content:"\e179"}.jupyter .glyphicon-header:before{content:"\e180"}.jupyter .glyphicon-compressed:before{content:"\e181"}.jupyter .glyphicon-earphone:before{content:"\e182"}.jupyter .glyphicon-phone-alt:before{content:"\e183"}.jupyter .glyphicon-tower:before{content:"\e184"}.jupyter .glyphicon-stats:before{content:"\e185"}.jupyter .glyphicon-sd-video:before{content:"\e186"}.jupyter .glyphicon-hd-video:before{content:"\e187"}.jupyter .glyphicon-subtitles:before{content:"\e188"}.jupyter .glyphicon-sound-stereo:before{content:"\e189"}.jupyter .glyphicon-sound-dolby:before{content:"\e190"}.jupyter .glyphicon-sound-5-1:before{content:"\e191"}.jupyter .glyphicon-sound-6-1:before{content:"\e192"}.jupyter .glyphicon-sound-7-1:before{content:"\e193"}.jupyter .glyphicon-copyright-mark:before{content:"\e194"}.jupyter .glyphicon-registration-mark:before{content:"\e195"}.jupyter .glyphicon-cloud-download:before{content:"\e197"}.jupyter .glyphicon-cloud-upload:before{content:"\e198"}.jupyter .glyphicon-tree-conifer:before{content:"\e199"}.jupyter .glyphicon-tree-deciduous:before{content:"\e200"}.jupyter .glyphicon-cd:before{content:"\e201"}.jupyter .glyphicon-save-file:before{content:"\e202"}.jupyter .glyphicon-open-file:before{content:"\e203"}.jupyter .glyphicon-level-up:before{content:"\e204"}.jupyter .glyphicon-copy:before{content:"\e205"}.jupyter .glyphicon-paste:before{content:"\e206"}.jupyter .glyphicon-alert:before{content:"\e209"}.jupyter .glyphicon-equalizer:before{content:"\e210"}.jupyter .glyphicon-king:before{content:"\e211"}.jupyter .glyphicon-queen:before{content:"\e212"}.jupyter .glyphicon-pawn:before{content:"\e213"}.jupyter .glyphicon-bishop:before{content:"\e214"}.jupyter .glyphicon-knight:before{content:"\e215"}.jupyter .glyphicon-baby-formula:before{content:"\e216"}.jupyter .glyphicon-tent:before{content:"\26fa"}.jupyter .glyphicon-blackboard:before{content:"\e218"}.jupyter .glyphicon-bed:before{content:"\e219"}.jupyter .glyphicon-apple:before{content:"\f8ff"}.jupyter .glyphicon-erase:before{content:"\e221"}.jupyter .glyphicon-hourglass:before{content:"\231b"}.jupyter .glyphicon-lamp:before{content:"\e223"}.jupyter .glyphicon-duplicate:before{content:"\e224"}.jupyter .glyphicon-piggy-bank:before{content:"\e225"}.jupyter .glyphicon-scissors:before{content:"\e226"}.jupyter .glyphicon-bitcoin:before{content:"\e227"}.jupyter .glyphicon-btc:before{content:"\e227"}.jupyter .glyphicon-xbt:before{content:"\e227"}.jupyter .glyphicon-yen:before{content:"\00a5"}.jupyter .glyphicon-jpy:before{content:"\00a5"}.jupyter .glyphicon-ruble:before{content:"\20bd"}.jupyter .glyphicon-rub:before{content:"\20bd"}.jupyter .glyphicon-scale:before{content:"\e230"}.jupyter .glyphicon-ice-lolly:before{content:"\e231"}.jupyter .glyphicon-ice-lolly-tasted:before{content:"\e232"}.jupyter .glyphicon-education:before{content:"\e233"}.jupyter .glyphicon-option-horizontal:before{content:"\e234"}.jupyter .glyphicon-option-vertical:before{content:"\e235"}.jupyter .glyphicon-menu-hamburger:before{content:"\e236"}.jupyter .glyphicon-modal-window:before{content:"\e237"}.jupyter .glyphicon-oil:before{content:"\e238"}.jupyter .glyphicon-grain:before{content:"\e239"}.jupyter .glyphicon-sunglasses:before{content:"\e240"}.jupyter .glyphicon-text-size:before{content:"\e241"}.jupyter .glyphicon-text-color:before{content:"\e242"}.jupyter .glyphicon-text-background:before{content:"\e243"}.jupyter .glyphicon-object-align-top:before{content:"\e244"}.jupyter .glyphicon-object-align-bottom:before{content:"\e245"}.jupyter .glyphicon-object-align-horizontal:before{content:"\e246"}.jupyter .glyphicon-object-align-left:before{content:"\e247"}.jupyter .glyphicon-object-align-vertical:before{content:"\e248"}.jupyter .glyphicon-object-align-right:before{content:"\e249"}.jupyter .glyphicon-triangle-right:before{content:"\e250"}.jupyter .glyphicon-triangle-left:before{content:"\e251"}.jupyter .glyphicon-triangle-bottom:before{content:"\e252"}.jupyter .glyphicon-triangle-top:before{content:"\e253"}.jupyter .glyphicon-console:before{content:"\e254"}.jupyter .glyphicon-superscript:before{content:"\e255"}.jupyter .glyphicon-subscript:before{content:"\e256"}.jupyter .glyphicon-menu-left:before{content:"\e257"}.jupyter .glyphicon-menu-right:before{content:"\e258"}.jupyter .glyphicon-menu-down:before{content:"\e259"}.jupyter .glyphicon-menu-up:before{content:"\e260"}.jupyter *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.jupyter :after,.jupyter :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.jupyter html{font-size:10px;-webkit-tap-highlight-color:transparent}.jupyter body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}.jupyter button,.jupyter input,.jupyter select,.jupyter textarea{font-family:inherit;font-size:inherit;line-height:inherit}.jupyter a{color:#337ab7;text-decoration:none}.jupyter a:focus,.jupyter a:hover{color:#23527c;text-decoration:underline}.jupyter a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.jupyter figure{margin:0}.jupyter img{vertical-align:middle}.jupyter .img-responsive{display:block;max-width:100%;height:auto}.jupyter .img-rounded{border-radius:3px}.jupyter .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:2px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.jupyter .img-circle{border-radius:50%}.jupyter hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.jupyter .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.jupyter .sr-only-focusable:active,.jupyter .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.jupyter [role=button]{cursor:pointer}.jupyter .h1,.jupyter .h2,.jupyter .h3,.jupyter .h4,.jupyter .h5,.jupyter .h6,.jupyter h1,.jupyter h2,.jupyter h3,.jupyter h4,.jupyter h5,.jupyter h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.jupyter .h1 .small,.jupyter .h1 small,.jupyter .h2 .small,.jupyter .h2 small,.jupyter .h3 .small,.jupyter .h3 small,.jupyter .h4 .small,.jupyter .h4 small,.jupyter .h5 .small,.jupyter .h5 small,.jupyter .h6 .small,.jupyter .h6 small,.jupyter h1 .small,.jupyter h1 small,.jupyter h2 .small,.jupyter h2 small,.jupyter h3 .small,.jupyter h3 small,.jupyter h4 .small,.jupyter h4 small,.jupyter h5 .small,.jupyter h5 small,.jupyter h6 .small,.jupyter h6 small{font-weight:400;line-height:1;color:#777}.jupyter .h1,.jupyter .h2,.jupyter .h3,.jupyter h1,.jupyter h2,.jupyter h3{margin-top:18px;margin-bottom:9px}.jupyter .h1 .small,.jupyter .h1 small,.jupyter .h2 .small,.jupyter .h2 small,.jupyter .h3 .small,.jupyter .h3 small,.jupyter h1 .small,.jupyter h1 small,.jupyter h2 .small,.jupyter h2 small,.jupyter h3 .small,.jupyter h3 small{font-size:65%}.jupyter .h4,.jupyter .h5,.jupyter .h6,.jupyter h4,.jupyter h5,.jupyter h6{margin-top:9px;margin-bottom:9px}.jupyter .h4 .small,.jupyter .h4 small,.jupyter .h5 .small,.jupyter .h5 small,.jupyter .h6 .small,.jupyter .h6 small,.jupyter h4 .small,.jupyter h4 small,.jupyter h5 .small,.jupyter h5 small,.jupyter h6 .small,.jupyter h6 small{font-size:75%}.jupyter .h1,.jupyter h1{font-size:33px}.jupyter .h2,.jupyter h2{font-size:27px}.jupyter .h3,.jupyter h3{font-size:23px}.jupyter .h4,.jupyter h4{font-size:17px}.jupyter .h5,.jupyter h5{font-size:13px}.jupyter .h6,.jupyter h6{font-size:12px}.jupyter p{margin:0 0 9px}.jupyter .lead{margin-bottom:18px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width:768px){.jupyter .lead{font-size:19.5px}}.jupyter .small,.jupyter small{font-size:92%}.jupyter .mark,.jupyter mark{background-color:#fcf8e3;padding:.2em}.jupyter .text-left{text-align:left}.jupyter .text-right{text-align:right}.jupyter .text-center{text-align:center}.jupyter .text-justify{text-align:justify}.jupyter .text-nowrap{white-space:nowrap}.jupyter .text-lowercase{text-transform:lowercase}.jupyter .text-uppercase{text-transform:uppercase}.jupyter .text-capitalize{text-transform:capitalize}.jupyter .text-muted{color:#777}.jupyter .text-primary{color:#337ab7}a.jupyter .text-primary:focus,a.jupyter .text-primary:hover{color:#286090}.jupyter .text-success{color:#3c763d}a.jupyter .text-success:focus,a.jupyter .text-success:hover{color:#2b542c}.jupyter .text-info{color:#31708f}a.jupyter .text-info:focus,a.jupyter .text-info:hover{color:#245269}.jupyter .text-warning{color:#8a6d3b}a.jupyter .text-warning:focus,a.jupyter .text-warning:hover{color:#66512c}.jupyter .text-danger{color:#a94442}a.jupyter .text-danger:focus,a.jupyter .text-danger:hover{color:#843534}.jupyter .bg-primary{color:#fff;background-color:#337ab7}a.jupyter .bg-primary:focus,a.jupyter .bg-primary:hover{background-color:#286090}.jupyter .bg-success{background-color:#dff0d8}a.jupyter .bg-success:focus,a.jupyter .bg-success:hover{background-color:#c1e2b3}.jupyter .bg-info{background-color:#d9edf7}a.jupyter .bg-info:focus,a.jupyter .bg-info:hover{background-color:#afd9ee}.jupyter .bg-warning{background-color:#fcf8e3}a.jupyter .bg-warning:focus,a.jupyter .bg-warning:hover{background-color:#f7ecb5}.jupyter .bg-danger{background-color:#f2dede}a.jupyter .bg-danger:focus,a.jupyter .bg-danger:hover{background-color:#e4b9b9}.jupyter .page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}.jupyter ol,.jupyter ul{margin-top:0;margin-bottom:9px}.jupyter ol ol,.jupyter ol ul,.jupyter ul ol,.jupyter ul ul{margin-bottom:0}.jupyter .list-unstyled{padding-left:0;list-style:none}.jupyter .list-inline{padding-left:0;list-style:none;margin-left:-5px}.jupyter .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.jupyter dl{margin-top:0;margin-bottom:18px}.jupyter dd,.jupyter dt{line-height:1.42857143}.jupyter dt{font-weight:700}.jupyter dd{margin-left:0}@media (min-width:541px){.jupyter .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.jupyter .dl-horizontal dd{margin-left:180px}}.jupyter abbr[data-original-title],.jupyter abbr[title]{cursor:help;border-bottom:1px dotted #777}.jupyter .initialism{font-size:90%;text-transform:uppercase}.jupyter blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}.jupyter blockquote ol:last-child,.jupyter blockquote p:last-child,.jupyter blockquote ul:last-child{margin-bottom:0}.jupyter blockquote .small,.jupyter blockquote footer,.jupyter blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}.jupyter blockquote .small:before,.jupyter blockquote footer:before,.jupyter blockquote small:before{content:'\2014 \00A0'}.jupyter .blockquote-reverse,.jupyter blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.jupyter .blockquote-reverse .small:before,.jupyter .blockquote-reverse footer:before,.jupyter .blockquote-reverse small:before,.jupyter blockquote.pull-right .small:before,.jupyter blockquote.pull-right footer:before,.jupyter blockquote.pull-right small:before{content:''}.jupyter .blockquote-reverse .small:after,.jupyter .blockquote-reverse footer:after,.jupyter .blockquote-reverse small:after,.jupyter blockquote.pull-right .small:after,.jupyter blockquote.pull-right footer:after,.jupyter blockquote.pull-right small:after{content:'\00A0 \2014'}.jupyter address{margin-bottom:18px;font-style:normal;line-height:1.42857143}.jupyter code,.jupyter kbd,.jupyter pre,.jupyter samp{font-family:monospace}.jupyter code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}.jupyter kbd{padding:2px 4px;font-size:90%;color:#888;background-color:transparent;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}.jupyter kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}.jupyter pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:2px}.jupyter pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.jupyter .pre-scrollable{max-height:340px;overflow-y:scroll}.jupyter .container{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}@media (min-width:768px){.jupyter .container{width:768px}}@media (min-width:992px){.jupyter .container{width:940px}}@media (min-width:1200px){.jupyter .container{width:1140px}}.jupyter .container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}.jupyter .row{margin-left:0;margin-right:0}.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-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,.jupyter .col-xs-1{position:relative;min-height:1px;padding-left:0;padding-right:0}.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,.jupyter .col-xs-1{float:left}.jupyter .col-xs-12{width:100%}.jupyter .col-xs-11{width:91.66666667%}.jupyter .col-xs-10{width:83.33333333%}.jupyter .col-xs-9{width:75%}.jupyter .col-xs-8{width:66.66666667%}.jupyter .col-xs-7{width:58.33333333%}.jupyter .col-xs-6{width:50%}.jupyter .col-xs-5{width:41.66666667%}.jupyter .col-xs-4{width:33.33333333%}.jupyter .col-xs-3{width:25%}.jupyter .col-xs-2{width:16.66666667%}.jupyter .col-xs-1{width:8.33333333%}.jupyter .col-xs-pull-12{right:100%}.jupyter .col-xs-pull-11{right:91.66666667%}.jupyter .col-xs-pull-10{right:83.33333333%}.jupyter .col-xs-pull-9{right:75%}.jupyter .col-xs-pull-8{right:66.66666667%}.jupyter .col-xs-pull-7{right:58.33333333%}.jupyter .col-xs-pull-6{right:50%}.jupyter .col-xs-pull-5{right:41.66666667%}.jupyter .col-xs-pull-4{right:33.33333333%}.jupyter .col-xs-pull-3{right:25%}.jupyter .col-xs-pull-2{right:16.66666667%}.jupyter .col-xs-pull-1{right:8.33333333%}.jupyter .col-xs-pull-0{right:auto}.jupyter .col-xs-push-12{left:100%}.jupyter .col-xs-push-11{left:91.66666667%}.jupyter .col-xs-push-10{left:83.33333333%}.jupyter .col-xs-push-9{left:75%}.jupyter .col-xs-push-8{left:66.66666667%}.jupyter .col-xs-push-7{left:58.33333333%}.jupyter .col-xs-push-6{left:50%}.jupyter .col-xs-push-5{left:41.66666667%}.jupyter .col-xs-push-4{left:33.33333333%}.jupyter .col-xs-push-3{left:25%}.jupyter .col-xs-push-2{left:16.66666667%}.jupyter .col-xs-push-1{left:8.33333333%}.jupyter .col-xs-push-0{left:auto}.jupyter .col-xs-offset-12{margin-left:100%}.jupyter .col-xs-offset-11{margin-left:91.66666667%}.jupyter .col-xs-offset-10{margin-left:83.33333333%}.jupyter .col-xs-offset-9{margin-left:75%}.jupyter .col-xs-offset-8{margin-left:66.66666667%}.jupyter .col-xs-offset-7{margin-left:58.33333333%}.jupyter .col-xs-offset-6{margin-left:50%}.jupyter .col-xs-offset-5{margin-left:41.66666667%}.jupyter .col-xs-offset-4{margin-left:33.33333333%}.jupyter .col-xs-offset-3{margin-left:25%}.jupyter .col-xs-offset-2{margin-left:16.66666667%}.jupyter .col-xs-offset-1{margin-left:8.33333333%}.jupyter .col-xs-offset-0{margin-left:0}@media (min-width:768px){.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,.jupyter .col-sm-1{float:left}.jupyter .col-sm-12{width:100%}.jupyter .col-sm-11{width:91.66666667%}.jupyter .col-sm-10{width:83.33333333%}.jupyter .col-sm-9{width:75%}.jupyter .col-sm-8{width:66.66666667%}.jupyter .col-sm-7{width:58.33333333%}.jupyter .col-sm-6{width:50%}.jupyter .col-sm-5{width:41.66666667%}.jupyter .col-sm-4{width:33.33333333%}.jupyter .col-sm-3{width:25%}.jupyter .col-sm-2{width:16.66666667%}.jupyter .col-sm-1{width:8.33333333%}.jupyter .col-sm-pull-12{right:100%}.jupyter .col-sm-pull-11{right:91.66666667%}.jupyter .col-sm-pull-10{right:83.33333333%}.jupyter .col-sm-pull-9{right:75%}.jupyter .col-sm-pull-8{right:66.66666667%}.jupyter .col-sm-pull-7{right:58.33333333%}.jupyter .col-sm-pull-6{right:50%}.jupyter .col-sm-pull-5{right:41.66666667%}.jupyter .col-sm-pull-4{right:33.33333333%}.jupyter .col-sm-pull-3{right:25%}.jupyter .col-sm-pull-2{right:16.66666667%}.jupyter .col-sm-pull-1{right:8.33333333%}.jupyter .col-sm-pull-0{right:auto}.jupyter .col-sm-push-12{left:100%}.jupyter .col-sm-push-11{left:91.66666667%}.jupyter .col-sm-push-10{left:83.33333333%}.jupyter .col-sm-push-9{left:75%}.jupyter .col-sm-push-8{left:66.66666667%}.jupyter .col-sm-push-7{left:58.33333333%}.jupyter .col-sm-push-6{left:50%}.jupyter .col-sm-push-5{left:41.66666667%}.jupyter .col-sm-push-4{left:33.33333333%}.jupyter .col-sm-push-3{left:25%}.jupyter .col-sm-push-2{left:16.66666667%}.jupyter .col-sm-push-1{left:8.33333333%}.jupyter .col-sm-push-0{left:auto}.jupyter .col-sm-offset-12{margin-left:100%}.jupyter .col-sm-offset-11{margin-left:91.66666667%}.jupyter .col-sm-offset-10{margin-left:83.33333333%}.jupyter .col-sm-offset-9{margin-left:75%}.jupyter .col-sm-offset-8{margin-left:66.66666667%}.jupyter .col-sm-offset-7{margin-left:58.33333333%}.jupyter .col-sm-offset-6{margin-left:50%}.jupyter .col-sm-offset-5{margin-left:41.66666667%}.jupyter .col-sm-offset-4{margin-left:33.33333333%}.jupyter .col-sm-offset-3{margin-left:25%}.jupyter .col-sm-offset-2{margin-left:16.66666667%}.jupyter .col-sm-offset-1{margin-left:8.33333333%}.jupyter .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.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,.jupyter .col-md-1{float:left}.jupyter .col-md-12{width:100%}.jupyter .col-md-11{width:91.66666667%}.jupyter .col-md-10{width:83.33333333%}.jupyter .col-md-9{width:75%}.jupyter .col-md-8{width:66.66666667%}.jupyter .col-md-7{width:58.33333333%}.jupyter .col-md-6{width:50%}.jupyter .col-md-5{width:41.66666667%}.jupyter .col-md-4{width:33.33333333%}.jupyter .col-md-3{width:25%}.jupyter .col-md-2{width:16.66666667%}.jupyter .col-md-1{width:8.33333333%}.jupyter .col-md-pull-12{right:100%}.jupyter .col-md-pull-11{right:91.66666667%}.jupyter .col-md-pull-10{right:83.33333333%}.jupyter .col-md-pull-9{right:75%}.jupyter .col-md-pull-8{right:66.66666667%}.jupyter .col-md-pull-7{right:58.33333333%}.jupyter .col-md-pull-6{right:50%}.jupyter .col-md-pull-5{right:41.66666667%}.jupyter .col-md-pull-4{right:33.33333333%}.jupyter .col-md-pull-3{right:25%}.jupyter .col-md-pull-2{right:16.66666667%}.jupyter .col-md-pull-1{right:8.33333333%}.jupyter .col-md-pull-0{right:auto}.jupyter .col-md-push-12{left:100%}.jupyter .col-md-push-11{left:91.66666667%}.jupyter .col-md-push-10{left:83.33333333%}.jupyter .col-md-push-9{left:75%}.jupyter .col-md-push-8{left:66.66666667%}.jupyter .col-md-push-7{left:58.33333333%}.jupyter .col-md-push-6{left:50%}.jupyter .col-md-push-5{left:41.66666667%}.jupyter .col-md-push-4{left:33.33333333%}.jupyter .col-md-push-3{left:25%}.jupyter .col-md-push-2{left:16.66666667%}.jupyter .col-md-push-1{left:8.33333333%}.jupyter .col-md-push-0{left:auto}.jupyter .col-md-offset-12{margin-left:100%}.jupyter .col-md-offset-11{margin-left:91.66666667%}.jupyter .col-md-offset-10{margin-left:83.33333333%}.jupyter .col-md-offset-9{margin-left:75%}.jupyter .col-md-offset-8{margin-left:66.66666667%}.jupyter .col-md-offset-7{margin-left:58.33333333%}.jupyter .col-md-offset-6{margin-left:50%}.jupyter .col-md-offset-5{margin-left:41.66666667%}.jupyter .col-md-offset-4{margin-left:33.33333333%}.jupyter .col-md-offset-3{margin-left:25%}.jupyter .col-md-offset-2{margin-left:16.66666667%}.jupyter .col-md-offset-1{margin-left:8.33333333%}.jupyter .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.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,.jupyter .col-lg-1{float:left}.jupyter .col-lg-12{width:100%}.jupyter .col-lg-11{width:91.66666667%}.jupyter .col-lg-10{width:83.33333333%}.jupyter .col-lg-9{width:75%}.jupyter .col-lg-8{width:66.66666667%}.jupyter .col-lg-7{width:58.33333333%}.jupyter .col-lg-6{width:50%}.jupyter .col-lg-5{width:41.66666667%}.jupyter .col-lg-4{width:33.33333333%}.jupyter .col-lg-3{width:25%}.jupyter .col-lg-2{width:16.66666667%}.jupyter .col-lg-1{width:8.33333333%}.jupyter .col-lg-pull-12{right:100%}.jupyter .col-lg-pull-11{right:91.66666667%}.jupyter .col-lg-pull-10{right:83.33333333%}.jupyter .col-lg-pull-9{right:75%}.jupyter .col-lg-pull-8{right:66.66666667%}.jupyter .col-lg-pull-7{right:58.33333333%}.jupyter .col-lg-pull-6{right:50%}.jupyter .col-lg-pull-5{right:41.66666667%}.jupyter .col-lg-pull-4{right:33.33333333%}.jupyter .col-lg-pull-3{right:25%}.jupyter .col-lg-pull-2{right:16.66666667%}.jupyter .col-lg-pull-1{right:8.33333333%}.jupyter .col-lg-pull-0{right:auto}.jupyter .col-lg-push-12{left:100%}.jupyter .col-lg-push-11{left:91.66666667%}.jupyter .col-lg-push-10{left:83.33333333%}.jupyter .col-lg-push-9{left:75%}.jupyter .col-lg-push-8{left:66.66666667%}.jupyter .col-lg-push-7{left:58.33333333%}.jupyter .col-lg-push-6{left:50%}.jupyter .col-lg-push-5{left:41.66666667%}.jupyter .col-lg-push-4{left:33.33333333%}.jupyter .col-lg-push-3{left:25%}.jupyter .col-lg-push-2{left:16.66666667%}.jupyter .col-lg-push-1{left:8.33333333%}.jupyter .col-lg-push-0{left:auto}.jupyter .col-lg-offset-12{margin-left:100%}.jupyter .col-lg-offset-11{margin-left:91.66666667%}.jupyter .col-lg-offset-10{margin-left:83.33333333%}.jupyter .col-lg-offset-9{margin-left:75%}.jupyter .col-lg-offset-8{margin-left:66.66666667%}.jupyter .col-lg-offset-7{margin-left:58.33333333%}.jupyter .col-lg-offset-6{margin-left:50%}.jupyter .col-lg-offset-5{margin-left:41.66666667%}.jupyter .col-lg-offset-4{margin-left:33.33333333%}.jupyter .col-lg-offset-3{margin-left:25%}.jupyter .col-lg-offset-2{margin-left:16.66666667%}.jupyter .col-lg-offset-1{margin-left:8.33333333%}.jupyter .col-lg-offset-0{margin-left:0}}.jupyter table{background-color:transparent}.jupyter caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.jupyter th{text-align:left}.jupyter .table{width:100%;max-width:100%;margin-bottom:18px}.jupyter .table>tbody>tr>td,.jupyter .table>tbody>tr>th,.jupyter .table>tfoot>tr>td,.jupyter .table>tfoot>tr>th,.jupyter .table>thead>tr>td,.jupyter .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.jupyter .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.jupyter .table>caption+thead>tr:first-child>td,.jupyter .table>caption+thead>tr:first-child>th,.jupyter .table>colgroup+thead>tr:first-child>td,.jupyter .table>colgroup+thead>tr:first-child>th,.jupyter .table>thead:first-child>tr:first-child>td,.jupyter .table>thead:first-child>tr:first-child>th{border-top:0}.jupyter .table>tbody+tbody{border-top:2px solid #ddd}.jupyter .table .table{background-color:#fff}.jupyter .table-condensed>tbody>tr>td,.jupyter .table-condensed>tbody>tr>th,.jupyter .table-condensed>tfoot>tr>td,.jupyter .table-condensed>tfoot>tr>th,.jupyter .table-condensed>thead>tr>td,.jupyter .table-condensed>thead>tr>th{padding:5px}.jupyter .table-bordered{border:1px solid #ddd}.jupyter .table-bordered>tbody>tr>td,.jupyter .table-bordered>tbody>tr>th,.jupyter .table-bordered>tfoot>tr>td,.jupyter .table-bordered>tfoot>tr>th,.jupyter .table-bordered>thead>tr>td,.jupyter .table-bordered>thead>tr>th{border:1px solid #ddd}.jupyter .table-bordered>thead>tr>td,.jupyter .table-bordered>thead>tr>th{border-bottom-width:2px}.jupyter .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.jupyter .table-hover>tbody>tr:hover{background-color:#f5f5f5}.jupyter table col[class*=col-]{position:static;float:none;display:table-column}.jupyter table td[class*=col-],.jupyter table th[class*=col-]{position:static;float:none;display:table-cell}.jupyter .table>tbody>tr.active>td,.jupyter .table>tbody>tr.active>th,.jupyter .table>tbody>tr>td.active,.jupyter .table>tbody>tr>th.active,.jupyter .table>tfoot>tr.active>td,.jupyter .table>tfoot>tr.active>th,.jupyter .table>tfoot>tr>td.active,.jupyter .table>tfoot>tr>th.active,.jupyter .table>thead>tr.active>td,.jupyter .table>thead>tr.active>th,.jupyter .table>thead>tr>td.active,.jupyter .table>thead>tr>th.active{background-color:#f5f5f5}.jupyter .table-hover>tbody>tr.active:hover>td,.jupyter .table-hover>tbody>tr.active:hover>th,.jupyter .table-hover>tbody>tr:hover>.active,.jupyter .table-hover>tbody>tr>td.active:hover,.jupyter .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.jupyter .table>tbody>tr.success>td,.jupyter .table>tbody>tr.success>th,.jupyter .table>tbody>tr>td.success,.jupyter .table>tbody>tr>th.success,.jupyter .table>tfoot>tr.success>td,.jupyter .table>tfoot>tr.success>th,.jupyter .table>tfoot>tr>td.success,.jupyter .table>tfoot>tr>th.success,.jupyter .table>thead>tr.success>td,.jupyter .table>thead>tr.success>th,.jupyter .table>thead>tr>td.success,.jupyter .table>thead>tr>th.success{background-color:#dff0d8}.jupyter .table-hover>tbody>tr.success:hover>td,.jupyter .table-hover>tbody>tr.success:hover>th,.jupyter .table-hover>tbody>tr:hover>.success,.jupyter .table-hover>tbody>tr>td.success:hover,.jupyter .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.jupyter .table>tbody>tr.info>td,.jupyter .table>tbody>tr.info>th,.jupyter .table>tbody>tr>td.info,.jupyter .table>tbody>tr>th.info,.jupyter .table>tfoot>tr.info>td,.jupyter .table>tfoot>tr.info>th,.jupyter .table>tfoot>tr>td.info,.jupyter .table>tfoot>tr>th.info,.jupyter .table>thead>tr.info>td,.jupyter .table>thead>tr.info>th,.jupyter .table>thead>tr>td.info,.jupyter .table>thead>tr>th.info{background-color:#d9edf7}.jupyter .table-hover>tbody>tr.info:hover>td,.jupyter .table-hover>tbody>tr.info:hover>th,.jupyter .table-hover>tbody>tr:hover>.info,.jupyter .table-hover>tbody>tr>td.info:hover,.jupyter .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.jupyter .table>tbody>tr.warning>td,.jupyter .table>tbody>tr.warning>th,.jupyter .table>tbody>tr>td.warning,.jupyter .table>tbody>tr>th.warning,.jupyter .table>tfoot>tr.warning>td,.jupyter .table>tfoot>tr.warning>th,.jupyter .table>tfoot>tr>td.warning,.jupyter .table>tfoot>tr>th.warning,.jupyter .table>thead>tr.warning>td,.jupyter .table>thead>tr.warning>th,.jupyter .table>thead>tr>td.warning,.jupyter .table>thead>tr>th.warning{background-color:#fcf8e3}.jupyter .table-hover>tbody>tr.warning:hover>td,.jupyter .table-hover>tbody>tr.warning:hover>th,.jupyter .table-hover>tbody>tr:hover>.warning,.jupyter .table-hover>tbody>tr>td.warning:hover,.jupyter .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.jupyter .table>tbody>tr.danger>td,.jupyter .table>tbody>tr.danger>th,.jupyter .table>tbody>tr>td.danger,.jupyter .table>tbody>tr>th.danger,.jupyter .table>tfoot>tr.danger>td,.jupyter .table>tfoot>tr.danger>th,.jupyter .table>tfoot>tr>td.danger,.jupyter .table>tfoot>tr>th.danger,.jupyter .table>thead>tr.danger>td,.jupyter .table>thead>tr.danger>th,.jupyter .table>thead>tr>td.danger,.jupyter .table>thead>tr>th.danger{background-color:#f2dede}.jupyter .table-hover>tbody>tr.danger:hover>td,.jupyter .table-hover>tbody>tr.danger:hover>th,.jupyter .table-hover>tbody>tr:hover>.danger,.jupyter .table-hover>tbody>tr>td.danger:hover,.jupyter .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.jupyter .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.jupyter .table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.jupyter .table-responsive>.table{margin-bottom:0}.jupyter .table-responsive>.table>tbody>tr>td,.jupyter .table-responsive>.table>tbody>tr>th,.jupyter .table-responsive>.table>tfoot>tr>td,.jupyter .table-responsive>.table>tfoot>tr>th,.jupyter .table-responsive>.table>thead>tr>td,.jupyter .table-responsive>.table>thead>tr>th{white-space:nowrap}.jupyter .table-responsive>.table-bordered{border:0}.jupyter .table-responsive>.table-bordered>tbody>tr>td:first-child,.jupyter .table-responsive>.table-bordered>tbody>tr>th:first-child,.jupyter .table-responsive>.table-bordered>tfoot>tr>td:first-child,.jupyter .table-responsive>.table-bordered>tfoot>tr>th:first-child,.jupyter .table-responsive>.table-bordered>thead>tr>td:first-child,.jupyter .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.jupyter .table-responsive>.table-bordered>tbody>tr>td:last-child,.jupyter .table-responsive>.table-bordered>tbody>tr>th:last-child,.jupyter .table-responsive>.table-bordered>tfoot>tr>td:last-child,.jupyter .table-responsive>.table-bordered>tfoot>tr>th:last-child,.jupyter .table-responsive>.table-bordered>thead>tr>td:last-child,.jupyter .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.jupyter .table-responsive>.table-bordered>tbody>tr:last-child>td,.jupyter .table-responsive>.table-bordered>tbody>tr:last-child>th,.jupyter .table-responsive>.table-bordered>tfoot>tr:last-child>td,.jupyter .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.jupyter fieldset{padding:0;margin:0;border:0;min-width:0}.jupyter legend{display:block;width:100%;padding:0;margin-bottom:18px;font-size:19.5px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}.jupyter label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.jupyter input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.jupyter input[type=checkbox],.jupyter input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.jupyter input[type=file]{display:block}.jupyter input[type=range]{display:block;width:100%}.jupyter select[multiple],.jupyter select[size]{height:auto}.jupyter input[type=file]:focus,.jupyter input[type=checkbox]:focus,.jupyter input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.jupyter output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.jupyter .form-control{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.jupyter .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.jupyter .form-control::-moz-placeholder{color:#999;opacity:1}.jupyter .form-control:-ms-input-placeholder{color:#999}.jupyter .form-control::-webkit-input-placeholder{color:#999}.jupyter .form-control[disabled],.jupyter .form-control[readonly],fieldset[disabled] .jupyter .form-control{background-color:#eee;opacity:1}.jupyter .form-control[disabled],fieldset[disabled] .jupyter .form-control{cursor:not-allowed}textarea.jupyter .form-control{height:auto}.jupyter input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){.jupyter input[type=date].form-control,.jupyter input[type=time].form-control,.jupyter input[type=datetime-local].form-control,.jupyter input[type=month].form-control{line-height:32px}.input-group-sm .jupyter input[type=date],.input-group-sm .jupyter input[type=time],.input-group-sm .jupyter input[type=datetime-local],.input-group-sm .jupyter input[type=month],.jupyter input[type=date].input-sm,.jupyter input[type=time].input-sm,.jupyter input[type=datetime-local].input-sm,.jupyter input[type=month].input-sm{line-height:30px}.input-group-lg .jupyter input[type=date],.input-group-lg .jupyter input[type=time],.input-group-lg .jupyter input[type=datetime-local],.input-group-lg .jupyter input[type=month],.jupyter input[type=date].input-lg,.jupyter input[type=time].input-lg,.jupyter input[type=datetime-local].input-lg,.jupyter input[type=month].input-lg{line-height:45px}}.jupyter .form-group{margin-bottom:15px}.jupyter .checkbox,.jupyter .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.jupyter .checkbox label,.jupyter .radio label{min-height:18px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.jupyter .checkbox input[type=checkbox],.jupyter .checkbox-inline input[type=checkbox],.jupyter .radio input[type=radio],.jupyter .radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.jupyter .checkbox+.checkbox,.jupyter .radio+.radio{margin-top:-5px}.jupyter .checkbox-inline,.jupyter .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.jupyter .checkbox-inline+.checkbox-inline,.jupyter .radio-inline+.radio-inline{margin-top:0;margin-left:10px}.jupyter input[type=checkbox].disabled,.jupyter input[type=checkbox][disabled],.jupyter input[type=radio].disabled,.jupyter input[type=radio][disabled],fieldset[disabled] .jupyter input[type=checkbox],fieldset[disabled] .jupyter input[type=radio]{cursor:not-allowed}.jupyter .checkbox-inline.disabled,.jupyter .radio-inline.disabled,fieldset[disabled] .jupyter .checkbox-inline,fieldset[disabled] .jupyter .radio-inline{cursor:not-allowed}.jupyter .checkbox.disabled label,.jupyter .radio.disabled label,fieldset[disabled] .jupyter .checkbox label,fieldset[disabled] .jupyter .radio label{cursor:not-allowed}.jupyter .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:31px}.jupyter .form-control-static.input-lg,.jupyter .form-control-static.input-sm{padding-left:0;padding-right:0}.jupyter .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.jupyter .input-sm{height:30px;line-height:30px}select[multiple].jupyter .input-sm,textarea.jupyter .input-sm{height:auto}.jupyter .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.jupyter .form-group-sm select.form-control{height:30px;line-height:30px}.jupyter .form-group-sm select[multiple].form-control,.jupyter .form-group-sm textarea.form-control{height:auto}.jupyter .form-group-sm .form-control-static{height:30px;min-height:30px;padding:6px 10px;font-size:12px;line-height:1.5}.jupyter .input-lg{height:45px;padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:3px}select.jupyter .input-lg{height:45px;line-height:45px}select[multiple].jupyter .input-lg,textarea.jupyter .input-lg{height:auto}.jupyter .form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:3px}.jupyter .form-group-lg select.form-control{height:45px;line-height:45px}.jupyter .form-group-lg select[multiple].form-control,.jupyter .form-group-lg textarea.form-control{height:auto}.jupyter .form-group-lg .form-control-static{height:45px;min-height:35px;padding:11px 16px;font-size:17px;line-height:1.3333333}.jupyter .has-feedback{position:relative}.jupyter .has-feedback .form-control{padding-right:40px}.jupyter .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:32px;height:32px;line-height:32px;text-align:center;pointer-events:none}.jupyter .form-group-lg .form-control+.form-control-feedback,.jupyter .input-group-lg+.form-control-feedback,.jupyter .input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px}.jupyter .form-group-sm .form-control+.form-control-feedback,.jupyter .input-group-sm+.form-control-feedback,.jupyter .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.jupyter .has-success .checkbox,.jupyter .has-success .checkbox-inline,.jupyter .has-success .control-label,.jupyter .has-success .help-block,.jupyter .has-success .radio,.jupyter .has-success .radio-inline,.jupyter .has-success.checkbox label,.jupyter .has-success.checkbox-inline label,.jupyter .has-success.radio label,.jupyter .has-success.radio-inline label{color:#3c763d}.jupyter .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.jupyter .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.jupyter .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.jupyter .has-success .form-control-feedback{color:#3c763d}.jupyter .has-warning .checkbox,.jupyter .has-warning .checkbox-inline,.jupyter .has-warning .control-label,.jupyter .has-warning .help-block,.jupyter .has-warning .radio,.jupyter .has-warning .radio-inline,.jupyter .has-warning.checkbox label,.jupyter .has-warning.checkbox-inline label,.jupyter .has-warning.radio label,.jupyter .has-warning.radio-inline label{color:#8a6d3b}.jupyter .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.jupyter .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.jupyter .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.jupyter .has-warning .form-control-feedback{color:#8a6d3b}.jupyter .has-error .checkbox,.jupyter .has-error .checkbox-inline,.jupyter .has-error .control-label,.jupyter .has-error .help-block,.jupyter .has-error .radio,.jupyter .has-error .radio-inline,.jupyter .has-error.checkbox label,.jupyter .has-error.checkbox-inline label,.jupyter .has-error.radio label,.jupyter .has-error.radio-inline label{color:#a94442}.jupyter .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.jupyter .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.jupyter .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.jupyter .has-error .form-control-feedback{color:#a94442}.jupyter .has-feedback label~.form-control-feedback{top:23px}.jupyter .has-feedback label.sr-only~.form-control-feedback{top:0}.jupyter .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.jupyter .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.jupyter .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.jupyter .form-inline .form-control-static{display:inline-block}.jupyter .form-inline .input-group{display:inline-table;vertical-align:middle}.jupyter .form-inline .input-group .form-control,.jupyter .form-inline .input-group .input-group-addon,.jupyter .form-inline .input-group .input-group-btn{width:auto}.jupyter .form-inline .input-group>.form-control{width:100%}.jupyter .form-inline .control-label{margin-bottom:0;vertical-align:middle}.jupyter .form-inline .checkbox,.jupyter .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.jupyter .form-inline .checkbox label,.jupyter .form-inline .radio label{padding-left:0}.jupyter .form-inline .checkbox input[type=checkbox],.jupyter .form-inline .radio input[type=radio]{position:relative;margin-left:0}.jupyter .form-inline .has-feedback .form-control-feedback{top:0}}.jupyter .form-horizontal .checkbox,.jupyter .form-horizontal .checkbox-inline,.jupyter .form-horizontal .radio,.jupyter .form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.jupyter .form-horizontal .checkbox,.jupyter .form-horizontal .radio{min-height:25px}.jupyter .form-horizontal .form-group{margin-left:0;margin-right:0}@media (min-width:768px){.jupyter .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.jupyter .form-horizontal .has-feedback .form-control-feedback{right:0}@media (min-width:768px){.jupyter .form-horizontal .form-group-lg .control-label{padding-top:14.33px;font-size:17px}}@media (min-width:768px){.jupyter .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.jupyter .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:13px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jupyter .btn.active.focus,.jupyter .btn.active:focus,.jupyter .btn.focus,.jupyter .btn:active.focus,.jupyter .btn:active:focus,.jupyter .btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.jupyter .btn.focus,.jupyter .btn:focus,.jupyter .btn:hover{color:#333;text-decoration:none}.jupyter .btn.active,.jupyter .btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.jupyter .btn.disabled,.jupyter .btn[disabled],fieldset[disabled] .jupyter .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.jupyter .btn.disabled,fieldset[disabled] a.jupyter .btn{pointer-events:none}.jupyter .btn-default{color:#333;background-color:#fff;border-color:#ccc}.jupyter .btn-default.focus,.jupyter .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.jupyter .btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter .btn-default.active,.jupyter .btn-default:active,.open>.dropdown-toggle.jupyter .btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter .btn-default.active.focus,.jupyter .btn-default.active:focus,.jupyter .btn-default.active:hover,.jupyter .btn-default:active.focus,.jupyter .btn-default:active:focus,.jupyter .btn-default:active:hover,.open>.dropdown-toggle.jupyter .btn-default.focus,.open>.dropdown-toggle.jupyter .btn-default:focus,.open>.dropdown-toggle.jupyter .btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.jupyter .btn-default.active,.jupyter .btn-default:active,.open>.dropdown-toggle.jupyter .btn-default{background-image:none}.jupyter .btn-default.disabled,.jupyter .btn-default.disabled.active,.jupyter .btn-default.disabled.focus,.jupyter .btn-default.disabled:active,.jupyter .btn-default.disabled:focus,.jupyter .btn-default.disabled:hover,.jupyter .btn-default[disabled],.jupyter .btn-default[disabled].active,.jupyter .btn-default[disabled].focus,.jupyter .btn-default[disabled]:active,.jupyter .btn-default[disabled]:focus,.jupyter .btn-default[disabled]:hover,fieldset[disabled] .jupyter .btn-default,fieldset[disabled] .jupyter .btn-default.active,fieldset[disabled] .jupyter .btn-default.focus,fieldset[disabled] .jupyter .btn-default:active,fieldset[disabled] .jupyter .btn-default:focus,fieldset[disabled] .jupyter .btn-default:hover{background-color:#fff;border-color:#ccc}.jupyter .btn-default .badge{color:#fff;background-color:#333}.jupyter .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.jupyter .btn-primary.focus,.jupyter .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.jupyter .btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.jupyter .btn-primary.active,.jupyter .btn-primary:active,.open>.dropdown-toggle.jupyter .btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.jupyter .btn-primary.active.focus,.jupyter .btn-primary.active:focus,.jupyter .btn-primary.active:hover,.jupyter .btn-primary:active.focus,.jupyter .btn-primary:active:focus,.jupyter .btn-primary:active:hover,.open>.dropdown-toggle.jupyter .btn-primary.focus,.open>.dropdown-toggle.jupyter .btn-primary:focus,.open>.dropdown-toggle.jupyter .btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.jupyter .btn-primary.active,.jupyter .btn-primary:active,.open>.dropdown-toggle.jupyter .btn-primary{background-image:none}.jupyter .btn-primary.disabled,.jupyter .btn-primary.disabled.active,.jupyter .btn-primary.disabled.focus,.jupyter .btn-primary.disabled:active,.jupyter .btn-primary.disabled:focus,.jupyter .btn-primary.disabled:hover,.jupyter .btn-primary[disabled],.jupyter .btn-primary[disabled].active,.jupyter .btn-primary[disabled].focus,.jupyter .btn-primary[disabled]:active,.jupyter .btn-primary[disabled]:focus,.jupyter .btn-primary[disabled]:hover,fieldset[disabled] .jupyter .btn-primary,fieldset[disabled] .jupyter .btn-primary.active,fieldset[disabled] .jupyter .btn-primary.focus,fieldset[disabled] .jupyter .btn-primary:active,fieldset[disabled] .jupyter .btn-primary:focus,fieldset[disabled] .jupyter .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.jupyter .btn-primary .badge{color:#337ab7;background-color:#fff}.jupyter .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.jupyter .btn-success.focus,.jupyter .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.jupyter .btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.jupyter .btn-success.active,.jupyter .btn-success:active,.open>.dropdown-toggle.jupyter .btn-success{color:#fff;background-color:#449d44;border-color:#398439}.jupyter .btn-success.active.focus,.jupyter .btn-success.active:focus,.jupyter .btn-success.active:hover,.jupyter .btn-success:active.focus,.jupyter .btn-success:active:focus,.jupyter .btn-success:active:hover,.open>.dropdown-toggle.jupyter .btn-success.focus,.open>.dropdown-toggle.jupyter .btn-success:focus,.open>.dropdown-toggle.jupyter .btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.jupyter .btn-success.active,.jupyter .btn-success:active,.open>.dropdown-toggle.jupyter .btn-success{background-image:none}.jupyter .btn-success.disabled,.jupyter .btn-success.disabled.active,.jupyter .btn-success.disabled.focus,.jupyter .btn-success.disabled:active,.jupyter .btn-success.disabled:focus,.jupyter .btn-success.disabled:hover,.jupyter .btn-success[disabled],.jupyter .btn-success[disabled].active,.jupyter .btn-success[disabled].focus,.jupyter .btn-success[disabled]:active,.jupyter .btn-success[disabled]:focus,.jupyter .btn-success[disabled]:hover,fieldset[disabled] .jupyter .btn-success,fieldset[disabled] .jupyter .btn-success.active,fieldset[disabled] .jupyter .btn-success.focus,fieldset[disabled] .jupyter .btn-success:active,fieldset[disabled] .jupyter .btn-success:focus,fieldset[disabled] .jupyter .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.jupyter .btn-success .badge{color:#5cb85c;background-color:#fff}.jupyter .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.jupyter .btn-info.focus,.jupyter .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.jupyter .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.jupyter .btn-info.active,.jupyter .btn-info:active,.open>.dropdown-toggle.jupyter .btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.jupyter .btn-info.active.focus,.jupyter .btn-info.active:focus,.jupyter .btn-info.active:hover,.jupyter .btn-info:active.focus,.jupyter .btn-info:active:focus,.jupyter .btn-info:active:hover,.open>.dropdown-toggle.jupyter .btn-info.focus,.open>.dropdown-toggle.jupyter .btn-info:focus,.open>.dropdown-toggle.jupyter .btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.jupyter .btn-info.active,.jupyter .btn-info:active,.open>.dropdown-toggle.jupyter .btn-info{background-image:none}.jupyter .btn-info.disabled,.jupyter .btn-info.disabled.active,.jupyter .btn-info.disabled.focus,.jupyter .btn-info.disabled:active,.jupyter .btn-info.disabled:focus,.jupyter .btn-info.disabled:hover,.jupyter .btn-info[disabled],.jupyter .btn-info[disabled].active,.jupyter .btn-info[disabled].focus,.jupyter .btn-info[disabled]:active,.jupyter .btn-info[disabled]:focus,.jupyter .btn-info[disabled]:hover,fieldset[disabled] .jupyter .btn-info,fieldset[disabled] .jupyter .btn-info.active,fieldset[disabled] .jupyter .btn-info.focus,fieldset[disabled] .jupyter .btn-info:active,fieldset[disabled] .jupyter .btn-info:focus,fieldset[disabled] .jupyter .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.jupyter .btn-info .badge{color:#5bc0de;background-color:#fff}.jupyter .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.jupyter .btn-warning.focus,.jupyter .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.jupyter .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.jupyter .btn-warning.active,.jupyter .btn-warning:active,.open>.dropdown-toggle.jupyter .btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.jupyter .btn-warning.active.focus,.jupyter .btn-warning.active:focus,.jupyter .btn-warning.active:hover,.jupyter .btn-warning:active.focus,.jupyter .btn-warning:active:focus,.jupyter .btn-warning:active:hover,.open>.dropdown-toggle.jupyter .btn-warning.focus,.open>.dropdown-toggle.jupyter .btn-warning:focus,.open>.dropdown-toggle.jupyter .btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.jupyter .btn-warning.active,.jupyter .btn-warning:active,.open>.dropdown-toggle.jupyter .btn-warning{background-image:none}.jupyter .btn-warning.disabled,.jupyter .btn-warning.disabled.active,.jupyter .btn-warning.disabled.focus,.jupyter .btn-warning.disabled:active,.jupyter .btn-warning.disabled:focus,.jupyter .btn-warning.disabled:hover,.jupyter .btn-warning[disabled],.jupyter .btn-warning[disabled].active,.jupyter .btn-warning[disabled].focus,.jupyter .btn-warning[disabled]:active,.jupyter .btn-warning[disabled]:focus,.jupyter .btn-warning[disabled]:hover,fieldset[disabled] .jupyter .btn-warning,fieldset[disabled] .jupyter .btn-warning.active,fieldset[disabled] .jupyter .btn-warning.focus,fieldset[disabled] .jupyter .btn-warning:active,fieldset[disabled] .jupyter .btn-warning:focus,fieldset[disabled] .jupyter .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.jupyter .btn-warning .badge{color:#f0ad4e;background-color:#fff}.jupyter .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.jupyter .btn-danger.focus,.jupyter .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.jupyter .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.jupyter .btn-danger.active,.jupyter .btn-danger:active,.open>.dropdown-toggle.jupyter .btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.jupyter .btn-danger.active.focus,.jupyter .btn-danger.active:focus,.jupyter .btn-danger.active:hover,.jupyter .btn-danger:active.focus,.jupyter .btn-danger:active:focus,.jupyter .btn-danger:active:hover,.open>.dropdown-toggle.jupyter .btn-danger.focus,.open>.dropdown-toggle.jupyter .btn-danger:focus,.open>.dropdown-toggle.jupyter .btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.jupyter .btn-danger.active,.jupyter .btn-danger:active,.open>.dropdown-toggle.jupyter .btn-danger{background-image:none}.jupyter .btn-danger.disabled,.jupyter .btn-danger.disabled.active,.jupyter .btn-danger.disabled.focus,.jupyter .btn-danger.disabled:active,.jupyter .btn-danger.disabled:focus,.jupyter .btn-danger.disabled:hover,.jupyter .btn-danger[disabled],.jupyter .btn-danger[disabled].active,.jupyter .btn-danger[disabled].focus,.jupyter .btn-danger[disabled]:active,.jupyter .btn-danger[disabled]:focus,.jupyter .btn-danger[disabled]:hover,fieldset[disabled] .jupyter .btn-danger,fieldset[disabled] .jupyter .btn-danger.active,fieldset[disabled] .jupyter .btn-danger.focus,fieldset[disabled] .jupyter .btn-danger:active,fieldset[disabled] .jupyter .btn-danger:focus,fieldset[disabled] .jupyter .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.jupyter .btn-danger .badge{color:#d9534f;background-color:#fff}.jupyter .btn-link{color:#337ab7;font-weight:400;border-radius:0}.jupyter .btn-link,.jupyter .btn-link.active,.jupyter .btn-link:active,.jupyter .btn-link[disabled],fieldset[disabled] .jupyter .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.jupyter .btn-link,.jupyter .btn-link:active,.jupyter .btn-link:focus,.jupyter .btn-link:hover{border-color:transparent}.jupyter .btn-link:focus,.jupyter .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.jupyter .btn-link[disabled]:focus,.jupyter .btn-link[disabled]:hover,fieldset[disabled] .jupyter .btn-link:focus,fieldset[disabled] .jupyter .btn-link:hover{color:#777;text-decoration:none}.jupyter .btn-lg{padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:3px}.jupyter .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}.jupyter .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:1px}.jupyter .btn-block{display:block;width:100%}.jupyter .btn-block+.btn-block{margin-top:5px}.jupyter input[type=button].btn-block,.jupyter input[type=reset].btn-block,.jupyter input[type=submit].btn-block{width:100%}.jupyter .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.jupyter .fade.in{opacity:1}.jupyter .collapse{display:none}.jupyter .collapse.in{display:block}tr.jupyter .collapse.in{display:table-row}tbody.jupyter .collapse.in{display:table-row-group}.jupyter .collapsing{position:relative;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}.jupyter .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}.jupyter .dropdown,.jupyter .dropup{position:relative}.jupyter .dropdown-toggle:focus{outline:0}.jupyter .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:13px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.jupyter .dropdown-menu.pull-right{right:0;left:auto}.jupyter .dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.jupyter .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.jupyter .dropdown-menu>li>a:focus,.jupyter .dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.jupyter .dropdown-menu>.active>a,.jupyter .dropdown-menu>.active>a:focus,.jupyter .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.jupyter .dropdown-menu>.disabled>a,.jupyter .dropdown-menu>.disabled>a:focus,.jupyter .dropdown-menu>.disabled>a:hover{color:#777}.jupyter .dropdown-menu>.disabled>a:focus,.jupyter .dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.jupyter .open>.dropdown-menu{display:block}.jupyter .open>a{outline:0}.jupyter .dropdown-menu-right{left:auto;right:0}.jupyter .dropdown-menu-left{left:0;right:auto}.jupyter .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.jupyter .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.jupyter .pull-right>.dropdown-menu{right:0;left:auto}.jupyter .dropup .caret,.jupyter .navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.jupyter .dropup .dropdown-menu,.jupyter .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:541px){.jupyter .navbar-right .dropdown-menu{left:auto;right:0}.jupyter .navbar-right .dropdown-menu-left{left:0;right:auto}}.jupyter .btn-group,.jupyter .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.jupyter .btn-group-vertical>.btn,.jupyter .btn-group>.btn{position:relative;float:left}.jupyter .btn-group-vertical>.btn.active,.jupyter .btn-group-vertical>.btn:active,.jupyter .btn-group-vertical>.btn:focus,.jupyter .btn-group-vertical>.btn:hover,.jupyter .btn-group>.btn.active,.jupyter .btn-group>.btn:active,.jupyter .btn-group>.btn:focus,.jupyter .btn-group>.btn:hover{z-index:2}.jupyter .btn-group .btn+.btn,.jupyter .btn-group .btn+.btn-group,.jupyter .btn-group .btn-group+.btn,.jupyter .btn-group .btn-group+.btn-group{margin-left:-1px}.jupyter .btn-toolbar{margin-left:-5px}.jupyter .btn-toolbar .btn,.jupyter .btn-toolbar .btn-group,.jupyter .btn-toolbar .input-group{float:left}.jupyter .btn-toolbar>.btn,.jupyter .btn-toolbar>.btn-group,.jupyter .btn-toolbar>.input-group{margin-left:5px}.jupyter .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.jupyter .btn-group>.btn:first-child{margin-left:0}.jupyter .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.jupyter .btn-group>.btn:last-child:not(:first-child),.jupyter .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.jupyter .btn-group>.btn-group{float:left}.jupyter .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.jupyter .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.jupyter .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.jupyter .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.jupyter .btn-group .dropdown-toggle:active,.jupyter .btn-group.open .dropdown-toggle{outline:0}.jupyter .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.jupyter .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.jupyter .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)}.jupyter .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.jupyter .btn .caret{margin-left:0}.jupyter .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.jupyter .dropup .btn-lg .caret{border-width:0 5px 5px}.jupyter .btn-group-vertical>.btn,.jupyter .btn-group-vertical>.btn-group,.jupyter .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.jupyter .btn-group-vertical>.btn-group>.btn{float:none}.jupyter .btn-group-vertical>.btn+.btn,.jupyter .btn-group-vertical>.btn+.btn-group,.jupyter .btn-group-vertical>.btn-group+.btn,.jupyter .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.jupyter .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.jupyter .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.jupyter .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:2px;border-top-right-radius:0;border-top-left-radius:0}.jupyter .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.jupyter .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.jupyter .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.jupyter .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.jupyter .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.jupyter .btn-group-justified>.btn,.jupyter .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.jupyter .btn-group-justified>.btn-group .btn{width:100%}.jupyter .btn-group-justified>.btn-group .dropdown-menu{left:auto}.jupyter [data-toggle=buttons]>.btn input[type=checkbox],.jupyter [data-toggle=buttons]>.btn input[type=radio],.jupyter [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],.jupyter [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.jupyter .input-group{position:relative;display:table;border-collapse:separate}.jupyter .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.jupyter .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.jupyter .input-group-lg>.form-control,.jupyter .input-group-lg>.input-group-addon,.jupyter .input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:3px}select.jupyter .input-group-lg>.form-control,select.jupyter .input-group-lg>.input-group-addon,select.jupyter .input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}select[multiple].jupyter .input-group-lg>.form-control,select[multiple].jupyter .input-group-lg>.input-group-addon,select[multiple].jupyter .input-group-lg>.input-group-btn>.btn,textarea.jupyter .input-group-lg>.form-control,textarea.jupyter .input-group-lg>.input-group-addon,textarea.jupyter .input-group-lg>.input-group-btn>.btn{height:auto}.jupyter .input-group-sm>.form-control,.jupyter .input-group-sm>.input-group-addon,.jupyter .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px}select.jupyter .input-group-sm>.form-control,select.jupyter .input-group-sm>.input-group-addon,select.jupyter .input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].jupyter .input-group-sm>.form-control,select[multiple].jupyter .input-group-sm>.input-group-addon,select[multiple].jupyter .input-group-sm>.input-group-btn>.btn,textarea.jupyter .input-group-sm>.form-control,textarea.jupyter .input-group-sm>.input-group-addon,textarea.jupyter .input-group-sm>.input-group-btn>.btn{height:auto}.jupyter .input-group .form-control,.jupyter .input-group-addon,.jupyter .input-group-btn{display:table-cell}.jupyter .input-group .form-control:not(:first-child):not(:last-child),.jupyter .input-group-addon:not(:first-child):not(:last-child),.jupyter .input-group-btn:not(:first-child):not(:last-child){border-radius:0}.jupyter .input-group-addon,.jupyter .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.jupyter .input-group-addon{padding:6px 12px;font-size:13px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:2px}.jupyter .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:1px}.jupyter .input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:3px}.jupyter .input-group-addon input[type=checkbox],.jupyter .input-group-addon input[type=radio]{margin-top:0}.jupyter .input-group .form-control:first-child,.jupyter .input-group-addon:first-child,.jupyter .input-group-btn:first-child>.btn,.jupyter .input-group-btn:first-child>.btn-group>.btn,.jupyter .input-group-btn:first-child>.dropdown-toggle,.jupyter .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.jupyter .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.jupyter .input-group-addon:first-child{border-right:0}.jupyter .input-group .form-control:last-child,.jupyter .input-group-addon:last-child,.jupyter .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.jupyter .input-group-btn:first-child>.btn:not(:first-child),.jupyter .input-group-btn:last-child>.btn,.jupyter .input-group-btn:last-child>.btn-group>.btn,.jupyter .input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.jupyter .input-group-addon:last-child{border-left:0}.jupyter .input-group-btn{position:relative;font-size:0;white-space:nowrap}.jupyter .input-group-btn>.btn{position:relative}.jupyter .input-group-btn>.btn+.btn{margin-left:-1px}.jupyter .input-group-btn>.btn:active,.jupyter .input-group-btn>.btn:focus,.jupyter .input-group-btn>.btn:hover{z-index:2}.jupyter .input-group-btn:first-child>.btn,.jupyter .input-group-btn:first-child>.btn-group{margin-right:-1px}.jupyter .input-group-btn:last-child>.btn,.jupyter .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.jupyter .nav{margin-bottom:0;padding-left:0;list-style:none}.jupyter .nav>li{position:relative;display:block}.jupyter .nav>li>a{position:relative;display:block;padding:10px 15px}.jupyter .nav>li>a:focus,.jupyter .nav>li>a:hover{text-decoration:none;background-color:#eee}.jupyter .nav>li.disabled>a{color:#777}.jupyter .nav>li.disabled>a:focus,.jupyter .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.jupyter .nav .open>a,.jupyter .nav .open>a:focus,.jupyter .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.jupyter .nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.jupyter .nav>li>a>img{max-width:none}.jupyter .nav-tabs{border-bottom:1px solid #ddd}.jupyter .nav-tabs>li{float:left;margin-bottom:-1px}.jupyter .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.jupyter .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.jupyter .nav-tabs>li.active>a,.jupyter .nav-tabs>li.active>a:focus,.jupyter .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.jupyter .nav-tabs.nav-justified{width:100%;border-bottom:0}.jupyter .nav-tabs.nav-justified>li{float:none}.jupyter .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.jupyter .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.jupyter .nav-tabs.nav-justified>li{display:table-cell;width:1%}.jupyter .nav-tabs.nav-justified>li>a{margin-bottom:0}}.jupyter .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}.jupyter .nav-tabs.nav-justified>.active>a,.jupyter .nav-tabs.nav-justified>.active>a:focus,.jupyter .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.jupyter .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.jupyter .nav-tabs.nav-justified>.active>a,.jupyter .nav-tabs.nav-justified>.active>a:focus,.jupyter .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.jupyter .nav-pills>li{float:left}.jupyter .nav-pills>li>a{border-radius:2px}.jupyter .nav-pills>li+li{margin-left:2px}.jupyter .nav-pills>li.active>a,.jupyter .nav-pills>li.active>a:focus,.jupyter .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.jupyter .nav-stacked>li{float:none}.jupyter .nav-stacked>li+li{margin-top:2px;margin-left:0}.jupyter .nav-justified{width:100%}.jupyter .nav-justified>li{float:none}.jupyter .nav-justified>li>a{text-align:center;margin-bottom:5px}.jupyter .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.jupyter .nav-justified>li{display:table-cell;width:1%}.jupyter .nav-justified>li>a{margin-bottom:0}}.jupyter .nav-tabs-justified{border-bottom:0}.jupyter .nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.jupyter .nav-tabs-justified>.active>a,.jupyter .nav-tabs-justified>.active>a:focus,.jupyter .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.jupyter .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}.jupyter .nav-tabs-justified>.active>a,.jupyter .nav-tabs-justified>.active>a:focus,.jupyter .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.jupyter .tab-content>.tab-pane{display:none}.jupyter .tab-content>.active{display:block}.jupyter .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.jupyter .navbar{position:relative;min-height:30px;margin-bottom:18px;border:1px solid transparent}@media (min-width:541px){.jupyter .navbar{border-radius:2px}}@media (min-width:541px){.jupyter .navbar-header{float:left}}.jupyter .navbar-collapse{overflow-x:visible;padding-right:0;padding-left:0;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.jupyter .navbar-collapse.in{overflow-y:auto}@media (min-width:541px){.jupyter .navbar-collapse{width:auto;border-top:0;box-shadow:none}.jupyter .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.jupyter .navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .jupyter .navbar-collapse,.navbar-fixed-top .jupyter .navbar-collapse,.navbar-static-top .jupyter .navbar-collapse{padding-left:0;padding-right:0}}.jupyter .navbar-fixed-bottom .navbar-collapse,.jupyter .navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:540px) and (orientation:landscape){.jupyter .navbar-fixed-bottom .navbar-collapse,.jupyter .navbar-fixed-top .navbar-collapse{max-height:200px}}.jupyter .container-fluid>.navbar-collapse,.jupyter .container-fluid>.navbar-header,.jupyter .container>.navbar-collapse,.jupyter .container>.navbar-header{margin-right:0;margin-left:0}@media (min-width:541px){.jupyter .container-fluid>.navbar-collapse,.jupyter .container-fluid>.navbar-header,.jupyter .container>.navbar-collapse,.jupyter .container>.navbar-header{margin-right:0;margin-left:0}}.jupyter .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:541px){.jupyter .navbar-static-top{border-radius:0}}.jupyter .navbar-fixed-bottom,.jupyter .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:541px){.jupyter .navbar-fixed-bottom,.jupyter .navbar-fixed-top{border-radius:0}}.jupyter .navbar-fixed-top{top:0;border-width:0 0 1px}.jupyter .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.jupyter .navbar-brand{float:left;padding:6px 0;font-size:17px;line-height:18px;height:30px}.jupyter .navbar-brand:focus,.jupyter .navbar-brand:hover{text-decoration:none}.jupyter .navbar-brand>img{display:block}@media (min-width:541px){.navbar>.container .jupyter .navbar-brand,.navbar>.container-fluid .jupyter .navbar-brand{margin-left:0}}.jupyter .navbar-toggle{position:relative;float:right;margin-right:0;padding:9px 10px;margin-top:-2px;margin-bottom:-2px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:2px}.jupyter .navbar-toggle:focus{outline:0}.jupyter .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.jupyter .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:541px){.jupyter .navbar-toggle{display:none}}.jupyter .navbar-nav{margin:3px 0}.jupyter .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:540px){.jupyter .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.jupyter .navbar-nav .open .dropdown-menu .dropdown-header,.jupyter .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.jupyter .navbar-nav .open .dropdown-menu>li>a{line-height:18px}.jupyter .navbar-nav .open .dropdown-menu>li>a:focus,.jupyter .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:541px){.jupyter .navbar-nav{float:left;margin:0}.jupyter .navbar-nav>li{float:left}.jupyter .navbar-nav>li>a{padding-top:6px;padding-bottom:6px}}.jupyter .navbar-form{margin-left:0;margin-right:0;padding:10px 0;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-top:-1px;margin-bottom:-1px}@media (min-width:768px){.jupyter .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.jupyter .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.jupyter .navbar-form .form-control-static{display:inline-block}.jupyter .navbar-form .input-group{display:inline-table;vertical-align:middle}.jupyter .navbar-form .input-group .form-control,.jupyter .navbar-form .input-group .input-group-addon,.jupyter .navbar-form .input-group .input-group-btn{width:auto}.jupyter .navbar-form .input-group>.form-control{width:100%}.jupyter .navbar-form .control-label{margin-bottom:0;vertical-align:middle}.jupyter .navbar-form .checkbox,.jupyter .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.jupyter .navbar-form .checkbox label,.jupyter .navbar-form .radio label{padding-left:0}.jupyter .navbar-form .checkbox input[type=checkbox],.jupyter .navbar-form .radio input[type=radio]{position:relative;margin-left:0}.jupyter .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:540px){.jupyter .navbar-form .form-group{margin-bottom:5px}.jupyter .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:541px){.jupyter .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}}.jupyter .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.jupyter .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:2px;border-top-left-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}.jupyter .navbar-btn{margin-top:-1px;margin-bottom:-1px}.jupyter .navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.jupyter .navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.jupyter .navbar-text{margin-top:6px;margin-bottom:6px}@media (min-width:541px){.jupyter .navbar-text{float:left;margin-left:0;margin-right:0}}@media (min-width:541px){.jupyter .navbar-left{float:left!important;float:left}.jupyter .navbar-right{float:right!important;float:right;margin-right:0}.jupyter .navbar-right~.navbar-right{margin-right:0}}.jupyter .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.jupyter .navbar-default .navbar-brand{color:#777}.jupyter .navbar-default .navbar-brand:focus,.jupyter .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.jupyter .navbar-default .navbar-text{color:#777}.jupyter .navbar-default .navbar-nav>li>a{color:#777}.jupyter .navbar-default .navbar-nav>li>a:focus,.jupyter .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.jupyter .navbar-default .navbar-nav>.active>a,.jupyter .navbar-default .navbar-nav>.active>a:focus,.jupyter .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.jupyter .navbar-default .navbar-nav>.disabled>a,.jupyter .navbar-default .navbar-nav>.disabled>a:focus,.jupyter .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.jupyter .navbar-default .navbar-toggle{border-color:#ddd}.jupyter .navbar-default .navbar-toggle:focus,.jupyter .navbar-default .navbar-toggle:hover{background-color:#ddd}.jupyter .navbar-default .navbar-toggle .icon-bar{background-color:#888}.jupyter .navbar-default .navbar-collapse,.jupyter .navbar-default .navbar-form{border-color:#e7e7e7}.jupyter .navbar-default .navbar-nav>.open>a,.jupyter .navbar-default .navbar-nav>.open>a:focus,.jupyter .navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:540px){.jupyter .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.jupyter .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.jupyter .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.jupyter .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.jupyter .navbar-default .navbar-link{color:#777}.jupyter .navbar-default .navbar-link:hover{color:#333}.jupyter .navbar-default .btn-link{color:#777}.jupyter .navbar-default .btn-link:focus,.jupyter .navbar-default .btn-link:hover{color:#333}.jupyter .navbar-default .btn-link[disabled]:focus,.jupyter .navbar-default .btn-link[disabled]:hover,fieldset[disabled] .jupyter .navbar-default .btn-link:focus,fieldset[disabled] .jupyter .navbar-default .btn-link:hover{color:#ccc}.jupyter .navbar-inverse{background-color:#222;border-color:#080808}.jupyter .navbar-inverse .navbar-brand{color:#9d9d9d}.jupyter .navbar-inverse .navbar-brand:focus,.jupyter .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.jupyter .navbar-inverse .navbar-text{color:#9d9d9d}.jupyter .navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.jupyter .navbar-inverse .navbar-nav>li>a:focus,.jupyter .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.jupyter .navbar-inverse .navbar-nav>.active>a,.jupyter .navbar-inverse .navbar-nav>.active>a:focus,.jupyter .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.jupyter .navbar-inverse .navbar-nav>.disabled>a,.jupyter .navbar-inverse .navbar-nav>.disabled>a:focus,.jupyter .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.jupyter .navbar-inverse .navbar-toggle{border-color:#333}.jupyter .navbar-inverse .navbar-toggle:focus,.jupyter .navbar-inverse .navbar-toggle:hover{background-color:#333}.jupyter .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.jupyter .navbar-inverse .navbar-collapse,.jupyter .navbar-inverse .navbar-form{border-color:#101010}.jupyter .navbar-inverse .navbar-nav>.open>a,.jupyter .navbar-inverse .navbar-nav>.open>a:focus,.jupyter .navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:540px){.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.jupyter .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.jupyter .navbar-inverse .navbar-link{color:#9d9d9d}.jupyter .navbar-inverse .navbar-link:hover{color:#fff}.jupyter .navbar-inverse .btn-link{color:#9d9d9d}.jupyter .navbar-inverse .btn-link:focus,.jupyter .navbar-inverse .btn-link:hover{color:#fff}.jupyter .navbar-inverse .btn-link[disabled]:focus,.jupyter .navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .jupyter .navbar-inverse .btn-link:focus,fieldset[disabled] .jupyter .navbar-inverse .btn-link:hover{color:#444}.jupyter .breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:2px}.jupyter .breadcrumb>li{display:inline-block}.jupyter .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.jupyter .breadcrumb>.active{color:#777}.jupyter .pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:2px}.jupyter .pagination>li{display:inline}.jupyter .pagination>li>a,.jupyter .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.jupyter .pagination>li:first-child>a,.jupyter .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.jupyter .pagination>li:last-child>a,.jupyter .pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.jupyter .pagination>li>a:focus,.jupyter .pagination>li>a:hover,.jupyter .pagination>li>span:focus,.jupyter .pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.jupyter .pagination>.active>a,.jupyter .pagination>.active>a:focus,.jupyter .pagination>.active>a:hover,.jupyter .pagination>.active>span,.jupyter .pagination>.active>span:focus,.jupyter .pagination>.active>span:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.jupyter .pagination>.disabled>a,.jupyter .pagination>.disabled>a:focus,.jupyter .pagination>.disabled>a:hover,.jupyter .pagination>.disabled>span,.jupyter .pagination>.disabled>span:focus,.jupyter .pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.jupyter .pagination-lg>li>a,.jupyter .pagination-lg>li>span{padding:10px 16px;font-size:17px;line-height:1.3333333}.jupyter .pagination-lg>li:first-child>a,.jupyter .pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.jupyter .pagination-lg>li:last-child>a,.jupyter .pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.jupyter .pagination-sm>li>a,.jupyter .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.jupyter .pagination-sm>li:first-child>a,.jupyter .pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.jupyter .pagination-sm>li:last-child>a,.jupyter .pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.jupyter .pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.jupyter .pager li{display:inline}.jupyter .pager li>a,.jupyter .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.jupyter .pager li>a:focus,.jupyter .pager li>a:hover{text-decoration:none;background-color:#eee}.jupyter .pager .next>a,.jupyter .pager .next>span{float:right}.jupyter .pager .previous>a,.jupyter .pager .previous>span{float:left}.jupyter .pager .disabled>a,.jupyter .pager .disabled>a:focus,.jupyter .pager .disabled>a:hover,.jupyter .pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.jupyter .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.jupyter .label:focus,a.jupyter .label:hover{color:#fff;text-decoration:none;cursor:pointer}.jupyter .label:empty{display:none}.btn .jupyter .label{position:relative;top:-1px}.jupyter .label-default{background-color:#777}.jupyter .label-default[href]:focus,.jupyter .label-default[href]:hover{background-color:#5e5e5e}.jupyter .label-primary{background-color:#337ab7}.jupyter .label-primary[href]:focus,.jupyter .label-primary[href]:hover{background-color:#286090}.jupyter .label-success{background-color:#5cb85c}.jupyter .label-success[href]:focus,.jupyter .label-success[href]:hover{background-color:#449d44}.jupyter .label-info{background-color:#5bc0de}.jupyter .label-info[href]:focus,.jupyter .label-info[href]:hover{background-color:#31b0d5}.jupyter .label-warning{background-color:#f0ad4e}.jupyter .label-warning[href]:focus,.jupyter .label-warning[href]:hover{background-color:#ec971f}.jupyter .label-danger{background-color:#d9534f}.jupyter .label-danger[href]:focus,.jupyter .label-danger[href]:hover{background-color:#c9302c}.jupyter .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.jupyter .badge:empty{display:none}.btn .jupyter .badge{position:relative;top:-1px}.btn-group-xs>.btn .jupyter .badge,.btn-xs .jupyter .badge{top:0;padding:1px 5px}a.jupyter .badge:focus,a.jupyter .badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.jupyter .badge,.nav-pills>.active>a>.jupyter .badge{color:#337ab7;background-color:#fff}.list-group-item>.jupyter .badge{float:right}.list-group-item>.jupyter .badge+.jupyter .badge{margin-right:5px}.nav-pills>li>a>.jupyter .badge{margin-left:3px}.jupyter .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jupyter .jumbotron .h1,.jupyter .jumbotron h1{color:inherit}.jupyter .jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.jupyter .jumbotron>hr{border-top-color:#d5d5d5}.container .jupyter .jumbotron,.container-fluid .jupyter .jumbotron{border-radius:3px}.jupyter .jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jupyter .jumbotron{padding-top:48px;padding-bottom:48px}.container .jupyter .jumbotron,.container-fluid .jupyter .jumbotron{padding-left:60px;padding-right:60px}.jupyter .jumbotron .h1,.jupyter .jumbotron h1{font-size:59px}}.jupyter .thumbnail{display:block;padding:4px;margin-bottom:18px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:2px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.jupyter .thumbnail a>img,.jupyter .thumbnail>img{margin-left:auto;margin-right:auto}a.jupyter .thumbnail.active,a.jupyter .thumbnail:focus,a.jupyter .thumbnail:hover{border-color:#337ab7}.jupyter .thumbnail .caption{padding:9px;color:#000}.jupyter .alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:2px}.jupyter .alert h4{margin-top:0;color:inherit}.jupyter .alert .alert-link{font-weight:700}.jupyter .alert>p,.jupyter .alert>ul{margin-bottom:0}.jupyter .alert>p+p{margin-top:5px}.jupyter .alert-dismissable,.jupyter .alert-dismissible{padding-right:35px}.jupyter .alert-dismissable .close,.jupyter .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.jupyter .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.jupyter .alert-success hr{border-top-color:#c9e2b3}.jupyter .alert-success .alert-link{color:#2b542c}.jupyter .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.jupyter .alert-info hr{border-top-color:#a6e1ec}.jupyter .alert-info .alert-link{color:#245269}.jupyter .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.jupyter .alert-warning hr{border-top-color:#f7e1b5}.jupyter .alert-warning .alert-link{color:#66512c}.jupyter .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.jupyter .alert-danger hr{border-top-color:#e4b9c0}.jupyter .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}}.jupyter .progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.jupyter .progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:18px;color:#fff;text-align:center;background-color:#337ab7;-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;-o-transition:width .6s ease;transition:width .6s ease}.jupyter .progress-bar-striped,.jupyter .progress-striped .progress-bar{background-image:-webkit-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-image:-o-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-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}.jupyter .progress-bar.active,.jupyter .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.jupyter .progress-bar-success{background-color:#5cb85c}.progress-striped .jupyter .progress-bar-success{background-image:-webkit-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-image:-o-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-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)}.jupyter .progress-bar-info{background-color:#5bc0de}.progress-striped .jupyter .progress-bar-info{background-image:-webkit-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-image:-o-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-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)}.jupyter .progress-bar-warning{background-color:#f0ad4e}.progress-striped .jupyter .progress-bar-warning{background-image:-webkit-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-image:-o-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-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)}.jupyter .progress-bar-danger{background-color:#d9534f}.progress-striped .jupyter .progress-bar-danger{background-image:-webkit-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-image:-o-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-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)}.jupyter .media{margin-top:15px}.jupyter .media:first-child{margin-top:0}.jupyter .media,.jupyter .media-body{zoom:1;overflow:hidden}.jupyter .media-body{width:10000px}.jupyter .media-object{display:block}.jupyter .media-object.img-thumbnail{max-width:none}.jupyter .media-right,.jupyter .media>.pull-right{padding-left:10px}.jupyter .media-left,.jupyter .media>.pull-left{padding-right:10px}.jupyter .media-body,.jupyter .media-left,.jupyter .media-right{display:table-cell;vertical-align:top}.jupyter .media-middle{vertical-align:middle}.jupyter .media-bottom{vertical-align:bottom}.jupyter .media-heading{margin-top:0;margin-bottom:5px}.jupyter .media-list{padding-left:0;list-style:none}.jupyter .list-group{margin-bottom:20px;padding-left:0}.jupyter .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.jupyter .list-group-item:first-child{border-top-right-radius:2px;border-top-left-radius:2px}.jupyter .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.jupyter a.list-group-item,.jupyter button.list-group-item{color:#555}.jupyter a.list-group-item .list-group-item-heading,.jupyter button.list-group-item .list-group-item-heading{color:#333}.jupyter a.list-group-item:focus,.jupyter a.list-group-item:hover,.jupyter button.list-group-item:focus,.jupyter button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}.jupyter button.list-group-item{width:100%;text-align:left}.jupyter .list-group-item.disabled,.jupyter .list-group-item.disabled:focus,.jupyter .list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.jupyter .list-group-item.disabled .list-group-item-heading,.jupyter .list-group-item.disabled:focus .list-group-item-heading,.jupyter .list-group-item.disabled:hover .list-group-item-heading{color:inherit}.jupyter .list-group-item.disabled .list-group-item-text,.jupyter .list-group-item.disabled:focus .list-group-item-text,.jupyter .list-group-item.disabled:hover .list-group-item-text{color:#777}.jupyter .list-group-item.active,.jupyter .list-group-item.active:focus,.jupyter .list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.jupyter .list-group-item.active .list-group-item-heading,.jupyter .list-group-item.active .list-group-item-heading>.small,.jupyter .list-group-item.active .list-group-item-heading>small,.jupyter .list-group-item.active:focus .list-group-item-heading,.jupyter .list-group-item.active:focus .list-group-item-heading>.small,.jupyter .list-group-item.active:focus .list-group-item-heading>small,.jupyter .list-group-item.active:hover .list-group-item-heading,.jupyter .list-group-item.active:hover .list-group-item-heading>.small,.jupyter .list-group-item.active:hover .list-group-item-heading>small{color:inherit}.jupyter .list-group-item.active .list-group-item-text,.jupyter .list-group-item.active:focus .list-group-item-text,.jupyter .list-group-item.active:hover .list-group-item-text{color:#c7ddef}.jupyter .list-group-item-success{color:#3c763d;background-color:#dff0d8}a.jupyter .list-group-item-success,button.jupyter .list-group-item-success{color:#3c763d}a.jupyter .list-group-item-success .list-group-item-heading,button.jupyter .list-group-item-success .list-group-item-heading{color:inherit}a.jupyter .list-group-item-success:focus,a.jupyter .list-group-item-success:hover,button.jupyter .list-group-item-success:focus,button.jupyter .list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.jupyter .list-group-item-success.active,a.jupyter .list-group-item-success.active:focus,a.jupyter .list-group-item-success.active:hover,button.jupyter .list-group-item-success.active,button.jupyter .list-group-item-success.active:focus,button.jupyter .list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.jupyter .list-group-item-info{color:#31708f;background-color:#d9edf7}a.jupyter .list-group-item-info,button.jupyter .list-group-item-info{color:#31708f}a.jupyter .list-group-item-info .list-group-item-heading,button.jupyter .list-group-item-info .list-group-item-heading{color:inherit}a.jupyter .list-group-item-info:focus,a.jupyter .list-group-item-info:hover,button.jupyter .list-group-item-info:focus,button.jupyter .list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.jupyter .list-group-item-info.active,a.jupyter .list-group-item-info.active:focus,a.jupyter .list-group-item-info.active:hover,button.jupyter .list-group-item-info.active,button.jupyter .list-group-item-info.active:focus,button.jupyter .list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.jupyter .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.jupyter .list-group-item-warning,button.jupyter .list-group-item-warning{color:#8a6d3b}a.jupyter .list-group-item-warning .list-group-item-heading,button.jupyter .list-group-item-warning .list-group-item-heading{color:inherit}a.jupyter .list-group-item-warning:focus,a.jupyter .list-group-item-warning:hover,button.jupyter .list-group-item-warning:focus,button.jupyter .list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.jupyter .list-group-item-warning.active,a.jupyter .list-group-item-warning.active:focus,a.jupyter .list-group-item-warning.active:hover,button.jupyter .list-group-item-warning.active,button.jupyter .list-group-item-warning.active:focus,button.jupyter .list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.jupyter .list-group-item-danger{color:#a94442;background-color:#f2dede}a.jupyter .list-group-item-danger,button.jupyter .list-group-item-danger{color:#a94442}a.jupyter .list-group-item-danger .list-group-item-heading,button.jupyter .list-group-item-danger .list-group-item-heading{color:inherit}a.jupyter .list-group-item-danger:focus,a.jupyter .list-group-item-danger:hover,button.jupyter .list-group-item-danger:focus,button.jupyter .list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.jupyter .list-group-item-danger.active,a.jupyter .list-group-item-danger.active:focus,a.jupyter .list-group-item-danger.active:hover,button.jupyter .list-group-item-danger.active,button.jupyter .list-group-item-danger.active:focus,button.jupyter .list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.jupyter .list-group-item-heading{margin-top:0;margin-bottom:5px}.jupyter .list-group-item-text{margin-bottom:0;line-height:1.3}.jupyter .panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.jupyter .panel-body{padding:15px}.jupyter .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.jupyter .panel-heading>.dropdown .dropdown-toggle{color:inherit}.jupyter .panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.jupyter .panel-title>.small,.jupyter .panel-title>.small>a,.jupyter .panel-title>a,.jupyter .panel-title>small,.jupyter .panel-title>small>a{color:inherit}.jupyter .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.jupyter .panel>.list-group,.jupyter .panel>.panel-collapse>.list-group{margin-bottom:0}.jupyter .panel>.list-group .list-group-item,.jupyter .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.jupyter .panel>.list-group:first-child .list-group-item:first-child,.jupyter .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}.jupyter .panel>.list-group:last-child .list-group-item:last-child,.jupyter .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}.jupyter .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.jupyter .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.jupyter .list-group+.panel-footer{border-top-width:0}.jupyter .panel>.panel-collapse>.table,.jupyter .panel>.table,.jupyter .panel>.table-responsive>.table{margin-bottom:0}.jupyter .panel>.panel-collapse>.table caption,.jupyter .panel>.table caption,.jupyter .panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.jupyter .panel>.table-responsive:first-child>.table:first-child,.jupyter .panel>.table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.jupyter .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.jupyter .panel>.table:first-child>tbody:first-child>tr:first-child,.jupyter .panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.jupyter .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.jupyter .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.jupyter .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.jupyter .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.jupyter .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.jupyter .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.jupyter .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.jupyter .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.jupyter .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.jupyter .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.jupyter .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.jupyter .panel>.table-responsive:last-child>.table:last-child,.jupyter .panel>.table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.jupyter .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.jupyter .panel>.table:last-child>tbody:last-child>tr:last-child,.jupyter .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.jupyter .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.jupyter .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.jupyter .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.jupyter .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.jupyter .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.jupyter .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.jupyter .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.jupyter .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.jupyter .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.jupyter .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.jupyter .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.jupyter .panel>.panel-body+.table,.jupyter .panel>.panel-body+.table-responsive,.jupyter .panel>.table+.panel-body,.jupyter .panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.jupyter .panel>.table>tbody:first-child>tr:first-child td,.jupyter .panel>.table>tbody:first-child>tr:first-child th{border-top:0}.jupyter .panel>.table-bordered,.jupyter .panel>.table-responsive>.table-bordered{border:0}.jupyter .panel>.table-bordered>tbody>tr>td:first-child,.jupyter .panel>.table-bordered>tbody>tr>th:first-child,.jupyter .panel>.table-bordered>tfoot>tr>td:first-child,.jupyter .panel>.table-bordered>tfoot>tr>th:first-child,.jupyter .panel>.table-bordered>thead>tr>td:first-child,.jupyter .panel>.table-bordered>thead>tr>th:first-child,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.jupyter .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.jupyter .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.jupyter .panel>.table-bordered>tbody>tr>td:last-child,.jupyter .panel>.table-bordered>tbody>tr>th:last-child,.jupyter .panel>.table-bordered>tfoot>tr>td:last-child,.jupyter .panel>.table-bordered>tfoot>tr>th:last-child,.jupyter .panel>.table-bordered>thead>tr>td:last-child,.jupyter .panel>.table-bordered>thead>tr>th:last-child,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.jupyter .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.jupyter .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.jupyter .panel>.table-bordered>tbody>tr:first-child>td,.jupyter .panel>.table-bordered>tbody>tr:first-child>th,.jupyter .panel>.table-bordered>thead>tr:first-child>td,.jupyter .panel>.table-bordered>thead>tr:first-child>th,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.jupyter .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.jupyter .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.jupyter .panel>.table-bordered>tbody>tr:last-child>td,.jupyter .panel>.table-bordered>tbody>tr:last-child>th,.jupyter .panel>.table-bordered>tfoot>tr:last-child>td,.jupyter .panel>.table-bordered>tfoot>tr:last-child>th,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.jupyter .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.jupyter .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.jupyter .panel>.table-responsive{border:0;margin-bottom:0}.jupyter .panel-group{margin-bottom:18px}.jupyter .panel-group .panel{margin-bottom:0;border-radius:2px}.jupyter .panel-group .panel+.panel{margin-top:5px}.jupyter .panel-group .panel-heading{border-bottom:0}.jupyter .panel-group .panel-heading+.panel-collapse>.list-group,.jupyter .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.jupyter .panel-group .panel-footer{border-top:0}.jupyter .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.jupyter .panel-default{border-color:#ddd}.jupyter .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.jupyter .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.jupyter .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.jupyter .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.jupyter .panel-primary{border-color:#337ab7}.jupyter .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.jupyter .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.jupyter .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.jupyter .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.jupyter .panel-success{border-color:#d6e9c6}.jupyter .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.jupyter .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.jupyter .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.jupyter .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.jupyter .panel-info{border-color:#bce8f1}.jupyter .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.jupyter .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.jupyter .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.jupyter .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.jupyter .panel-warning{border-color:#faebcc}.jupyter .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.jupyter .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.jupyter .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.jupyter .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.jupyter .panel-danger{border-color:#ebccd1}.jupyter .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.jupyter .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.jupyter .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.jupyter .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.jupyter .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.jupyter .embed-responsive .embed-responsive-item,.jupyter .embed-responsive embed,.jupyter .embed-responsive iframe,.jupyter .embed-responsive object,.jupyter .embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.jupyter .embed-responsive-16by9{padding-bottom:56.25%}.jupyter .embed-responsive-4by3{padding-bottom:75%}.jupyter .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.jupyter .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.jupyter .well-lg{padding:24px;border-radius:3px}.jupyter .well-sm{padding:9px;border-radius:1px}.jupyter .close{float:right;font-size:19.5px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.jupyter .close:focus,.jupyter .close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.jupyter .close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.jupyter .modal-open{overflow:hidden}.jupyter .modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.jupyter .modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.jupyter .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.jupyter .modal-open .modal{overflow-x:hidden;overflow-y:auto}.jupyter .modal-dialog{position:relative;width:auto;margin:10px}.jupyter .modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.jupyter .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.jupyter .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.jupyter .modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.jupyter .modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.43px}.jupyter .modal-header .close{margin-top:-2px}.jupyter .modal-title{margin:0;line-height:1.42857143}.jupyter .modal-body{position:relative;padding:15px}.jupyter .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.jupyter .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.jupyter .modal-footer .btn-group .btn+.btn{margin-left:-1px}.jupyter .modal-footer .btn-block+.btn-block{margin-left:0}.jupyter .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.jupyter .modal-dialog{width:600px;margin:30px auto}.jupyter .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.jupyter .modal-sm{width:300px}}@media (min-width:992px){.jupyter .modal-lg{width:900px}}.jupyter .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.jupyter .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.jupyter .tooltip.top{margin-top:-3px;padding:5px 0}.jupyter .tooltip.right{margin-left:3px;padding:0 5px}.jupyter .tooltip.bottom{margin-top:3px;padding:5px 0}.jupyter .tooltip.left{margin-left:-3px;padding:0 5px}.jupyter .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:2px}.jupyter .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.jupyter .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.jupyter .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.jupyter .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.jupyter .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.jupyter .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.jupyter .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.jupyter .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.jupyter .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.jupyter .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:13px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:3px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.jupyter .popover.top{margin-top:-10px}.jupyter .popover.right{margin-left:10px}.jupyter .popover.bottom{margin-top:10px}.jupyter .popover.left{margin-left:-10px}.jupyter .popover-title{margin:0;padding:8px 14px;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 0 0}.jupyter .popover-content{padding:9px 14px}.jupyter .popover>.arrow,.jupyter .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.jupyter .popover>.arrow{border-width:11px}.jupyter .popover>.arrow:after{border-width:10px;content:""}.jupyter .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}.jupyter .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.jupyter .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)}.jupyter .popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.jupyter .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}.jupyter .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.jupyter .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)}.jupyter .popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.jupyter .carousel{position:relative}.jupyter .carousel-inner{position:relative;overflow:hidden;width:100%}.jupyter .carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.jupyter .carousel-inner>.item>a>img,.jupyter .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.jupyter .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-moz-transition:-moz-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.jupyter .carousel-inner>.item.active.right,.jupyter .carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.jupyter .carousel-inner>.item.active.left,.jupyter .carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.jupyter .carousel-inner>.item.active,.jupyter .carousel-inner>.item.next.left,.jupyter .carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.jupyter .carousel-inner>.active,.jupyter .carousel-inner>.next,.jupyter .carousel-inner>.prev{display:block}.jupyter .carousel-inner>.active{left:0}.jupyter .carousel-inner>.next,.jupyter .carousel-inner>.prev{position:absolute;top:0;width:100%}.jupyter .carousel-inner>.next{left:100%}.jupyter .carousel-inner>.prev{left:-100%}.jupyter .carousel-inner>.next.left,.jupyter .carousel-inner>.prev.right{left:0}.jupyter .carousel-inner>.active.left{left:-100%}.jupyter .carousel-inner>.active.right{left:100%}.jupyter .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.jupyter .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);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)}.jupyter .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);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)}.jupyter .carousel-control:focus,.jupyter .carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.jupyter .carousel-control .glyphicon-chevron-left,.jupyter .carousel-control .glyphicon-chevron-right,.jupyter .carousel-control .icon-next,.jupyter .carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.jupyter .carousel-control .glyphicon-chevron-left,.jupyter .carousel-control .icon-prev{left:50%;margin-left:-10px}.jupyter .carousel-control .glyphicon-chevron-right,.jupyter .carousel-control .icon-next{right:50%;margin-right:-10px}.jupyter .carousel-control .icon-next,.jupyter .carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.jupyter .carousel-control .icon-prev:before{content:'\2039'}.jupyter .carousel-control .icon-next:before{content:'\203a'}.jupyter .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}.jupyter .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:transparent}.jupyter .carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.jupyter .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)}.jupyter .carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.jupyter .carousel-control .glyphicon-chevron-left,.jupyter .carousel-control .glyphicon-chevron-right,.jupyter .carousel-control .icon-next,.jupyter .carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.jupyter .carousel-control .glyphicon-chevron-left,.jupyter .carousel-control .icon-prev{margin-left:-15px}.jupyter .carousel-control .glyphicon-chevron-right,.jupyter .carousel-control .icon-next{margin-right:-15px}.jupyter .carousel-caption{left:20%;right:20%;padding-bottom:30px}.jupyter .carousel-indicators{bottom:20px}}.jupyter .clearfix:after,.jupyter .clearfix:before,.jupyter .jupyter .btn-group-vertical>.btn-group:after,.jupyter .jupyter .btn-group-vertical>.btn-group:before,.jupyter .jupyter .btn-toolbar:after,.jupyter .jupyter .btn-toolbar:before,.jupyter .jupyter .container-fluid:after,.jupyter .jupyter .container-fluid:before,.jupyter .jupyter .container:after,.jupyter .jupyter .container:before,.jupyter .jupyter .dl-horizontal dd:after,.jupyter .jupyter .dl-horizontal dd:before,.jupyter .jupyter .form-horizontal .form-group:after,.jupyter .jupyter .form-horizontal .form-group:before,.jupyter .jupyter .item_buttons:after,.jupyter .jupyter .item_buttons:before,.jupyter .jupyter .modal-footer:after,.jupyter .jupyter .modal-footer:before,.jupyter .jupyter .nav:after,.jupyter .jupyter .nav:before,.jupyter .jupyter .navbar-collapse:after,.jupyter .jupyter .navbar-collapse:before,.jupyter .jupyter .navbar-header:after,.jupyter .jupyter .navbar-header:before,.jupyter .jupyter .navbar:after,.jupyter .jupyter .navbar:before,.jupyter .jupyter .pager:after,.jupyter .jupyter .pager:before,.jupyter .jupyter .panel-body:after,.jupyter .jupyter .panel-body:before,.jupyter .jupyter .row:after,.jupyter .jupyter .row:before{content:" ";display:table}.jupyter .clearfix:after,.jupyter .jupyter .btn-group-vertical>.btn-group:after,.jupyter .jupyter .btn-toolbar:after,.jupyter .jupyter .container-fluid:after,.jupyter .jupyter .container:after,.jupyter .jupyter .dl-horizontal dd:after,.jupyter .jupyter .form-horizontal .form-group:after,.jupyter .jupyter .item_buttons:after,.jupyter .jupyter .modal-footer:after,.jupyter .jupyter .nav:after,.jupyter .jupyter .navbar-collapse:after,.jupyter .jupyter .navbar-header:after,.jupyter .jupyter .navbar:after,.jupyter .jupyter .pager:after,.jupyter .jupyter .panel-body:after,.jupyter .jupyter .row:after{clear:both}.jupyter .center-block{display:block;margin-left:auto;margin-right:auto}.jupyter .pull-right{float:right!important}.jupyter .pull-left{float:left!important}.jupyter .hide{display:none!important}.jupyter .show{display:block!important}.jupyter .invisible{visibility:hidden}.jupyter .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.jupyter .hidden{display:none!important}.jupyter .affix{position:fixed}@-ms-viewport{width:device-width}.jupyter .visible-lg,.jupyter .visible-md,.jupyter .visible-sm,.jupyter .visible-xs{display:none!important}.jupyter .visible-lg-block,.jupyter .visible-lg-inline,.jupyter .visible-lg-inline-block,.jupyter .visible-md-block,.jupyter .visible-md-inline,.jupyter .visible-md-inline-block,.jupyter .visible-sm-block,.jupyter .visible-sm-inline,.jupyter .visible-sm-inline-block,.jupyter .visible-xs-block,.jupyter .visible-xs-inline,.jupyter .visible-xs-inline-block{display:none!important}@media (max-width:767px){.jupyter .visible-xs{display:block!important}table.jupyter .visible-xs{display:table!important}tr.jupyter .visible-xs{display:table-row!important}td.jupyter .visible-xs,th.jupyter .visible-xs{display:table-cell!important}}@media (max-width:767px){.jupyter .visible-xs-block{display:block!important}}@media (max-width:767px){.jupyter .visible-xs-inline{display:inline!important}}@media (max-width:767px){.jupyter .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.jupyter .visible-sm{display:block!important}table.jupyter .visible-sm{display:table!important}tr.jupyter .visible-sm{display:table-row!important}td.jupyter .visible-sm,th.jupyter .visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.jupyter .visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.jupyter .visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.jupyter .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.jupyter .visible-md{display:block!important}table.jupyter .visible-md{display:table!important}tr.jupyter .visible-md{display:table-row!important}td.jupyter .visible-md,th.jupyter .visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.jupyter .visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.jupyter .visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.jupyter .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.jupyter .visible-lg{display:block!important}table.jupyter .visible-lg{display:table!important}tr.jupyter .visible-lg{display:table-row!important}td.jupyter .visible-lg,th.jupyter .visible-lg{display:table-cell!important}}@media (min-width:1200px){.jupyter .visible-lg-block{display:block!important}}@media (min-width:1200px){.jupyter .visible-lg-inline{display:inline!important}}@media (min-width:1200px){.jupyter .visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.jupyter .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.jupyter .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.jupyter .hidden-md{display:none!important}}@media (min-width:1200px){.jupyter .hidden-lg{display:none!important}}.jupyter .visible-print{display:none!important}@media print{.jupyter .visible-print{display:block!important}table.jupyter .visible-print{display:table!important}tr.jupyter .visible-print{display:table-row!important}td.jupyter .visible-print,th.jupyter .visible-print{display:table-cell!important}}.jupyter .visible-print-block{display:none!important}@media print{.jupyter .visible-print-block{display:block!important}}.jupyter .visible-print-inline{display:none!important}@media print{.jupyter .visible-print-inline{display:inline!important}}.jupyter .visible-print-inline-block{display:none!important}@media print{.jupyter .visible-print-inline-block{display:inline-block!important}}@media print{.jupyter .hidden-print{display:none!important}}@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.2.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff?v=4.2.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.2.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.jupyter .fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.jupyter .fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.jupyter .fa-2x{font-size:2em}.jupyter .fa-3x{font-size:3em}.jupyter .fa-4x{font-size:4em}.jupyter .fa-5x{font-size:5em}.jupyter .fa-fw{width:1.28571429em;text-align:center}.jupyter .fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.jupyter .fa-ul>li{position:relative}.jupyter .fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.jupyter .fa-li.fa-lg{left:-1.85714286em}.jupyter .fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.jupyter .pull-right{float:right}.jupyter .pull-left{float:left}.jupyter .fa.pull-left{margin-right:.3em}.jupyter .fa.pull-right{margin-left:.3em}.jupyter .fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-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)}}.jupyter .fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.jupyter .fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.jupyter .fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.jupyter .fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.jupyter .fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}.jupyter :root .fa-flip-horizontal,.jupyter :root .fa-flip-vertical,.jupyter :root .fa-rotate-180,.jupyter :root .fa-rotate-270,.jupyter :root .fa-rotate-90{filter:none}.jupyter .fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.jupyter .fa-stack-1x,.jupyter .fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.jupyter .fa-stack-1x{line-height:inherit}.jupyter .fa-stack-2x{font-size:2em}.jupyter .fa-inverse{color:#fff}.jupyter .fa-glass:before{content:"\f000"}.jupyter .fa-music:before{content:"\f001"}.jupyter .fa-search:before{content:"\f002"}.jupyter .fa-envelope-o:before{content:"\f003"}.jupyter .fa-heart:before{content:"\f004"}.jupyter .fa-star:before{content:"\f005"}.jupyter .fa-star-o:before{content:"\f006"}.jupyter .fa-user:before{content:"\f007"}.jupyter .fa-film:before{content:"\f008"}.jupyter .fa-th-large:before{content:"\f009"}.jupyter .fa-th:before{content:"\f00a"}.jupyter .fa-th-list:before{content:"\f00b"}.jupyter .fa-check:before{content:"\f00c"}.jupyter .fa-close:before,.jupyter .fa-remove:before,.jupyter .fa-times:before{content:"\f00d"}.jupyter .fa-search-plus:before{content:"\f00e"}.jupyter .fa-search-minus:before{content:"\f010"}.jupyter .fa-power-off:before{content:"\f011"}.jupyter .fa-signal:before{content:"\f012"}.jupyter .fa-cog:before,.jupyter .fa-gear:before{content:"\f013"}.jupyter .fa-trash-o:before{content:"\f014"}.jupyter .fa-home:before{content:"\f015"}.jupyter .fa-file-o:before{content:"\f016"}.jupyter .fa-clock-o:before{content:"\f017"}.jupyter .fa-road:before{content:"\f018"}.jupyter .fa-download:before{content:"\f019"}.jupyter .fa-arrow-circle-o-down:before{content:"\f01a"}.jupyter .fa-arrow-circle-o-up:before{content:"\f01b"}.jupyter .fa-inbox:before{content:"\f01c"}.jupyter .fa-play-circle-o:before{content:"\f01d"}.jupyter .fa-repeat:before,.jupyter .fa-rotate-right:before{content:"\f01e"}.jupyter .fa-refresh:before{content:"\f021"}.jupyter .fa-list-alt:before{content:"\f022"}.jupyter .fa-lock:before{content:"\f023"}.jupyter .fa-flag:before{content:"\f024"}.jupyter .fa-headphones:before{content:"\f025"}.jupyter .fa-volume-off:before{content:"\f026"}.jupyter .fa-volume-down:before{content:"\f027"}.jupyter .fa-volume-up:before{content:"\f028"}.jupyter .fa-qrcode:before{content:"\f029"}.jupyter .fa-barcode:before{content:"\f02a"}.jupyter .fa-tag:before{content:"\f02b"}.jupyter .fa-tags:before{content:"\f02c"}.jupyter .fa-book:before{content:"\f02d"}.jupyter .fa-bookmark:before{content:"\f02e"}.jupyter .fa-print:before{content:"\f02f"}.jupyter .fa-camera:before{content:"\f030"}.jupyter .fa-font:before{content:"\f031"}.jupyter .fa-bold:before{content:"\f032"}.jupyter .fa-italic:before{content:"\f033"}.jupyter .fa-text-height:before{content:"\f034"}.jupyter .fa-text-width:before{content:"\f035"}.jupyter .fa-align-left:before{content:"\f036"}.jupyter .fa-align-center:before{content:"\f037"}.jupyter .fa-align-right:before{content:"\f038"}.jupyter .fa-align-justify:before{content:"\f039"}.jupyter .fa-list:before{content:"\f03a"}.jupyter .fa-dedent:before,.jupyter .fa-outdent:before{content:"\f03b"}.jupyter .fa-indent:before{content:"\f03c"}.jupyter .fa-video-camera:before{content:"\f03d"}.jupyter .fa-image:before,.jupyter .fa-photo:before,.jupyter .fa-picture-o:before{content:"\f03e"}.jupyter .fa-pencil:before{content:"\f040"}.jupyter .fa-map-marker:before{content:"\f041"}.jupyter .fa-adjust:before{content:"\f042"}.jupyter .fa-tint:before{content:"\f043"}.jupyter .fa-edit:before,.jupyter .fa-pencil-square-o:before{content:"\f044"}.jupyter .fa-share-square-o:before{content:"\f045"}.jupyter .fa-check-square-o:before{content:"\f046"}.jupyter .fa-arrows:before{content:"\f047"}.jupyter .fa-step-backward:before{content:"\f048"}.jupyter .fa-fast-backward:before{content:"\f049"}.jupyter .fa-backward:before{content:"\f04a"}.jupyter .fa-play:before{content:"\f04b"}.jupyter .fa-pause:before{content:"\f04c"}.jupyter .fa-stop:before{content:"\f04d"}.jupyter .fa-forward:before{content:"\f04e"}.jupyter .fa-fast-forward:before{content:"\f050"}.jupyter .fa-step-forward:before{content:"\f051"}.jupyter .fa-eject:before{content:"\f052"}.jupyter .fa-chevron-left:before{content:"\f053"}.jupyter .fa-chevron-right:before{content:"\f054"}.jupyter .fa-plus-circle:before{content:"\f055"}.jupyter .fa-minus-circle:before{content:"\f056"}.jupyter .fa-times-circle:before{content:"\f057"}.jupyter .fa-check-circle:before{content:"\f058"}.jupyter .fa-question-circle:before{content:"\f059"}.jupyter .fa-info-circle:before{content:"\f05a"}.jupyter .fa-crosshairs:before{content:"\f05b"}.jupyter .fa-times-circle-o:before{content:"\f05c"}.jupyter .fa-check-circle-o:before{content:"\f05d"}.jupyter .fa-ban:before{content:"\f05e"}.jupyter .fa-arrow-left:before{content:"\f060"}.jupyter .fa-arrow-right:before{content:"\f061"}.jupyter .fa-arrow-up:before{content:"\f062"}.jupyter .fa-arrow-down:before{content:"\f063"}.jupyter .fa-mail-forward:before,.jupyter .fa-share:before{content:"\f064"}.jupyter .fa-expand:before{content:"\f065"}.jupyter .fa-compress:before{content:"\f066"}.jupyter .fa-plus:before{content:"\f067"}.jupyter .fa-minus:before{content:"\f068"}.jupyter .fa-asterisk:before{content:"\f069"}.jupyter .fa-exclamation-circle:before{content:"\f06a"}.jupyter .fa-gift:before{content:"\f06b"}.jupyter .fa-leaf:before{content:"\f06c"}.jupyter .fa-fire:before{content:"\f06d"}.jupyter .fa-eye:before{content:"\f06e"}.jupyter .fa-eye-slash:before{content:"\f070"}.jupyter .fa-exclamation-triangle:before,.jupyter .fa-warning:before{content:"\f071"}.jupyter .fa-plane:before{content:"\f072"}.jupyter .fa-calendar:before{content:"\f073"}.jupyter .fa-random:before{content:"\f074"}.jupyter .fa-comment:before{content:"\f075"}.jupyter .fa-magnet:before{content:"\f076"}.jupyter .fa-chevron-up:before{content:"\f077"}.jupyter .fa-chevron-down:before{content:"\f078"}.jupyter .fa-retweet:before{content:"\f079"}.jupyter .fa-shopping-cart:before{content:"\f07a"}.jupyter .fa-folder:before{content:"\f07b"}.jupyter .fa-folder-open:before{content:"\f07c"}.jupyter .fa-arrows-v:before{content:"\f07d"}.jupyter .fa-arrows-h:before{content:"\f07e"}.jupyter .fa-bar-chart-o:before,.jupyter .fa-bar-chart:before{content:"\f080"}.jupyter .fa-twitter-square:before{content:"\f081"}.jupyter .fa-facebook-square:before{content:"\f082"}.jupyter .fa-camera-retro:before{content:"\f083"}.jupyter .fa-key:before{content:"\f084"}.jupyter .fa-cogs:before,.jupyter .fa-gears:before{content:"\f085"}.jupyter .fa-comments:before{content:"\f086"}.jupyter .fa-thumbs-o-up:before{content:"\f087"}.jupyter .fa-thumbs-o-down:before{content:"\f088"}.jupyter .fa-star-half:before{content:"\f089"}.jupyter .fa-heart-o:before{content:"\f08a"}.jupyter .fa-sign-out:before{content:"\f08b"}.jupyter .fa-linkedin-square:before{content:"\f08c"}.jupyter .fa-thumb-tack:before{content:"\f08d"}.jupyter .fa-external-link:before{content:"\f08e"}.jupyter .fa-sign-in:before{content:"\f090"}.jupyter .fa-trophy:before{content:"\f091"}.jupyter .fa-github-square:before{content:"\f092"}.jupyter .fa-upload:before{content:"\f093"}.jupyter .fa-lemon-o:before{content:"\f094"}.jupyter .fa-phone:before{content:"\f095"}.jupyter .fa-square-o:before{content:"\f096"}.jupyter .fa-bookmark-o:before{content:"\f097"}.jupyter .fa-phone-square:before{content:"\f098"}.jupyter .fa-twitter:before{content:"\f099"}.jupyter .fa-facebook:before{content:"\f09a"}.jupyter .fa-github:before{content:"\f09b"}.jupyter .fa-unlock:before{content:"\f09c"}.jupyter .fa-credit-card:before{content:"\f09d"}.jupyter .fa-rss:before{content:"\f09e"}.jupyter .fa-hdd-o:before{content:"\f0a0"}.jupyter .fa-bullhorn:before{content:"\f0a1"}.jupyter .fa-bell:before{content:"\f0f3"}.jupyter .fa-certificate:before{content:"\f0a3"}.jupyter .fa-hand-o-right:before{content:"\f0a4"}.jupyter .fa-hand-o-left:before{content:"\f0a5"}.jupyter .fa-hand-o-up:before{content:"\f0a6"}.jupyter .fa-hand-o-down:before{content:"\f0a7"}.jupyter .fa-arrow-circle-left:before{content:"\f0a8"}.jupyter .fa-arrow-circle-right:before{content:"\f0a9"}.jupyter .fa-arrow-circle-up:before{content:"\f0aa"}.jupyter .fa-arrow-circle-down:before{content:"\f0ab"}.jupyter .fa-globe:before{content:"\f0ac"}.jupyter .fa-wrench:before{content:"\f0ad"}.jupyter .fa-tasks:before{content:"\f0ae"}.jupyter .fa-filter:before{content:"\f0b0"}.jupyter .fa-briefcase:before{content:"\f0b1"}.jupyter .fa-arrows-alt:before{content:"\f0b2"}.jupyter .fa-group:before,.jupyter .fa-users:before{content:"\f0c0"}.jupyter .fa-chain:before,.jupyter .fa-link:before{content:"\f0c1"}.jupyter .fa-cloud:before{content:"\f0c2"}.jupyter .fa-flask:before{content:"\f0c3"}.jupyter .fa-cut:before,.jupyter .fa-scissors:before{content:"\f0c4"}.jupyter .fa-copy:before,.jupyter .fa-files-o:before{content:"\f0c5"}.jupyter .fa-paperclip:before{content:"\f0c6"}.jupyter .fa-floppy-o:before,.jupyter .fa-save:before{content:"\f0c7"}.jupyter .fa-square:before{content:"\f0c8"}.jupyter .fa-bars:before,.jupyter .fa-navicon:before,.jupyter .fa-reorder:before{content:"\f0c9"}.jupyter .fa-list-ul:before{content:"\f0ca"}.jupyter .fa-list-ol:before{content:"\f0cb"}.jupyter .fa-strikethrough:before{content:"\f0cc"}.jupyter .fa-underline:before{content:"\f0cd"}.jupyter .fa-table:before{content:"\f0ce"}.jupyter .fa-magic:before{content:"\f0d0"}.jupyter .fa-truck:before{content:"\f0d1"}.jupyter .fa-pinterest:before{content:"\f0d2"}.jupyter .fa-pinterest-square:before{content:"\f0d3"}.jupyter .fa-google-plus-square:before{content:"\f0d4"}.jupyter .fa-google-plus:before{content:"\f0d5"}.jupyter .fa-money:before{content:"\f0d6"}.jupyter .fa-caret-down:before{content:"\f0d7"}.jupyter .fa-caret-up:before{content:"\f0d8"}.jupyter .fa-caret-left:before{content:"\f0d9"}.jupyter .fa-caret-right:before{content:"\f0da"}.jupyter .fa-columns:before{content:"\f0db"}.jupyter .fa-sort:before,.jupyter .fa-unsorted:before{content:"\f0dc"}.jupyter .fa-sort-desc:before,.jupyter .fa-sort-down:before{content:"\f0dd"}.jupyter .fa-sort-asc:before,.jupyter .fa-sort-up:before{content:"\f0de"}.jupyter .fa-envelope:before{content:"\f0e0"}.jupyter .fa-linkedin:before{content:"\f0e1"}.jupyter .fa-rotate-left:before,.jupyter .fa-undo:before{content:"\f0e2"}.jupyter .fa-gavel:before,.jupyter .fa-legal:before{content:"\f0e3"}.jupyter .fa-dashboard:before,.jupyter .fa-tachometer:before{content:"\f0e4"}.jupyter .fa-comment-o:before{content:"\f0e5"}.jupyter .fa-comments-o:before{content:"\f0e6"}.jupyter .fa-bolt:before,.jupyter .fa-flash:before{content:"\f0e7"}.jupyter .fa-sitemap:before{content:"\f0e8"}.jupyter .fa-umbrella:before{content:"\f0e9"}.jupyter .fa-clipboard:before,.jupyter .fa-paste:before{content:"\f0ea"}.jupyter .fa-lightbulb-o:before{content:"\f0eb"}.jupyter .fa-exchange:before{content:"\f0ec"}.jupyter .fa-cloud-download:before{content:"\f0ed"}.jupyter .fa-cloud-upload:before{content:"\f0ee"}.jupyter .fa-user-md:before{content:"\f0f0"}.jupyter .fa-stethoscope:before{content:"\f0f1"}.jupyter .fa-suitcase:before{content:"\f0f2"}.jupyter .fa-bell-o:before{content:"\f0a2"}.jupyter .fa-coffee:before{content:"\f0f4"}.jupyter .fa-cutlery:before{content:"\f0f5"}.jupyter .fa-file-text-o:before{content:"\f0f6"}.jupyter .fa-building-o:before{content:"\f0f7"}.jupyter .fa-hospital-o:before{content:"\f0f8"}.jupyter .fa-ambulance:before{content:"\f0f9"}.jupyter .fa-medkit:before{content:"\f0fa"}.jupyter .fa-fighter-jet:before{content:"\f0fb"}.jupyter .fa-beer:before{content:"\f0fc"}.jupyter .fa-h-square:before{content:"\f0fd"}.jupyter .fa-plus-square:before{content:"\f0fe"}.jupyter .fa-angle-double-left:before{content:"\f100"}.jupyter .fa-angle-double-right:before{content:"\f101"}.jupyter .fa-angle-double-up:before{content:"\f102"}.jupyter .fa-angle-double-down:before{content:"\f103"}.jupyter .fa-angle-left:before{content:"\f104"}.jupyter .fa-angle-right:before{content:"\f105"}.jupyter .fa-angle-up:before{content:"\f106"}.jupyter .fa-angle-down:before{content:"\f107"}.jupyter .fa-desktop:before{content:"\f108"}.jupyter .fa-laptop:before{content:"\f109"}.jupyter .fa-tablet:before{content:"\f10a"}.jupyter .fa-mobile-phone:before,.jupyter .fa-mobile:before{content:"\f10b"}.jupyter .fa-circle-o:before{content:"\f10c"}.jupyter .fa-quote-left:before{content:"\f10d"}.jupyter .fa-quote-right:before{content:"\f10e"}.jupyter .fa-spinner:before{content:"\f110"}.jupyter .fa-circle:before{content:"\f111"}.jupyter .fa-mail-reply:before,.jupyter .fa-reply:before{content:"\f112"}.jupyter .fa-github-alt:before{content:"\f113"}.jupyter .fa-folder-o:before{content:"\f114"}.jupyter .fa-folder-open-o:before{content:"\f115"}.jupyter .fa-smile-o:before{content:"\f118"}.jupyter .fa-frown-o:before{content:"\f119"}.jupyter .fa-meh-o:before{content:"\f11a"}.jupyter .fa-gamepad:before{content:"\f11b"}.jupyter .fa-keyboard-o:before{content:"\f11c"}.jupyter .fa-flag-o:before{content:"\f11d"}.jupyter .fa-flag-checkered:before{content:"\f11e"}.jupyter .fa-terminal:before{content:"\f120"}.jupyter .fa-code:before{content:"\f121"}.jupyter .fa-mail-reply-all:before,.jupyter .fa-reply-all:before{content:"\f122"}.jupyter .fa-star-half-empty:before,.jupyter .fa-star-half-full:before,.jupyter .fa-star-half-o:before{content:"\f123"}.jupyter .fa-location-arrow:before{content:"\f124"}.jupyter .fa-crop:before{content:"\f125"}.jupyter .fa-code-fork:before{content:"\f126"}.jupyter .fa-chain-broken:before,.jupyter .fa-unlink:before{content:"\f127"}.jupyter .fa-question:before{content:"\f128"}.jupyter .fa-info:before{content:"\f129"}.jupyter .fa-exclamation:before{content:"\f12a"}.jupyter .fa-superscript:before{content:"\f12b"}.jupyter .fa-subscript:before{content:"\f12c"}.jupyter .fa-eraser:before{content:"\f12d"}.jupyter .fa-puzzle-piece:before{content:"\f12e"}.jupyter .fa-microphone:before{content:"\f130"}.jupyter .fa-microphone-slash:before{content:"\f131"}.jupyter .fa-shield:before{content:"\f132"}.jupyter .fa-calendar-o:before{content:"\f133"}.jupyter .fa-fire-extinguisher:before{content:"\f134"}.jupyter .fa-rocket:before{content:"\f135"}.jupyter .fa-maxcdn:before{content:"\f136"}.jupyter .fa-chevron-circle-left:before{content:"\f137"}.jupyter .fa-chevron-circle-right:before{content:"\f138"}.jupyter .fa-chevron-circle-up:before{content:"\f139"}.jupyter .fa-chevron-circle-down:before{content:"\f13a"}.jupyter .fa-html5:before{content:"\f13b"}.jupyter .fa-css3:before{content:"\f13c"}.jupyter .fa-anchor:before{content:"\f13d"}.jupyter .fa-unlock-alt:before{content:"\f13e"}.jupyter .fa-bullseye:before{content:"\f140"}.jupyter .fa-ellipsis-h:before{content:"\f141"}.jupyter .fa-ellipsis-v:before{content:"\f142"}.jupyter .fa-rss-square:before{content:"\f143"}.jupyter .fa-play-circle:before{content:"\f144"}.jupyter .fa-ticket:before{content:"\f145"}.jupyter .fa-minus-square:before{content:"\f146"}.jupyter .fa-minus-square-o:before{content:"\f147"}.jupyter .fa-level-up:before{content:"\f148"}.jupyter .fa-level-down:before{content:"\f149"}.jupyter .fa-check-square:before{content:"\f14a"}.jupyter .fa-pencil-square:before{content:"\f14b"}.jupyter .fa-external-link-square:before{content:"\f14c"}.jupyter .fa-share-square:before{content:"\f14d"}.jupyter .fa-compass:before{content:"\f14e"}.jupyter .fa-caret-square-o-down:before,.jupyter .fa-toggle-down:before{content:"\f150"}.jupyter .fa-caret-square-o-up:before,.jupyter .fa-toggle-up:before{content:"\f151"}.jupyter .fa-caret-square-o-right:before,.jupyter .fa-toggle-right:before{content:"\f152"}.jupyter .fa-eur:before,.jupyter .fa-euro:before{content:"\f153"}.jupyter .fa-gbp:before{content:"\f154"}.jupyter .fa-dollar:before,.jupyter .fa-usd:before{content:"\f155"}.jupyter .fa-inr:before,.jupyter .fa-rupee:before{content:"\f156"}.jupyter .fa-cny:before,.jupyter .fa-jpy:before,.jupyter .fa-rmb:before,.jupyter .fa-yen:before{content:"\f157"}.jupyter .fa-rouble:before,.jupyter .fa-rub:before,.jupyter .fa-ruble:before{content:"\f158"}.jupyter .fa-krw:before,.jupyter .fa-won:before{content:"\f159"}.jupyter .fa-bitcoin:before,.jupyter .fa-btc:before{content:"\f15a"}.jupyter .fa-file:before{content:"\f15b"}.jupyter .fa-file-text:before{content:"\f15c"}.jupyter .fa-sort-alpha-asc:before{content:"\f15d"}.jupyter .fa-sort-alpha-desc:before{content:"\f15e"}.jupyter .fa-sort-amount-asc:before{content:"\f160"}.jupyter .fa-sort-amount-desc:before{content:"\f161"}.jupyter .fa-sort-numeric-asc:before{content:"\f162"}.jupyter .fa-sort-numeric-desc:before{content:"\f163"}.jupyter .fa-thumbs-up:before{content:"\f164"}.jupyter .fa-thumbs-down:before{content:"\f165"}.jupyter .fa-youtube-square:before{content:"\f166"}.jupyter .fa-youtube:before{content:"\f167"}.jupyter .fa-xing:before{content:"\f168"}.jupyter .fa-xing-square:before{content:"\f169"}.jupyter .fa-youtube-play:before{content:"\f16a"}.jupyter .fa-dropbox:before{content:"\f16b"}.jupyter .fa-stack-overflow:before{content:"\f16c"}.jupyter .fa-instagram:before{content:"\f16d"}.jupyter .fa-flickr:before{content:"\f16e"}.jupyter .fa-adn:before{content:"\f170"}.jupyter .fa-bitbucket:before{content:"\f171"}.jupyter .fa-bitbucket-square:before{content:"\f172"}.jupyter .fa-tumblr:before{content:"\f173"}.jupyter .fa-tumblr-square:before{content:"\f174"}.jupyter .fa-long-arrow-down:before{content:"\f175"}.jupyter .fa-long-arrow-up:before{content:"\f176"}.jupyter .fa-long-arrow-left:before{content:"\f177"}.jupyter .fa-long-arrow-right:before{content:"\f178"}.jupyter .fa-apple:before{content:"\f179"}.jupyter .fa-windows:before{content:"\f17a"}.jupyter .fa-android:before{content:"\f17b"}.jupyter .fa-linux:before{content:"\f17c"}.jupyter .fa-dribbble:before{content:"\f17d"}.jupyter .fa-skype:before{content:"\f17e"}.jupyter .fa-foursquare:before{content:"\f180"}.jupyter .fa-trello:before{content:"\f181"}.jupyter .fa-female:before{content:"\f182"}.jupyter .fa-male:before{content:"\f183"}.jupyter .fa-gittip:before{content:"\f184"}.jupyter .fa-sun-o:before{content:"\f185"}.jupyter .fa-moon-o:before{content:"\f186"}.jupyter .fa-archive:before{content:"\f187"}.jupyter .fa-bug:before{content:"\f188"}.jupyter .fa-vk:before{content:"\f189"}.jupyter .fa-weibo:before{content:"\f18a"}.jupyter .fa-renren:before{content:"\f18b"}.jupyter .fa-pagelines:before{content:"\f18c"}.jupyter .fa-stack-exchange:before{content:"\f18d"}.jupyter .fa-arrow-circle-o-right:before{content:"\f18e"}.jupyter .fa-arrow-circle-o-left:before{content:"\f190"}.jupyter .fa-caret-square-o-left:before,.jupyter .fa-toggle-left:before{content:"\f191"}.jupyter .fa-dot-circle-o:before{content:"\f192"}.jupyter .fa-wheelchair:before{content:"\f193"}.jupyter .fa-vimeo-square:before{content:"\f194"}.jupyter .fa-try:before,.jupyter .fa-turkish-lira:before{content:"\f195"}.jupyter .fa-plus-square-o:before{content:"\f196"}.jupyter .fa-space-shuttle:before{content:"\f197"}.jupyter .fa-slack:before{content:"\f198"}.jupyter .fa-envelope-square:before{content:"\f199"}.jupyter .fa-wordpress:before{content:"\f19a"}.jupyter .fa-openid:before{content:"\f19b"}.jupyter .fa-bank:before,.jupyter .fa-institution:before,.jupyter .fa-university:before{content:"\f19c"}.jupyter .fa-graduation-cap:before,.jupyter .fa-mortar-board:before{content:"\f19d"}.jupyter .fa-yahoo:before{content:"\f19e"}.jupyter .fa-google:before{content:"\f1a0"}.jupyter .fa-reddit:before{content:"\f1a1"}.jupyter .fa-reddit-square:before{content:"\f1a2"}.jupyter .fa-stumbleupon-circle:before{content:"\f1a3"}.jupyter .fa-stumbleupon:before{content:"\f1a4"}.jupyter .fa-delicious:before{content:"\f1a5"}.jupyter .fa-digg:before{content:"\f1a6"}.jupyter .fa-pied-piper:before{content:"\f1a7"}.jupyter .fa-pied-piper-alt:before{content:"\f1a8"}.jupyter .fa-drupal:before{content:"\f1a9"}.jupyter .fa-joomla:before{content:"\f1aa"}.jupyter .fa-language:before{content:"\f1ab"}.jupyter .fa-fax:before{content:"\f1ac"}.jupyter .fa-building:before{content:"\f1ad"}.jupyter .fa-child:before{content:"\f1ae"}.jupyter .fa-paw:before{content:"\f1b0"}.jupyter .fa-spoon:before{content:"\f1b1"}.jupyter .fa-cube:before{content:"\f1b2"}.jupyter .fa-cubes:before{content:"\f1b3"}.jupyter .fa-behance:before{content:"\f1b4"}.jupyter .fa-behance-square:before{content:"\f1b5"}.jupyter .fa-steam:before{content:"\f1b6"}.jupyter .fa-steam-square:before{content:"\f1b7"}.jupyter .fa-recycle:before{content:"\f1b8"}.jupyter .fa-automobile:before,.jupyter .fa-car:before{content:"\f1b9"}.jupyter .fa-cab:before,.jupyter .fa-taxi:before{content:"\f1ba"}.jupyter .fa-tree:before{content:"\f1bb"}.jupyter .fa-spotify:before{content:"\f1bc"}.jupyter .fa-deviantart:before{content:"\f1bd"}.jupyter .fa-soundcloud:before{content:"\f1be"}.jupyter .fa-database:before{content:"\f1c0"}.jupyter .fa-file-pdf-o:before{content:"\f1c1"}.jupyter .fa-file-word-o:before{content:"\f1c2"}.jupyter .fa-file-excel-o:before{content:"\f1c3"}.jupyter .fa-file-powerpoint-o:before{content:"\f1c4"}.jupyter .fa-file-image-o:before,.jupyter .fa-file-photo-o:before,.jupyter .fa-file-picture-o:before{content:"\f1c5"}.jupyter .fa-file-archive-o:before,.jupyter .fa-file-zip-o:before{content:"\f1c6"}.jupyter .fa-file-audio-o:before,.jupyter .fa-file-sound-o:before{content:"\f1c7"}.jupyter .fa-file-movie-o:before,.jupyter .fa-file-video-o:before{content:"\f1c8"}.jupyter .fa-file-code-o:before{content:"\f1c9"}.jupyter .fa-vine:before{content:"\f1ca"}.jupyter .fa-codepen:before{content:"\f1cb"}.jupyter .fa-jsfiddle:before{content:"\f1cc"}.jupyter .fa-life-bouy:before,.jupyter .fa-life-buoy:before,.jupyter .fa-life-ring:before,.jupyter .fa-life-saver:before,.jupyter .fa-support:before{content:"\f1cd"}.jupyter .fa-circle-o-notch:before{content:"\f1ce"}.jupyter .fa-ra:before,.jupyter .fa-rebel:before{content:"\f1d0"}.jupyter .fa-empire:before,.jupyter .fa-ge:before{content:"\f1d1"}.jupyter .fa-git-square:before{content:"\f1d2"}.jupyter .fa-git:before{content:"\f1d3"}.jupyter .fa-hacker-news:before{content:"\f1d4"}.jupyter .fa-tencent-weibo:before{content:"\f1d5"}.jupyter .fa-qq:before{content:"\f1d6"}.jupyter .fa-wechat:before,.jupyter .fa-weixin:before{content:"\f1d7"}.jupyter .fa-paper-plane:before,.jupyter .fa-send:before{content:"\f1d8"}.jupyter .fa-paper-plane-o:before,.jupyter .fa-send-o:before{content:"\f1d9"}.jupyter .fa-history:before{content:"\f1da"}.jupyter .fa-circle-thin:before{content:"\f1db"}.jupyter .fa-header:before{content:"\f1dc"}.jupyter .fa-paragraph:before{content:"\f1dd"}.jupyter .fa-sliders:before{content:"\f1de"}.jupyter .fa-share-alt:before{content:"\f1e0"}.jupyter .fa-share-alt-square:before{content:"\f1e1"}.jupyter .fa-bomb:before{content:"\f1e2"}.jupyter .fa-futbol-o:before,.jupyter .fa-soccer-ball-o:before{content:"\f1e3"}.jupyter .fa-tty:before{content:"\f1e4"}.jupyter .fa-binoculars:before{content:"\f1e5"}.jupyter .fa-plug:before{content:"\f1e6"}.jupyter .fa-slideshare:before{content:"\f1e7"}.jupyter .fa-twitch:before{content:"\f1e8"}.jupyter .fa-yelp:before{content:"\f1e9"}.jupyter .fa-newspaper-o:before{content:"\f1ea"}.jupyter .fa-wifi:before{content:"\f1eb"}.jupyter .fa-calculator:before{content:"\f1ec"}.jupyter .fa-paypal:before{content:"\f1ed"}.jupyter .fa-google-wallet:before{content:"\f1ee"}.jupyter .fa-cc-visa:before{content:"\f1f0"}.jupyter .fa-cc-mastercard:before{content:"\f1f1"}.jupyter .fa-cc-discover:before{content:"\f1f2"}.jupyter .fa-cc-amex:before{content:"\f1f3"}.jupyter .fa-cc-paypal:before{content:"\f1f4"}.jupyter .fa-cc-stripe:before{content:"\f1f5"}.jupyter .fa-bell-slash:before{content:"\f1f6"}.jupyter .fa-bell-slash-o:before{content:"\f1f7"}.jupyter .fa-trash:before{content:"\f1f8"}.jupyter .fa-copyright:before{content:"\f1f9"}.jupyter .fa-at:before{content:"\f1fa"}.jupyter .fa-eyedropper:before{content:"\f1fb"}.jupyter .fa-paint-brush:before{content:"\f1fc"}.jupyter .fa-birthday-cake:before{content:"\f1fd"}.jupyter .fa-area-chart:before{content:"\f1fe"}.jupyter .fa-pie-chart:before{content:"\f200"}.jupyter .fa-line-chart:before{content:"\f201"}.jupyter .fa-lastfm:before{content:"\f202"}.jupyter .fa-lastfm-square:before{content:"\f203"}.jupyter .fa-toggle-off:before{content:"\f204"}.jupyter .fa-toggle-on:before{content:"\f205"}.jupyter .fa-bicycle:before{content:"\f206"}.jupyter .fa-bus:before{content:"\f207"}.jupyter .fa-ioxhost:before{content:"\f208"}.jupyter .fa-angellist:before{content:"\f209"}.jupyter .fa-cc:before{content:"\f20a"}.jupyter .fa-ils:before,.jupyter .fa-shekel:before,.jupyter .fa-sheqel:before{content:"\f20b"}.jupyter .fa-meanpath:before{content:"\f20c"}.jupyter .modal.fade .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.jupyter code{color:#000}.jupyter pre{font-size:inherit;line-height:inherit}.jupyter label{font-weight:400}.jupyter .border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.jupyter .corner-all{border-radius:2px}.jupyter .no-padding{padding:0}.jupyter .hbox{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch}.jupyter .hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.jupyter .vbox{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}.jupyter .vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.jupyter .hbox.reverse,.jupyter .reverse,.jupyter .vbox.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.jupyter .box-flex0,.jupyter .hbox.box-flex0,.jupyter .vbox.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.jupyter .box-flex1,.jupyter .hbox.box-flex1,.jupyter .vbox.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.jupyter .box-flex,.jupyter .hbox.box-flex,.jupyter .vbox.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.jupyter .box-flex2,.jupyter .hbox.box-flex2,.jupyter .vbox.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.jupyter .box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.jupyter .box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.jupyter .hbox.start,.jupyter .start,.jupyter .vbox.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.jupyter .end,.jupyter .hbox.end,.jupyter .vbox.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.jupyter .center,.jupyter .hbox.center,.jupyter .vbox.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.jupyter .baseline,.jupyter .hbox.baseline,.jupyter .vbox.baseline{-webkit-box-pack:baseline;-moz-box-pack:baseline;box-pack:baseline;justify-content:baseline}.jupyter .hbox.stretch,.jupyter .stretch,.jupyter .vbox.stretch{-webkit-box-pack:stretch;-moz-box-pack:stretch;box-pack:stretch;justify-content:stretch}.jupyter .align-start,.jupyter .hbox.align-start,.jupyter .vbox.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.jupyter .align-end,.jupyter .hbox.align-end,.jupyter .vbox.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.jupyter .align-center,.jupyter .hbox.align-center,.jupyter .vbox.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}.jupyter .align-baseline,.jupyter .hbox.align-baseline,.jupyter .vbox.align-baseline{-webkit-box-align:baseline;-moz-box-align:baseline;box-align:baseline;align-items:baseline}.jupyter .align-stretch,.jupyter .hbox.align-stretch,.jupyter .vbox.align-stretch{-webkit-box-align:stretch;-moz-box-align:stretch;box-align:stretch;align-items:stretch}.jupyter div.error{margin:2em;text-align:center}.jupyter div.error>h1{font-size:500%;line-height:normal}.jupyter div.error>p{font-size:200%;line-height:normal}.jupyter div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}.jupyter body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}.jupyter body>#header{display:none;background-color:#fff;position:relative;z-index:100}.jupyter body>#header #header-container{padding-bottom:5px;padding-top:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.jupyter body>#header .header-bar{width:100%;height:1px;background:#e7e7e7;margin-bottom:-1px}@media print{.jupyter body>#header{display:none!important}}.jupyter #header-spacer{width:100%;visibility:hidden}@media print{.jupyter #header-spacer{display:none}}.jupyter #ipython_notebook{padding-left:0;padding-top:1px;padding-bottom:1px}@media (max-width:991px){.jupyter #ipython_notebook{margin-left:10px}}.jupyter #noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:red;font-weight:700}.jupyter #ipython_notebook img{height:28px}.jupyter #site{width:100%;display:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:auto}@media print{.jupyter #site{height:auto!important}}.jupyter .ui-button .ui-button-text{padding:.2em .8em;font-size:77%}.jupyter input.ui-button{padding:.3em .9em}.jupyter span#login_widget{float:right}.jupyter #logout,.jupyter span#login_widget>.button{color:#333;background-color:#fff;border-color:#ccc}.jupyter #logout.focus,.jupyter #logout:focus,.jupyter span#login_widget>.button.focus,.jupyter span#login_widget>.button:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.jupyter #logout:hover,.jupyter span#login_widget>.button:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter #logout.active,.jupyter #logout:active,.jupyter span#login_widget>.button.active,.jupyter span#login_widget>.button:active,.open>.dropdown-toggle.jupyter #logout,.open>.dropdown-toggle.jupyter span#login_widget>.button{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter #logout.active.focus,.jupyter #logout.active:focus,.jupyter #logout.active:hover,.jupyter #logout:active.focus,.jupyter #logout:active:focus,.jupyter #logout:active:hover,.jupyter span#login_widget>.button.active.focus,.jupyter span#login_widget>.button.active:focus,.jupyter span#login_widget>.button.active:hover,.jupyter span#login_widget>.button:active.focus,.jupyter span#login_widget>.button:active:focus,.jupyter span#login_widget>.button:active:hover,.open>.dropdown-toggle.jupyter #logout.focus,.open>.dropdown-toggle.jupyter #logout:focus,.open>.dropdown-toggle.jupyter #logout:hover,.open>.dropdown-toggle.jupyter span#login_widget>.button.focus,.open>.dropdown-toggle.jupyter span#login_widget>.button:focus,.open>.dropdown-toggle.jupyter span#login_widget>.button:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.jupyter #logout.active,.jupyter #logout:active,.jupyter span#login_widget>.button.active,.jupyter span#login_widget>.button:active,.open>.dropdown-toggle.jupyter #logout,.open>.dropdown-toggle.jupyter span#login_widget>.button{background-image:none}.jupyter #logout.disabled,.jupyter #logout.disabled.active,.jupyter #logout.disabled.focus,.jupyter #logout.disabled:active,.jupyter #logout.disabled:focus,.jupyter #logout.disabled:hover,.jupyter #logout[disabled],.jupyter #logout[disabled].active,.jupyter #logout[disabled].focus,.jupyter #logout[disabled]:active,.jupyter #logout[disabled]:focus,.jupyter #logout[disabled]:hover,.jupyter span#login_widget>.button.disabled,.jupyter span#login_widget>.button.disabled.active,.jupyter span#login_widget>.button.disabled.focus,.jupyter span#login_widget>.button.disabled:active,.jupyter span#login_widget>.button.disabled:focus,.jupyter span#login_widget>.button.disabled:hover,.jupyter span#login_widget>.button[disabled],.jupyter span#login_widget>.button[disabled].active,.jupyter span#login_widget>.button[disabled].focus,.jupyter span#login_widget>.button[disabled]:active,.jupyter span#login_widget>.button[disabled]:focus,.jupyter span#login_widget>.button[disabled]:hover,fieldset[disabled] .jupyter #logout,fieldset[disabled] .jupyter #logout.active,fieldset[disabled] .jupyter #logout.focus,fieldset[disabled] .jupyter #logout:active,fieldset[disabled] .jupyter #logout:focus,fieldset[disabled] .jupyter #logout:hover,fieldset[disabled] .jupyter span#login_widget>.button,fieldset[disabled] .jupyter span#login_widget>.button.active,fieldset[disabled] .jupyter span#login_widget>.button.focus,fieldset[disabled] .jupyter span#login_widget>.button:active,fieldset[disabled] .jupyter span#login_widget>.button:focus,fieldset[disabled] .jupyter span#login_widget>.button:hover{background-color:#fff;border-color:#ccc}.jupyter #logout .badge,.jupyter span#login_widget>.button .badge{color:#fff;background-color:#333}.jupyter .nav-header{text-transform:none}.jupyter #header>span{margin-top:10px}.jupyter .modal_stretch .modal-dialog{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;min-height:80vh}.jupyter .modal_stretch .modal-dialog .modal-body{max-height:calc(100vh - 200px);overflow:auto;flex:1}@media (min-width:768px){.jupyter .modal .modal-dialog{width:700px}}@media (min-width:768px){.jupyter select.form-control{margin-left:12px;margin-right:12px}}.jupyter .center-nav{display:inline-block;margin-bottom:-4px}.jupyter .alternate_upload{background-color:none;display:inline}.jupyter .alternate_upload.form{padding:0;margin:0}.jupyter .alternate_upload input.fileinput{text-align:center;vertical-align:middle;display:inline;opacity:0;z-index:2;width:12ex;margin-right:-12ex}.jupyter .alternate_upload .btn-upload{height:22px}.jupyter ul#tabs{margin-bottom:4px}.jupyter ul#tabs a{padding-top:6px;padding-bottom:4px}.jupyter ul.breadcrumb a:focus,.jupyter ul.breadcrumb a:hover{text-decoration:none}.jupyter ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}.jupyter ul.breadcrumb span{color:#5e5e5e}.jupyter .list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.jupyter .list_toolbar .tree-buttons{padding-top:1px}.jupyter .dynamic-buttons{padding-top:3px;display:inline-block}.jupyter .list_toolbar [class*=span]{min-height:24px}.jupyter .list_header{font-weight:700;background-color:#EEE}.jupyter .list_placeholder{font-weight:700;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px}.jupyter .list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ddd;border-radius:2px}.jupyter .list_container>div{border-bottom:1px solid #ddd}.jupyter .list_container>div:hover .list-item{background-color:red}.jupyter .list_container>div:last-child{border:none}.jupyter .list_item:hover .list_item{background-color:#ddd}.jupyter .list_item a{text-decoration:none}.jupyter .list_item:hover{background-color:#fafafa}.jupyter .list_header>div,.jupyter .list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.jupyter .list_header>div input,.jupyter .list_item>div input{margin-right:7px;margin-left:14px;vertical-align:baseline;line-height:22px;position:relative;top:-1px}.jupyter .list_header>div .item_link,.jupyter .list_item>div .item_link{margin-left:-1px;vertical-align:baseline;line-height:22px}.jupyter .new-file input[type=checkbox]{visibility:hidden}.jupyter .item_name{line-height:22px;height:24px}.jupyter .item_icon{font-size:14px;color:#5e5e5e;margin-right:7px;margin-left:7px;line-height:22px;vertical-align:baseline}.jupyter .item_buttons{line-height:1em;margin-left:-5px}.jupyter .item_buttons .btn,.jupyter .item_buttons .btn-group,.jupyter .item_buttons .input-group{float:left}.jupyter .item_buttons>.btn,.jupyter .item_buttons>.btn-group,.jupyter .item_buttons>.input-group{margin-left:5px}.jupyter .item_buttons .btn{min-width:13ex}.jupyter .item_buttons .running-indicator{padding-top:4px;color:#5cb85c}.jupyter .item_buttons .kernel-name{padding-top:4px;color:#5bc0de;margin-right:7px;float:left}.jupyter .toolbar_info{height:24px;line-height:24px}.jupyter .list_item input:not([type=checkbox]){padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}.jupyter .highlight_text{color:#00f}.jupyter #project_name{display:inline-block;padding-left:7px;margin-left:-2px}.jupyter #project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:700}.jupyter #tree-selector{padding-right:0}.jupyter #button-select-all{min-width:50px}.jupyter #select-all{margin-left:7px;margin-right:2px}.jupyter .menu_icon{margin-right:2px}.jupyter .tab-content .row{margin-left:0;margin-right:0}.jupyter .folder_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f114"}.jupyter .folder_icon:before.pull-left{margin-right:.3em}.jupyter .folder_icon:before.pull-right{margin-left:.3em}.jupyter .notebook_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f02d";position:relative;top:-1px}.jupyter .notebook_icon:before.pull-left{margin-right:.3em}.jupyter .notebook_icon:before.pull-right{margin-left:.3em}.jupyter .running_notebook_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f02d";position:relative;top:-1px;color:#5cb85c}.jupyter .running_notebook_icon:before.pull-left{margin-right:.3em}.jupyter .running_notebook_icon:before.pull-right{margin-left:.3em}.jupyter .file_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f016";position:relative;top:-2px}.jupyter .file_icon:before.pull-left{margin-right:.3em}.jupyter .file_icon:before.pull-right{margin-left:.3em}.jupyter #notebook_toolbar .pull-right{padding-top:0;margin-right:-1px}.jupyter ul#new-menu{left:auto;right:0}.jupyter .kernel-menu-icon{padding-right:12px;width:24px;content:"\f096"}.jupyter .kernel-menu-icon:before{content:"\f096"}.jupyter .kernel-menu-icon-current:before{content:"\f00c"}.jupyter #tab_content{padding-top:20px}.jupyter #running .panel-group .panel{margin-top:3px;margin-bottom:1em}.jupyter #running .panel-group .panel .panel-heading{background-color:#EEE;padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.jupyter #running .panel-group .panel .panel-heading a:focus,.jupyter #running .panel-group .panel .panel-heading a:hover{text-decoration:none}.jupyter #running .panel-group .panel .panel-body{padding:0}.jupyter #running .panel-group .panel .panel-body .list_container{margin-top:0;margin-bottom:0;border:0;border-radius:0}.jupyter #running .panel-group .panel .panel-body .list_container .list_item{border-bottom:1px solid #ddd}.jupyter #running .panel-group .panel .panel-body .list_container .list_item:last-child{border-bottom:0}.jupyter .delete-button{display:none}.jupyter .duplicate-button{display:none}.jupyter .rename-button{display:none}.jupyter .shutdown-button{display:none}.jupyter .dynamic-instructions{display:inline-block;padding-top:4px}.jupyter .selected-keymap i.fa{padding:0 5px}.jupyter .selected-keymap i.fa:before{content:"\f00c"}.jupyter #mode-menu{overflow:auto;max-height:20em}.jupyter .edit_app #header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2)}.jupyter .edit_app #menubar .navbar{margin-bottom:-1px}.jupyter .dirty-indicator{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px}.jupyter .dirty-indicator.pull-left{margin-right:.3em}.jupyter .dirty-indicator.pull-right{margin-left:.3em}.jupyter .dirty-indicator-dirty{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px}.jupyter .dirty-indicator-dirty.pull-left{margin-right:.3em}.jupyter .dirty-indicator-dirty.pull-right{margin-left:.3em}.jupyter .dirty-indicator-clean{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px}.jupyter .dirty-indicator-clean.pull-left{margin-right:.3em}.jupyter .dirty-indicator-clean.pull-right{margin-left:.3em}.jupyter .dirty-indicator-clean:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f00c"}.jupyter .dirty-indicator-clean:before.pull-left{margin-right:.3em}.jupyter .dirty-indicator-clean:before.pull-right{margin-left:.3em}.jupyter #filename{font-size:16pt;display:table;padding:0 5px}.jupyter #current-mode{padding-left:5px;padding-right:5px}.jupyter #texteditor-backdrop{padding-top:20px;padding-bottom:20px}@media not print{.jupyter #texteditor-backdrop{background-color:#EEE}}@media print{.jupyter #texteditor-backdrop #texteditor-container .CodeMirror-gutter,.jupyter #texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{.jupyter #texteditor-backdrop #texteditor-container .CodeMirror-gutter,.jupyter #texteditor-backdrop #texteditor-container .CodeMirror-gutters{background-color:#fff}}@media not print{.jupyter #texteditor-backdrop #texteditor-container{padding:0;background-color:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2)}}.jupyter .ansibold{font-weight:700}.jupyter .ansiblack{color:#000}.jupyter .ansired{color:#8b0000}.jupyter .ansigreen{color:#006400}.jupyter .ansiyellow{color:#c4a000}.jupyter .ansiblue{color:#00008b}.jupyter .ansipurple{color:#9400d3}.jupyter .ansicyan{color:#4682b4}.jupyter .ansigray{color:gray}.jupyter .ansibgblack{background-color:#000}.jupyter .ansibgred{background-color:red}.jupyter .ansibggreen{background-color:green}.jupyter .ansibgyellow{background-color:#ff0}.jupyter .ansibgblue{background-color:#00f}.jupyter .ansibgpurple{background-color:#ff00ff}.jupyter .ansibgcyan{background-color:#0ff}.jupyter .ansibggray{background-color:gray}.jupyter div.cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;border-radius:2px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border-width:thin;border-style:solid;width:100%;padding:5px;margin:0;outline:0}.jupyter div.cell.selected{border-color:#ababab}@media print{.jupyter div.cell.selected{border-color:transparent}}.edit_mode .jupyter div.cell.selected{border-color:green}@media print{.edit_mode .jupyter div.cell.selected{border-color:transparent}}.jupyter .prompt{min-width:14ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:540px){.jupyter .prompt{text-align:left}}.jupyter div.inner_cell{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}@-moz-document url-prefix(){.jupyter div.inner_cell{overflow-x:hidden}}.jupyter div.input_area{border:1px solid #cfcfcf;border-radius:2px;background:#f7f7f7;line-height:1.21429em}.jupyter div.prompt:empty{padding-top:0;padding-bottom:0}.jupyter div.unrecognized_cell{padding:5px 5px 5px 0;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch}.jupyter div.unrecognized_cell .inner_cell{border-radius:2px;padding:5px;font-weight:700;color:red;border:1px solid #cfcfcf;background:#eaeaea}.jupyter div.unrecognized_cell .inner_cell a{color:inherit;text-decoration:none}.jupyter div.unrecognized_cell .inner_cell a:hover{color:inherit;text-decoration:none}@media (max-width:540px){.jupyter div.unrecognized_cell>div.prompt{display:none}}@media print{.jupyter div.code_cell{page-break-inside:avoid}}.jupyter div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch}@media (max-width:540px){.jupyter div.input{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}}.jupyter div.input_prompt{color:navy;border-top:1px solid transparent}.jupyter div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}.jupyter div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.jupyter .CodeMirror{line-height:1.21429em;font-size:14px;height:auto;background:0 0}.jupyter .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.jupyter .CodeMirror-lines{padding:.4em}.jupyter .CodeMirror-linenumber{padding:0 8px 0 4px}.jupyter .CodeMirror-gutters{border-bottom-left-radius:2px;border-top-left-radius:2px}.jupyter .CodeMirror pre{padding:0;border:0;border-radius:0}.jupyter .CodeMirror{font-family:monospace;height:300px;color:#000}.jupyter .CodeMirror-lines{padding:4px 0}.jupyter .CodeMirror pre{padding:0 4px}.jupyter .CodeMirror-gutter-filler,.jupyter .CodeMirror-scrollbar-filler{background-color:#fff}.jupyter .CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.jupyter .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.jupyter .CodeMirror-guttermarker{color:#000}.jupyter .CodeMirror-guttermarker-subtle{color:#999}.jupyter .CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.jupyter .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.jupyter .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0;background:#7e7}.jupyter .cm-fat-cursor div.CodeMirror-cursors{z-index:1}.jupyter .cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}.jupyter .cm-tab{display:inline-block;text-decoration:inherit}.jupyter .CodeMirror-ruler{border-left:1px solid #ccc;position:absolute}.jupyter .cm-s-default .cm-header{color:#00f}.jupyter .cm-s-default .cm-quote{color:#090}.jupyter .cm-negative{color:#d44}.jupyter .cm-positive{color:#292}.jupyter .cm-header,.jupyter .cm-strong{font-weight:700}.jupyter .cm-em{font-style:italic}.jupyter .cm-link{text-decoration:underline}.jupyter .cm-strikethrough{text-decoration:line-through}.jupyter .cm-s-default .cm-keyword{color:#708}.jupyter .cm-s-default .cm-atom{color:#219}.jupyter .cm-s-default .cm-number{color:#164}.jupyter .cm-s-default .cm-def{color:#00f}.jupyter .cm-s-default .cm-variable-2{color:#05a}.jupyter .cm-s-default .cm-variable-3{color:#085}.jupyter .cm-s-default .cm-comment{color:#a50}.jupyter .cm-s-default .cm-string{color:#a11}.jupyter .cm-s-default .cm-string-2{color:#f50}.jupyter .cm-s-default .cm-meta{color:#555}.jupyter .cm-s-default .cm-qualifier{color:#555}.jupyter .cm-s-default .cm-builtin{color:#30a}.jupyter .cm-s-default .cm-bracket{color:#997}.jupyter .cm-s-default .cm-tag{color:#170}.jupyter .cm-s-default .cm-attribute{color:#00c}.jupyter .cm-s-default .cm-hr{color:#999}.jupyter .cm-s-default .cm-link{color:#00c}.jupyter .cm-s-default .cm-error{color:red}.jupyter .cm-invalidchar{color:red}.jupyter .CodeMirror-composing{border-bottom:2px solid}.jupyter div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}.jupyter div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.jupyter .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.jupyter .CodeMirror-activeline-background{background:#e8f2ff}.jupyter .CodeMirror{position:relative;overflow:hidden;background:#fff}.jupyter .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.jupyter .CodeMirror-sizer{position:relative;border-right:30px solid transparent}.jupyter .CodeMirror-gutter-filler,.jupyter .CodeMirror-hscrollbar,.jupyter .CodeMirror-scrollbar-filler,.jupyter .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.jupyter .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.jupyter .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.jupyter .CodeMirror-scrollbar-filler{right:0;bottom:0}.jupyter .CodeMirror-gutter-filler{left:0;bottom:0}.jupyter .CodeMirror-gutters{position:absolute;left:0;top:0;z-index:3}.jupyter .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;margin-bottom:-30px}.jupyter .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.jupyter .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.jupyter .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.jupyter .CodeMirror-gutter-wrapper{-webkit-user-select:none;-moz-user-select:none;user-select:none}.jupyter .CodeMirror-lines{cursor:text;min-height:1px}.jupyter .CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent}.jupyter .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.jupyter .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.jupyter .CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}.jupyter .CodeMirror-code{outline:0}.jupyter .CodeMirror-gutter,.jupyter .CodeMirror-gutters,.jupyter .CodeMirror-linenumber,.jupyter .CodeMirror-scroll,.jupyter .CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.jupyter .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.jupyter .CodeMirror-cursor{position:absolute}.jupyter .CodeMirror-measure pre{position:static}.jupyter div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.jupyter div.CodeMirror-dragcursors{visibility:visible}.jupyter .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.jupyter .CodeMirror-selected{background:#d9d9d9}.jupyter .CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.jupyter .CodeMirror-crosshair{cursor:crosshair}.jupyter .CodeMirror-line::selection,.jupyter .CodeMirror-line>span::selection,.jupyter .CodeMirror-line>span>span::selection{background:#d7d4f0}.jupyter .CodeMirror-line::-moz-selection,.jupyter .CodeMirror-line>span::-moz-selection,.jupyter .CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.jupyter .cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.jupyter .cm-force-border{padding-right:.1px}.jupyter .cm-tab-wrap-hack:after{content:''}.jupyter span.CodeMirror-selectedtext{background:0 0}.jupyter .highlight-base{color:#000}.jupyter .highlight-variable{color:#000}.jupyter .highlight-variable-2{color:#1a1a1a}.jupyter .highlight-variable-3{color:#333}.jupyter .highlight-string{color:#BA2121}.jupyter .highlight-comment{color:#408080;font-style:italic}.jupyter .highlight-number{color:#080}.jupyter .highlight-atom{color:#88F}.jupyter .highlight-keyword{color:green;font-weight:700}.jupyter .highlight-builtin{color:green}.jupyter .highlight-error{color:red}.jupyter .highlight-operator{color:#A2F;font-weight:700}.jupyter .highlight-meta{color:#A2F}.jupyter .highlight-def{color:#00f}.jupyter .highlight-string-2{color:#f50}.jupyter .highlight-qualifier{color:#555}.jupyter .highlight-bracket{color:#997}.jupyter .highlight-tag{color:#170}.jupyter .highlight-attribute{color:#00c}.jupyter .highlight-header{color:#00f}.jupyter .highlight-quote{color:#090}.jupyter .highlight-link{color:#00c}.jupyter .cm-s-ipython span.cm-keyword{color:green;font-weight:700}.jupyter .cm-s-ipython span.cm-atom{color:#88F}.jupyter .cm-s-ipython span.cm-number{color:#080}.jupyter .cm-s-ipython span.cm-def{color:#00f}.jupyter .cm-s-ipython span.cm-variable{color:#000}.jupyter .cm-s-ipython span.cm-operator{color:#A2F;font-weight:700}.jupyter .cm-s-ipython span.cm-variable-2{color:#1a1a1a}.jupyter .cm-s-ipython span.cm-variable-3{color:#333}.jupyter .cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.jupyter .cm-s-ipython span.cm-string{color:#BA2121}.jupyter .cm-s-ipython span.cm-string-2{color:#f50}.jupyter .cm-s-ipython span.cm-meta{color:#A2F}.jupyter .cm-s-ipython span.cm-qualifier{color:#555}.jupyter .cm-s-ipython span.cm-builtin{color:green}.jupyter .cm-s-ipython span.cm-bracket{color:#997}.jupyter .cm-s-ipython span.cm-tag{color:#170}.jupyter .cm-s-ipython span.cm-attribute{color:#00c}.jupyter .cm-s-ipython span.cm-header{color:#00f}.jupyter .cm-s-ipython span.cm-quote{color:#090}.jupyter .cm-s-ipython span.cm-link{color:#00c}.jupyter .cm-s-ipython span.cm-error{color:red}.jupyter .cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}.jupyter div.output_wrapper{position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;z-index:1}.jupyter div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:2px;-webkit-box-shadow:inset 0 2px 8px rgba(0,0,0,.8);box-shadow:inset 0 2px 8px rgba(0,0,0,.8);display:block}.jupyter div.output_collapsed{margin:0;padding:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}.jupyter div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:2px}.jupyter div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,.5)}.jupyter div.output_prompt{color:#8b0000}.jupyter div.output_area{padding:0;page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch}.jupyter div.output_area .MathJax_Display{text-align:left!important}.jupyter div.output_area .rendered_html table{margin-left:0;margin-right:0}.jupyter div.output_area .rendered_html img{margin-left:0;margin-right:0}.jupyter div.output_area img,.jupyter div.output_area svg{max-width:100%;height:auto}.jupyter div.output_area img.unconfined,.jupyter div.output_area svg.unconfined{max-width:none}.jupyter .output{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}@media (max-width:540px){.jupyter div.output_area{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}}.jupyter div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:#000;background-color:transparent;border-radius:0}.jupyter div.output_subarea{overflow-x:auto;padding:.4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1;max-width:calc(100% - 14ex)}.jupyter div.output_scroll div.output_subarea{overflow-x:visible}.jupyter div.output_text{text-align:left;color:#000;line-height:1.21429em}.jupyter div.output_stderr{background:#fdd}.jupyter div.output_latex{text-align:left}.jupyter div.output_javascript:empty{padding:0}.jupyter .js-error{color:#8b0000}.jupyter div.raw_input_container{line-height:1.21429em;padding-top:5px}.jupyter input.raw_input{font-family:monospace;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}.jupyter input.raw_input:focus{box-shadow:none}.jupyter p.p-space{margin-bottom:10px}.jupyter div.output_unrecognized{padding:5px;font-weight:700;color:red}.jupyter div.output_unrecognized a{color:inherit;text-decoration:none}.jupyter div.output_unrecognized a:hover{color:inherit;text-decoration:none}.jupyter .rendered_html{color:#000}.jupyter .rendered_html em{font-style:italic}.jupyter .rendered_html strong{font-weight:700}.jupyter .rendered_html u{text-decoration:underline}.jupyter .rendered_html :link{text-decoration:underline}.jupyter .rendered_html :visited{text-decoration:underline}.jupyter .rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:700;line-height:1}.jupyter .rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:700;line-height:1}.jupyter .rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:700;line-height:1}.jupyter .rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:700;line-height:1}.jupyter .rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:700;line-height:1;font-style:italic}.jupyter .rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:700;line-height:1;font-style:italic}.jupyter .rendered_html h1:first-child{margin-top:.538em}.jupyter .rendered_html h2:first-child{margin-top:.636em}.jupyter .rendered_html h3:first-child{margin-top:.777em}.jupyter .rendered_html h4:first-child{margin-top:1em}.jupyter .rendered_html h5:first-child{margin-top:1em}.jupyter .rendered_html h6:first-child{margin-top:1em}.jupyter .rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.jupyter .rendered_html ul ul{list-style:square;margin:0 2em}.jupyter .rendered_html ul ul ul{list-style:circle;margin:0 2em}.jupyter .rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.jupyter .rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.jupyter .rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.jupyter .rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.jupyter .rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.jupyter .rendered_html *+ul{margin-top:1em}.jupyter .rendered_html *+ol{margin-top:1em}.jupyter .rendered_html hr{color:#000;background-color:#000}.jupyter .rendered_html pre{margin:1em 2em}.jupyter .rendered_html code,.jupyter .rendered_html pre{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.jupyter .rendered_html blockquote{margin:1em 2em}.jupyter .rendered_html table{margin-left:auto;margin-right:auto;border:1px solid #000;border-collapse:collapse}.jupyter .rendered_html td,.jupyter .rendered_html th,.jupyter .rendered_html tr{border:1px solid #000;border-collapse:collapse;margin:1em 2em}.jupyter .rendered_html td,.jupyter .rendered_html th{text-align:left;vertical-align:middle;padding:4px}.jupyter .rendered_html th{font-weight:700}.jupyter .rendered_html *+table{margin-top:1em}.jupyter .rendered_html p{text-align:left}.jupyter .rendered_html *+p{margin-top:1em}.jupyter .rendered_html img{display:block;margin-left:auto;margin-right:auto}.jupyter .rendered_html *+img{margin-top:1em}.jupyter .rendered_html img,.jupyter .rendered_html svg{max-width:100%;height:auto}.jupyter .rendered_html img.unconfined,.jupyter .rendered_html svg.unconfined{max-width:none}.jupyter div.text_cell{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch}@media (max-width:540px){.jupyter div.text_cell>div.prompt{display:none}}.jupyter div.text_cell_render{outline:0;resize:none;width:inherit;border-style:none;padding:.5em .5em .5em .4em;color:#000;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.jupyter a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}.jupyter h1:hover .anchor-link,.jupyter h2:hover .anchor-link,.jupyter h3:hover .anchor-link,.jupyter h4:hover .anchor-link,.jupyter h5:hover .anchor-link,.jupyter h6:hover .anchor-link{visibility:visible}.jupyter .text_cell.rendered .input_area{display:none}.jupyter .text_cell.rendered .rendered_html{overflow-x:auto}.jupyter .text_cell.unrendered .text_cell_render{display:none}.jupyter .cm-header-1,.jupyter .cm-header-2,.jupyter .cm-header-3,.jupyter .cm-header-4,.jupyter .cm-header-5,.jupyter .cm-header-6{font-weight:700;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.jupyter .cm-header-1{font-size:185.7%}.jupyter .cm-header-2{font-size:157.1%}.jupyter .cm-header-3{font-size:128.6%}.jupyter .cm-header-4{font-size:110%}.jupyter .cm-header-5{font-size:100%;font-style:italic}.jupyter .cm-header-6{font-size:100%;font-style:italic}@media (max-width:767px){.jupyter .notebook_app{padding-left:0;padding-right:0}}.jupyter #ipython-main-app{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}.jupyter div#notebook_panel{margin:0;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:100%}.jupyter div#notebook{font-size:14px;line-height:20px;overflow-y:hidden;overflow-x:auto;width:100%;padding-top:20px;margin:0;outline:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;min-height:100%}@media not print{.jupyter #notebook-container{padding:15px;background-color:#fff;min-height:0;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2)}}@media print{.jupyter #notebook-container{width:100%}}.jupyter div.ui-widget-content{border:1px solid #ababab;outline:0}.jupyter pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:2px;padding:.4em;padding-left:2em}.jupyter p.dialog{padding:.2em}.jupyter code,.jupyter kbd,.jupyter pre,.jupyter samp{white-space:pre-wrap}.jupyter #fonttest{font-family:monospace}.jupyter p{margin-bottom:0}.jupyter .end_space{min-height:100px;transition:height .2s ease}.jupyter .notebook_app>#header{-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2)}@media not print{.jupyter .notebook_app{background-color:#EEE}}.jupyter kbd{border-style:solid;border-width:1px;box-shadow:none;margin:2px;padding-left:2px;padding-right:2px;padding-top:1px;padding-bottom:1px}.jupyter .celltoolbar{border:thin solid #CFCFCF;border-bottom:none;background:#EEE;border-radius:2px 2px 0 0;width:100%;height:29px;padding-right:4px;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch;-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end;display:-webkit-flex}@media print{.jupyter .celltoolbar{display:none}}.jupyter .ctb_hideshow{display:none;vertical-align:bottom}.jupyter .ctb_global_show .ctb_show.ctb_hideshow{display:block}.jupyter .ctb_global_show .ctb_show+.input_area,.jupyter .ctb_global_show .ctb_show+div.text_cell_input,.jupyter .ctb_global_show .ctb_show~div.text_cell_render{border-top-right-radius:0;border-top-left-radius:0}.jupyter .ctb_global_show .ctb_show~div.text_cell_render{border:1px solid #cfcfcf}.jupyter .celltoolbar{font-size:87%;padding-top:3px}.jupyter .celltoolbar select{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:1px;width:inherit;font-size:inherit;height:22px;padding:0;display:inline-block}.jupyter .celltoolbar select:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.jupyter .celltoolbar select::-moz-placeholder{color:#999;opacity:1}.jupyter .celltoolbar select:-ms-input-placeholder{color:#999}.jupyter .celltoolbar select::-webkit-input-placeholder{color:#999}.jupyter .celltoolbar select[disabled],.jupyter .celltoolbar select[readonly],fieldset[disabled] .jupyter .celltoolbar select{background-color:#eee;opacity:1}.jupyter .celltoolbar select[disabled],fieldset[disabled] .jupyter .celltoolbar select{cursor:not-allowed}textarea.jupyter .celltoolbar select{height:auto}select.jupyter .celltoolbar select{height:30px;line-height:30px}select[multiple].jupyter .celltoolbar select,textarea.jupyter .celltoolbar select{height:auto}.jupyter .celltoolbar label{margin-left:5px;margin-right:5px}.jupyter .completions{position:absolute;z-index:110;overflow:hidden;border:1px solid #ababab;border-radius:2px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad;line-height:1}.jupyter .completions select{background:#fff;outline:0;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.jupyter .completions select option.context{color:#286090}.jupyter #kernel_logo_widget{float:right!important;float:right}.jupyter #kernel_logo_widget .current_kernel_logo{display:none;margin-top:-1px;margin-bottom:-1px;width:32px;height:32px}.jupyter #menubar{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-top:1px}.jupyter #menubar .navbar{border-top:1px;border-radius:0 0 2px 2px;margin-bottom:0}.jupyter #menubar .navbar-toggle{float:left;padding-top:7px;padding-bottom:7px;border:none}.jupyter #menubar .navbar-collapse{clear:left}.jupyter .nav-wrapper{border-bottom:1px solid #e7e7e7}.jupyter i.menu-icon{padding-top:4px}.jupyter ul#help_menu li a{overflow:hidden;padding-right:2.2em}.jupyter ul#help_menu li a i{margin-right:-1.2em}.jupyter .dropdown-submenu{position:relative}.jupyter .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.jupyter .dropdown-submenu:hover>.dropdown-menu{display:block}.jupyter .dropdown-submenu>a:after{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:block;content:"\f0da";float:right;color:#333;margin-top:2px;margin-right:-10px}.jupyter .dropdown-submenu>a:after.pull-left{margin-right:.3em}.jupyter .dropdown-submenu>a:after.pull-right{margin-left:.3em}.jupyter .dropdown-submenu:hover>a:after{color:#262626}.jupyter .dropdown-submenu.pull-left{float:none}.jupyter .dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}.jupyter #notification_area{float:right!important;float:right;z-index:10}.jupyter .indicator_area{float:right!important;float:right;color:#777;margin-left:5px;margin-right:5px;width:11px;z-index:10;text-align:center;width:auto}.jupyter #kernel_indicator{float:right!important;float:right;color:#777;margin-left:5px;margin-right:5px;width:11px;z-index:10;text-align:center;width:auto;border-left:1px solid}.jupyter #kernel_indicator .kernel_indicator_name{padding-left:5px;padding-right:5px}.jupyter #modal_indicator{float:right!important;float:right;color:#777;margin-left:5px;margin-right:5px;width:11px;z-index:10;text-align:center;width:auto}.jupyter #readonly-indicator{float:right!important;float:right;color:#777;margin-left:5px;margin-right:5px;width:11px;z-index:10;text-align:center;width:auto;margin-top:2px;margin-bottom:0;margin-left:0;margin-right:0;display:none}.jupyter .modal_indicator:before{width:1.28571429em;text-align:center}.jupyter .edit_mode .modal_indicator:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f040"}.jupyter .edit_mode .modal_indicator:before.pull-left{margin-right:.3em}.jupyter .edit_mode .modal_indicator:before.pull-right{margin-left:.3em}.jupyter .command_mode .modal_indicator:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:' '}.jupyter .command_mode .modal_indicator:before.pull-left{margin-right:.3em}.jupyter .command_mode .modal_indicator:before.pull-right{margin-left:.3em}.jupyter .kernel_idle_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f10c"}.jupyter .kernel_idle_icon:before.pull-left{margin-right:.3em}.jupyter .kernel_idle_icon:before.pull-right{margin-left:.3em}.jupyter .kernel_busy_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f111"}.jupyter .kernel_busy_icon:before.pull-left{margin-right:.3em}.jupyter .kernel_busy_icon:before.pull-right{margin-left:.3em}.jupyter .kernel_dead_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f1e2"}.jupyter .kernel_dead_icon:before.pull-left{margin-right:.3em}.jupyter .kernel_dead_icon:before.pull-right{margin-left:.3em}.jupyter .kernel_disconnected_icon:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f127"}.jupyter .kernel_disconnected_icon:before.pull-left{margin-right:.3em}.jupyter .kernel_disconnected_icon:before.pull-right{margin-left:.3em}.jupyter .notification_widget{color:#777;z-index:10;background:rgba(240,240,240,.5);margin-right:4px;color:#333;background-color:#fff;border-color:#ccc}.jupyter .notification_widget.focus,.jupyter .notification_widget:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.jupyter .notification_widget:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter .notification_widget.active,.jupyter .notification_widget:active,.open>.dropdown-toggle.jupyter .notification_widget{color:#333;background-color:#e6e6e6;border-color:#adadad}.jupyter .notification_widget.active.focus,.jupyter .notification_widget.active:focus,.jupyter .notification_widget.active:hover,.jupyter .notification_widget:active.focus,.jupyter .notification_widget:active:focus,.jupyter .notification_widget:active:hover,.open>.dropdown-toggle.jupyter .notification_widget.focus,.open>.dropdown-toggle.jupyter .notification_widget:focus,.open>.dropdown-toggle.jupyter .notification_widget:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.jupyter .notification_widget.active,.jupyter .notification_widget:active,.open>.dropdown-toggle.jupyter .notification_widget{background-image:none}.jupyter .notification_widget.disabled,.jupyter .notification_widget.disabled.active,.jupyter .notification_widget.disabled.focus,.jupyter .notification_widget.disabled:active,.jupyter .notification_widget.disabled:focus,.jupyter .notification_widget.disabled:hover,.jupyter .notification_widget[disabled],.jupyter .notification_widget[disabled].active,.jupyter .notification_widget[disabled].focus,.jupyter .notification_widget[disabled]:active,.jupyter .notification_widget[disabled]:focus,.jupyter .notification_widget[disabled]:hover,fieldset[disabled] .jupyter .notification_widget,fieldset[disabled] .jupyter .notification_widget.active,fieldset[disabled] .jupyter .notification_widget.focus,fieldset[disabled] .jupyter .notification_widget:active,fieldset[disabled] .jupyter .notification_widget:focus,fieldset[disabled] .jupyter .notification_widget:hover{background-color:#fff;border-color:#ccc}.jupyter .notification_widget .badge{color:#fff;background-color:#333}.jupyter .notification_widget.warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.jupyter .notification_widget.warning.focus,.jupyter .notification_widget.warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.jupyter .notification_widget.warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.jupyter .notification_widget.warning.active,.jupyter .notification_widget.warning:active,.open>.dropdown-toggle.jupyter .notification_widget.warning{color:#fff;background-color:#ec971f;border-color:#d58512}.jupyter .notification_widget.warning.active.focus,.jupyter .notification_widget.warning.active:focus,.jupyter .notification_widget.warning.active:hover,.jupyter .notification_widget.warning:active.focus,.jupyter .notification_widget.warning:active:focus,.jupyter .notification_widget.warning:active:hover,.open>.dropdown-toggle.jupyter .notification_widget.warning.focus,.open>.dropdown-toggle.jupyter .notification_widget.warning:focus,.open>.dropdown-toggle.jupyter .notification_widget.warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.jupyter .notification_widget.warning.active,.jupyter .notification_widget.warning:active,.open>.dropdown-toggle.jupyter .notification_widget.warning{background-image:none}.jupyter .notification_widget.warning.disabled,.jupyter .notification_widget.warning.disabled.active,.jupyter .notification_widget.warning.disabled.focus,.jupyter .notification_widget.warning.disabled:active,.jupyter .notification_widget.warning.disabled:focus,.jupyter .notification_widget.warning.disabled:hover,.jupyter .notification_widget.warning[disabled],.jupyter .notification_widget.warning[disabled].active,.jupyter .notification_widget.warning[disabled].focus,.jupyter .notification_widget.warning[disabled]:active,.jupyter .notification_widget.warning[disabled]:focus,.jupyter .notification_widget.warning[disabled]:hover,fieldset[disabled] .jupyter .notification_widget.warning,fieldset[disabled] .jupyter .notification_widget.warning.active,fieldset[disabled] .jupyter .notification_widget.warning.focus,fieldset[disabled] .jupyter .notification_widget.warning:active,fieldset[disabled] .jupyter .notification_widget.warning:focus,fieldset[disabled] .jupyter .notification_widget.warning:hover{background-color:#f0ad4e;border-color:#eea236}.jupyter .notification_widget.warning .badge{color:#f0ad4e;background-color:#fff}.jupyter .notification_widget.success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.jupyter .notification_widget.success.focus,.jupyter .notification_widget.success:focus{color:#fff;background-color:#449d44;border-color:#255625}.jupyter .notification_widget.success:hover{color:#fff;background-color:#449d44;border-color:#398439}.jupyter .notification_widget.success.active,.jupyter .notification_widget.success:active,.open>.dropdown-toggle.jupyter .notification_widget.success{color:#fff;background-color:#449d44;border-color:#398439}.jupyter .notification_widget.success.active.focus,.jupyter .notification_widget.success.active:focus,.jupyter .notification_widget.success.active:hover,.jupyter .notification_widget.success:active.focus,.jupyter .notification_widget.success:active:focus,.jupyter .notification_widget.success:active:hover,.open>.dropdown-toggle.jupyter .notification_widget.success.focus,.open>.dropdown-toggle.jupyter .notification_widget.success:focus,.open>.dropdown-toggle.jupyter .notification_widget.success:hover{color:#fff;background-color:#398439;border-color:#255625}.jupyter .notification_widget.success.active,.jupyter .notification_widget.success:active,.open>.dropdown-toggle.jupyter .notification_widget.success{background-image:none}.jupyter .notification_widget.success.disabled,.jupyter .notification_widget.success.disabled.active,.jupyter .notification_widget.success.disabled.focus,.jupyter .notification_widget.success.disabled:active,.jupyter .notification_widget.success.disabled:focus,.jupyter .notification_widget.success.disabled:hover,.jupyter .notification_widget.success[disabled],.jupyter .notification_widget.success[disabled].active,.jupyter .notification_widget.success[disabled].focus,.jupyter .notification_widget.success[disabled]:active,.jupyter .notification_widget.success[disabled]:focus,.jupyter .notification_widget.success[disabled]:hover,fieldset[disabled] .jupyter .notification_widget.success,fieldset[disabled] .jupyter .notification_widget.success.active,fieldset[disabled] .jupyter .notification_widget.success.focus,fieldset[disabled] .jupyter .notification_widget.success:active,fieldset[disabled] .jupyter .notification_widget.success:focus,fieldset[disabled] .jupyter .notification_widget.success:hover{background-color:#5cb85c;border-color:#4cae4c}.jupyter .notification_widget.success .badge{color:#5cb85c;background-color:#fff}.jupyter .notification_widget.info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.jupyter .notification_widget.info.focus,.jupyter .notification_widget.info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.jupyter .notification_widget.info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.jupyter .notification_widget.info.active,.jupyter .notification_widget.info:active,.open>.dropdown-toggle.jupyter .notification_widget.info{color:#fff;background-color:#31b0d5;border-color:#269abc}.jupyter .notification_widget.info.active.focus,.jupyter .notification_widget.info.active:focus,.jupyter .notification_widget.info.active:hover,.jupyter .notification_widget.info:active.focus,.jupyter .notification_widget.info:active:focus,.jupyter .notification_widget.info:active:hover,.open>.dropdown-toggle.jupyter .notification_widget.info.focus,.open>.dropdown-toggle.jupyter .notification_widget.info:focus,.open>.dropdown-toggle.jupyter .notification_widget.info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.jupyter .notification_widget.info.active,.jupyter .notification_widget.info:active,.open>.dropdown-toggle.jupyter .notification_widget.info{background-image:none}.jupyter .notification_widget.info.disabled,.jupyter .notification_widget.info.disabled.active,.jupyter .notification_widget.info.disabled.focus,.jupyter .notification_widget.info.disabled:active,.jupyter .notification_widget.info.disabled:focus,.jupyter .notification_widget.info.disabled:hover,.jupyter .notification_widget.info[disabled],.jupyter .notification_widget.info[disabled].active,.jupyter .notification_widget.info[disabled].focus,.jupyter .notification_widget.info[disabled]:active,.jupyter .notification_widget.info[disabled]:focus,.jupyter .notification_widget.info[disabled]:hover,fieldset[disabled] .jupyter .notification_widget.info,fieldset[disabled] .jupyter .notification_widget.info.active,fieldset[disabled] .jupyter .notification_widget.info.focus,fieldset[disabled] .jupyter .notification_widget.info:active,fieldset[disabled] .jupyter .notification_widget.info:focus,fieldset[disabled] .jupyter .notification_widget.info:hover{background-color:#5bc0de;border-color:#46b8da}.jupyter .notification_widget.info .badge{color:#5bc0de;background-color:#fff}.jupyter .notification_widget.danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.jupyter .notification_widget.danger.focus,.jupyter .notification_widget.danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.jupyter .notification_widget.danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.jupyter .notification_widget.danger.active,.jupyter .notification_widget.danger:active,.open>.dropdown-toggle.jupyter .notification_widget.danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.jupyter .notification_widget.danger.active.focus,.jupyter .notification_widget.danger.active:focus,.jupyter .notification_widget.danger.active:hover,.jupyter .notification_widget.danger:active.focus,.jupyter .notification_widget.danger:active:focus,.jupyter .notification_widget.danger:active:hover,.open>.dropdown-toggle.jupyter .notification_widget.danger.focus,.open>.dropdown-toggle.jupyter .notification_widget.danger:focus,.open>.dropdown-toggle.jupyter .notification_widget.danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.jupyter .notification_widget.danger.active,.jupyter .notification_widget.danger:active,.open>.dropdown-toggle.jupyter .notification_widget.danger{background-image:none}.jupyter .notification_widget.danger.disabled,.jupyter .notification_widget.danger.disabled.active,.jupyter .notification_widget.danger.disabled.focus,.jupyter .notification_widget.danger.disabled:active,.jupyter .notification_widget.danger.disabled:focus,.jupyter .notification_widget.danger.disabled:hover,.jupyter .notification_widget.danger[disabled],.jupyter .notification_widget.danger[disabled].active,.jupyter .notification_widget.danger[disabled].focus,.jupyter .notification_widget.danger[disabled]:active,.jupyter .notification_widget.danger[disabled]:focus,.jupyter .notification_widget.danger[disabled]:hover,fieldset[disabled] .jupyter .notification_widget.danger,fieldset[disabled] .jupyter .notification_widget.danger.active,fieldset[disabled] .jupyter .notification_widget.danger.focus,fieldset[disabled] .jupyter .notification_widget.danger:active,fieldset[disabled] .jupyter .notification_widget.danger:focus,fieldset[disabled] .jupyter .notification_widget.danger:hover{background-color:#d9534f;border-color:#d43f3a}.jupyter .notification_widget.danger .badge{color:#d9534f;background-color:#fff}.jupyter div#pager{background-color:#fff;font-size:14px;line-height:20px;overflow:hidden;display:none;position:fixed;bottom:0;width:100%;max-height:50%;padding-top:8px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2);z-index:100;top:auto!important}.jupyter div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}.jupyter div#pager #pager-button-area{position:absolute;top:8px;right:20px}.jupyter div#pager #pager-contents{position:relative;overflow:auto;width:100%;height:100%}.jupyter div#pager #pager-contents #pager-container{position:relative;padding:15px 0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.jupyter div#pager .ui-resizable-handle{top:0;height:8px;background:#f7f7f7;border-top:1px solid #cfcfcf;border-bottom:1px solid #cfcfcf}.jupyter div#pager .ui-resizable-handle::after{content:'';top:2px;left:50%;height:3px;width:30px;margin-left:-15px;position:absolute;border-top:1px solid #cfcfcf}.jupyter .quickhelp{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;display:flex;flex-direction:row;align-items:stretch;line-height:1.8em}.jupyter .shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.jupyter .shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.jupyter span.save_widget{margin-top:6px}.jupyter span.save_widget span.filename{height:1em;line-height:1em;padding:3px;margin-left:16px;border:none;font-size:146.5%;border-radius:2px}.jupyter span.save_widget span.filename:hover{background-color:#e6e6e6}.jupyter span.autosave_status,.jupyter span.checkpoint_status{font-size:small}@media (max-width:767px){.jupyter span.save_widget{font-size:small}.jupyter span.autosave_status,.jupyter span.checkpoint_status{display:none}}@media (min-width:768px) and (max-width:991px){.jupyter span.checkpoint_status{display:none}.jupyter span.autosave_status{font-size:x-small}}.jupyter .toolbar{padding:0;margin-left:-5px;margin-top:2px;margin-bottom:5px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.jupyter .toolbar label,.jupyter .toolbar select{width:auto;vertical-align:middle;margin-right:2px;margin-bottom:0;display:inline;font-size:92%;margin-left:.3em;margin-right:.3em;padding:0;padding-top:3px}.jupyter .toolbar .btn{padding:2px 8px}.jupyter .toolbar .btn-group{margin-top:0;margin-left:5px}.jupyter #maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:0;padding-top:11px;padding-bottom:3px}.jupyter #maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}.jupyter .select-xs{height:24px}@-moz-keyframes fadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@-moz-keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}.jupyter .bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:.5s;-moz-transition-property:height;-moz-transition-duration:.5s;transition-property:height;transition-duration:.5s}.jupyter .smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:.5s;-moz-transition-property:height;-moz-transition-duration:.5s;transition-property:height;transition-duration:.5s;text-overflow:ellipsis;overflow:hidden;height:80px}.jupyter .tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.jupyter .tooltiptext{padding-right:30px}.jupyter .ipython_tooltip{max-width:700px;-webkit-animation:fadeOut .4s;-moz-animation:fadeOut .4s;animation:fadeOut .4s;-webkit-animation:fadeIn .4s;-moz-animation:fadeIn .4s;animation:fadeIn .4s;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:0;padding:3px;margin:0;padding-left:7px;font-family:monospace;min-height:50px;-moz-box-shadow:0 6px 10px -1px #adadad;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad;border-radius:2px;position:absolute;z-index:1000}.jupyter .ipython_tooltip a{float:right}.jupyter .ipython_tooltip .tooltiptext pre{border:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.jupyter .pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.jupyter .pretooltiparrow:before{background-color:#f7f7f7;border:1px #ababab solid;z-index:11;content:"";position:absolute;left:15px;top:10px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg)}.jupyter ul.typeahead-list i{margin-left:-10px;width:18px}.jupyter ul.typeahead-list{max-height:80vh;overflow:auto}.jupyter .cmd-palette .modal-body{padding:7px}.jupyter .cmd-palette form{background:#fff}.jupyter .cmd-palette input{outline:0}.jupyter .no-shortcut{display:none}.jupyter .command-shortcut:before{content:"(command)";padding-right:3px;color:#777}.jupyter .edit-shortcut:before{content:"(edit)";padding-right:3px;color:#777}.jupyter #find-and-replace #replace-preview .insert,.jupyter #find-and-replace #replace-preview .match{background-color:#add8e6;border-color:#5fb3ce;border-style:solid;border-width:1px;border-radius:2px}.jupyter #find-and-replace #replace-preview .replace .match{background-color:salmon;text-decoration:line-through;border-color:#f7270f}.jupyter #find-and-replace #replace-preview .replace .insert{background-color:green;background-color:#90ee90;border-color:#38e038}.jupyter #find-and-replace #replace-preview{max-height:60vh;overflow:auto}.jupyter #find-and-replace input:last-child{border-left:none}.jupyter .terminal-app{background:#EEE}.jupyter .terminal-app #header{background:#fff;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.2);box-shadow:0 0 12px 1px rgba(87,87,87,.2)}.jupyter .terminal-app .terminal{float:left;font-family:monospace;color:#fff;background:#000;padding:.4em;border-radius:2px;-webkit-box-shadow:0 0 12px 1px rgba(87,87,87,.4);box-shadow:0 0 12px 1px rgba(87,87,87,.4)}.jupyter .terminal-app .terminal,.jupyter .terminal-app .terminal dummy-screen{line-height:1em;font-size:14px}.jupyter .terminal-app .terminal-cursor{color:#000;background:#fff}.jupyter .terminal-app #terminado-container{margin-top:20px} msmb_theme-1.2.0/msmb_theme/static/css/msmb.css 0000664 0000000 0000000 00000000640 12661745362 0021515 0 ustar 00root root 0000000 0000000 @import 'theme.css'; @import 'jupyter.min.css'; .wy-side-nav-search { background-color: #ffffff; } .wy-side-nav-search > div.version { color: rgba(0, 0, 0, 0.74); } .wy-table-responsive table td { white-space: normal; } .rst-content .align-right { width: 300px; } .rst-content p.caption { font-size: 100%; font-weight: unset; } .rst-content .section ol li { margin-bottom: 0.3em; } msmb_theme-1.2.0/msmb_theme/static/js/ 0000775 0000000 0000000 00000000000 12661745362 0017671 5 ustar 00root root 0000000 0000000 msmb_theme-1.2.0/msmb_theme/static/js/versions.js 0000664 0000000 0000000 00000001474 12661745362 0022105 0 ustar 00root root 0000000 0000000 "use strict"; // get all of the releases from versions.json, and use these to populate the // dropdown menu of different releases $(document).ready(function () { // Define versions_json_url in versions.html through a template variable $.getJSON(versions_json_url) .done(function (data) { $.each(data.sort(function (a, b) { return a.version > b.version }), function (i, item) { $("